diff --git a/config/_default/hugo.toml b/config/_default/hugo.toml index b34298b1f..de4726657 100644 --- a/config/_default/hugo.toml +++ b/config/_default/hugo.toml @@ -63,6 +63,9 @@ enableRobotsTXT = true tag = "tags" [params] + + ambaDevMode = false + # (Optional, default 6) Set how many table of contents levels to be showed on page. # Use false to hide ToC, note that 0 will default to 6 (https://gohugo.io/functions/default/) # You can also specify this parameter per page in front matter. diff --git a/config/test/hugo.toml b/config/test/hugo.toml new file mode 100644 index 000000000..9e2456e36 --- /dev/null +++ b/config/test/hugo.toml @@ -0,0 +1,163 @@ +baseURL = "https://azure.github.io/azure-monitor-baseline-alerts" +title = "Azure Monitor Baseline Alerts" +theme = "hugo-geekdoc" +themesDir = "docs/themes" + +# Required to get well formatted code blocks +pygmentsUseClasses = true +pygmentsCodeFences = true +disablePathToLower = true +enableGitInfo = true + +# Required if you want to render robots.txt template +enableRobotsTXT = true + +[module] + [[module.mounts]] + source = 'docs/content' + target = 'content' + [[module.mounts]] + source = 'docs/static' + target = 'static' + [[module.mounts]] + source = 'docs/layouts' + target = 'layouts' + [[module.mounts]] + source = 'docs/data' + target = 'data' + [[module.mounts]] + source = 'docs/assets' + target = 'assets' + [[module.mounts]] + source = 'docs/i18n' + target = 'i18n' + [[module.mounts]] + source = 'docs/archetypes' + target = 'archetypes' + [[module.mounts]] + source = 'services' + target = 'static/services' + excludeFiles = ['**/_index.json'] + [[module.mounts]] + source = 'services' + target = 'content/services' + excludeFiles = ['**/*.json', '**/README.md'] + [[module.mounts]] + source = 'services' + target = 'data' + includeFiles = ['**/alerts.yaml'] + [[module.mounts]] + source = 'services' + target = 'static' + includeFiles = ['amba-alerts.*'] + +[markup] + [markup.goldmark.renderer] + # Needed for mermaid shortcode + unsafe = true + [markup.tableOfContents] + startLevel = 1 + endLevel = 6 + +[taxonomies] + tag = "tags" + +[params] + + ambaDevMode = true + + # (Optional, default 6) Set how many table of contents levels to be showed on page. + # Use false to hide ToC, note that 0 will default to 6 (https://gohugo.io/functions/default/) + # You can also specify this parameter per page in front matter. + geekdocToC = 3 + + # (Optional, default static/brand.svg) Set the path to a logo for the Geekdoc + # relative to your 'static/' folder. + geekdocLogo = "img/amba_logo_thumb.png" + + # (Optional, default false) Render menu from data file in 'data/menu/main.yaml'. + # See also https://geekdocs.de/usage/menus/#bundle-menu. + geekdocMenuBundle = false + + # (Optional, default false) Collapse all menu entries, can not be overwritten + # per page if enabled. Can be enabled per page via 'geekdocCollapseSection'. + geekdocCollapseAllSections = false + + # (Optional, default true) Show page navigation links at the bottom of each + # docs page (bundle menu only). + geekdocNextPrev = false + + # (Optional, default true) Show a breadcrumb navigation bar at the top of each docs page. + # You can also specify this parameter per page in front matter. + geekdocBreadcrumb = false + + # (Optional, default none) Set source repository location. Used for 'Edit page' links. + # You can also specify this parameter per page in front matter. + geekdocRepo = "https://github.com/Azure/azure-monitor-baseline-alerts" + + # (Optional, default none) Enable 'Edit page' links. Requires 'geekdocRepo' param + # and the path must point to the parent directory of the 'content' folder. + # You can also specify this parameter per page in front matter. + geekdocEditPath = "" + + # (Optional, default true) Enables search function with flexsearch. + # Index is built on the fly and might slow down your website. + geekdocSearch = true + + # (Optional, default false) Display search results with the parent folder as prefix. This + # option allows you to distinguish between files with the same name in different folders. + # NOTE: This parameter only applies when 'geekdocSearch = true'. + geekdocSearchShowParent = true + + # (Optional, default none) Add a link to your Legal Notice page to the site footer. + # It can be either a remote url or a local file path relative to your content directory. + # geekdocLegalNotice = "https://blog.example.com/legal" + + # (Optional, default none) Add a link to your Privacy Policy page to the site footer. + # It can be either a remote url or a local file path relative to your content directory. + # geekdocPrivacyPolicy = "/privacy" + + # (Optional, default true) Add an anchor link to headlines. + geekdocAnchor = true + + # (Optional, default true) Copy anchor url to clipboard on click. + geekdocAnchorCopy = true + + # (Optional, default true) Enable or disable image lazy loading for images rendered + # by the 'img' shortcode. + geekdocImageLazyLoading = true + + # (Optional, default false) Set HTMl to .Site.BaseURL if enabled. It might be required + # if a subdirectory is used within Hugos BaseURL. + # See https://developer.mozilla.org/de/docs/Web/HTML/Element/base. + geekdocOverwriteHTMLBase = false + + # (Optional, default true) Enable or disable the JavaScript based color theme toggle switch. The CSS based + # user preference mode still works. + geekdocDarkModeToggle = true + + # (Optional, default false) Auto-decrease brightness of images and add a slightly grayscale to avoid + # bright spots while using the dark mode. + geekdocDarkModeDim = false + + # (Optional, default false) Enforce code blocks to always use the dark color theme. + geekdocDarkModeCode = false + + # (Optional, default true) Display a "Back to top" link in the site footer. + geekdocBackToTop = true + + # (Optional, default false) Enable or disable adding tags for post pages automatically to the navigation sidebar. + geekdocTagsToMenu = true + + # (Optional, default 'title') Configure how to sort file-tree menu entries. Possible options are 'title', 'linktitle', + # 'date', 'publishdate', 'expirydate' or 'lastmod'. Every option can be used with a reverse modifier as well + # e.g. 'title_reverse'. + geekdocFileTreeSortBy = "title" + + # (Optional, default none) Adds a "Content licensed under " line to the footer. + # Could be used if you want to define a default license for your content. + # [params.geekdocContentLicense] + # name = "CC BY-SA 4.0" + # link = "https://creativecommons.org/licenses/by-sa/4.0/" + + diff --git a/docs/layouts/partials/menu-filetree.html b/docs/layouts/partials/menu-filetree.html new file mode 100644 index 000000000..192240b98 --- /dev/null +++ b/docs/layouts/partials/menu-filetree.html @@ -0,0 +1,98 @@ +{{ $current := . }} +{{ template "tree-nav" dict "sect" .Site.Home.Sections "current" $current }} + + + +{{ define "tree-nav" }} + {{ $current := .current }} + + + +{{ end }} diff --git a/docs/layouts/partials/metricAlertProperties.html b/docs/layouts/partials/metricAlertProperties.html index e4211d161..cbfbbd42a 100644 --- a/docs/layouts/partials/metricAlertProperties.html +++ b/docs/layouts/partials/metricAlertProperties.html @@ -1,33 +1,26 @@
- - {{ if isset . "dimensions" }} - - {{ end }} + + {{ if eq .criterionType "DynamicThresholdCriterion" }} + {{ else }} + {{ end }} - - - + {{ if isset . "dimensions" }} + + {{ end }} + - - {{ if isset . "dimensions" }} - - {{ end }} + + {{ if eq .criterionType "DynamicThresholdCriterion" }} + {{ else }} + {{ end }} - - - + {{ if isset . "dimensions" }} + + {{ end }} +
Criterion TypeDimensionsOperatorAggregationAlert Sensitivity Failing PeriodsThresholdAggregationOperatorThreshold Window Frequency SeverityDimensionsCriterion Type
{{ .criterionType }} - {{ if or (reflect.IsMap .dimensions) (reflect.IsSlice .dimensions) }} - {{ transform.Highlight (encoding.Jsonify (dict "indent" " ") .dimensions) "json" }} - {{ else }} - {{ .dimensions }} - {{ end }} - {{ .operator }}{{ .timeAggregation }}{{ .alertSensitivity }} @@ -37,12 +30,21 @@ {{ .failingPeriods }} {{ end }} {{ cast.ToString .threshold }}{{ .timeAggregation }}{{ .operator }}{{ .threshold }} {{ .windowSize }} {{ .evaluationFrequency }} {{ .severity }} + {{ if or (reflect.IsMap .dimensions) (reflect.IsSlice .dimensions) }} + {{ transform.Highlight (encoding.Jsonify (dict "indent" " ") .dimensions) "json" }} + {{ else }} + {{ .dimensions }} + {{ end }} + {{ .criterionType }}
diff --git a/docs/layouts/shortcodes/alertList.html b/docs/layouts/shortcodes/alertList.html index 0e13fe8dd..d139e49ad 100644 --- a/docs/layouts/shortcodes/alertList.html +++ b/docs/layouts/shortcodes/alertList.html @@ -20,7 +20,7 @@ {{ range .alerts }} - {{ if eq .visible true }} + {{ if or (eq .visible true) (eq $.Site.Params.ambaDevMode true) }} {{ .name }} {{ .type }} @@ -35,7 +35,7 @@ {{ range .alerts }} - {{ if eq .visible true }} + {{ if or (eq .visible true) (eq $.Site.Params.ambaDevMode true) }}


diff --git a/services/AnalysisServices/_index.md b/services/AnalysisServices/_index.md new file mode 100644 index 000000000..8e3924ee5 --- /dev/null +++ b/services/AnalysisServices/_index.md @@ -0,0 +1,5 @@ +--- +title: AnalysisServices +geekdocCollapseSection: true +geekdocHidden: true +--- diff --git a/services/AnalysisServices/servers/_index.md b/services/AnalysisServices/servers/_index.md new file mode 100644 index 000000000..f13aa1eef --- /dev/null +++ b/services/AnalysisServices/servers/_index.md @@ -0,0 +1,7 @@ +--- +title: servers +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/AnalysisServices/servers/alerts.yaml b/services/AnalysisServices/servers/alerts.yaml new file mode 100644 index 000000000..e4a68958a --- /dev/null +++ b/services/AnalysisServices/servers/alerts.yaml @@ -0,0 +1,36 @@ +- name: memory_metric + description: Memory. Range 0-25 GB for S1, 0-50 GB for S2 and 0-100 GB for S4 + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-432 + properties: + metricName: memory_metric + metricNamespace: Microsoft.AnalysisServices/servers + severity: 3 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Maximum + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 8000000000.0 +- name: qpu_metric + description: QPU. Range 0-100 for S1, 0-200 for S2 and 0-400 for S4 + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-263 + properties: + metricName: qpu_metric + metricNamespace: Microsoft.AnalysisServices/servers + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 90.0 diff --git a/services/ApiManagement/_index.md b/services/ApiManagement/_index.md new file mode 100644 index 000000000..1540ef9f0 --- /dev/null +++ b/services/ApiManagement/_index.md @@ -0,0 +1,5 @@ +--- +title: ApiManagement +geekdocCollapseSection: true +geekdocHidden: true +--- diff --git a/services/ApiManagement/service/_index.md b/services/ApiManagement/service/_index.md new file mode 100644 index 000000000..ec267fe69 --- /dev/null +++ b/services/ApiManagement/service/_index.md @@ -0,0 +1,7 @@ +--- +title: service +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/ApiManagement/service/alerts.yaml b/services/ApiManagement/service/alerts.yaml new file mode 100644 index 000000000..4842d0b99 --- /dev/null +++ b/services/ApiManagement/service/alerts.yaml @@ -0,0 +1,130 @@ +- name: Requests + description: Gateway request metrics with multiple dimensions + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-4921 + properties: + metricName: Requests + metricNamespace: Microsoft.ApiManagement/service + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 5000.0 +- name: Capacity + description: 'Utilization metric for ApiManagement service. Note: For skus other + than Premium, ''Max'' aggregation will show the value as 0.' + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-3486 + properties: + metricName: Capacity + metricNamespace: Microsoft.ApiManagement/service + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 80.0 +- name: BackendDuration + description: Duration of Backend Requests in milliseconds + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1746 + properties: + metricName: BackendDuration + metricNamespace: Microsoft.ApiManagement/service + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 15000.0 +- name: Duration + description: Overall Duration of Gateway Requests in milliseconds + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-853 + properties: + metricName: Duration + metricNamespace: Microsoft.ApiManagement/service + severity: 3 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 3000.0 +- name: FailedRequests + description: Number of failures in gateway requests - Use multi-dimension request + metric with GatewayResponseCodeCategory dimension instead + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-730 + properties: + metricName: FailedRequests + metricNamespace: Microsoft.ApiManagement/service + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 1.0 +- name: UnauthorizedRequests + description: Number of unauthorized gateway requests - Use multi-dimension request + metric with GatewayResponseCodeCategory dimension instead + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-576 + properties: + metricName: UnauthorizedRequests + metricNamespace: Microsoft.ApiManagement/service + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 1.0 +- name: TotalRequests + description: Number of gateway requests - Use multi-dimension request metric with + GatewayResponseCodeCategory dimension instead + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-408 + properties: + metricName: TotalRequests + metricNamespace: Microsoft.ApiManagement/service + severity: 3 + windowSize: PT1H + evaluationFrequency: PT5M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 diff --git a/services/App/_index.md b/services/App/_index.md new file mode 100644 index 000000000..66c28833d --- /dev/null +++ b/services/App/_index.md @@ -0,0 +1,5 @@ +--- +title: App +geekdocCollapseSection: true +geekdocHidden: true +--- diff --git a/services/App/containerApps/_index.md b/services/App/containerApps/_index.md new file mode 100644 index 000000000..e967f44fa --- /dev/null +++ b/services/App/containerApps/_index.md @@ -0,0 +1,7 @@ +--- +title: containerApps +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/App/containerApps/alerts.yaml b/services/App/containerApps/alerts.yaml new file mode 100644 index 000000000..6104d5e2f --- /dev/null +++ b/services/App/containerApps/alerts.yaml @@ -0,0 +1,73 @@ +- name: UsageNanoCores + description: CPU consumed by the container app, in nano cores. 1,000,000,000 nano + cores = 1 core + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-893 + properties: + metricName: UsageNanoCores + metricNamespace: Microsoft.App/containerApps + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 450000000.0 +- name: WorkingSetBytes + description: Container App working set memory used in bytes. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-759 + properties: + metricName: WorkingSetBytes + metricNamespace: Microsoft.App/containerApps + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 500000000.0 +- name: RestartCount + description: Restart count of container app replicas + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-517 + properties: + metricName: RestartCount + metricNamespace: Microsoft.App/containerApps + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Maximum + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 2.0 +- name: Replicas + description: Number of replicas count of container app + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-332 + properties: + metricName: Replicas + metricNamespace: Microsoft.App/containerApps + severity: 2 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Maximum + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 7.0 diff --git a/services/AppConfiguration/_index.md b/services/AppConfiguration/_index.md new file mode 100644 index 000000000..3fa627468 --- /dev/null +++ b/services/AppConfiguration/_index.md @@ -0,0 +1,5 @@ +--- +title: AppConfiguration +geekdocCollapseSection: true +geekdocHidden: true +--- diff --git a/services/AppConfiguration/configurationStores/_index.md b/services/AppConfiguration/configurationStores/_index.md new file mode 100644 index 000000000..2e4f96a24 --- /dev/null +++ b/services/AppConfiguration/configurationStores/_index.md @@ -0,0 +1,7 @@ +--- +title: configurationStores +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/AppConfiguration/configurationStores/alerts.yaml b/services/AppConfiguration/configurationStores/alerts.yaml new file mode 100644 index 000000000..2e4ea2b0f --- /dev/null +++ b/services/AppConfiguration/configurationStores/alerts.yaml @@ -0,0 +1,18 @@ +- name: ThrottledHttpRequestCount + description: Throttled http requests. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-608 + properties: + metricName: ThrottledHttpRequestCount + metricNamespace: Microsoft.AppConfiguration/configurationStores + severity: 2 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Count + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 10.0 diff --git a/services/Automation/automationAccounts/alerts.yaml b/services/Automation/automationAccounts/alerts.yaml index bf4417b90..6ca5b07e5 100644 --- a/services/Automation/automationAccounts/alerts.yaml +++ b/services/Automation/automationAccounts/alerts.yaml @@ -1,8 +1,8 @@ - name: TotalJob - description: Metric Alert for Automation Account TotalJob Alert + description: The total number of jobs type: Metric - verified: False - visible: True + verified: false + visible: true tags: - alz properties: @@ -23,3 +23,73 @@ deployments: - description: Policy to audit/deploy Automation Account TotalJob Alert template: Deploy-AA-TotalJob-Alert.json +- name: TotalJob + description: The total number of jobs + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-6781 + properties: + metricName: TotalJob + metricNamespace: Microsoft.Automation/automationAccounts + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + dimensions: + - name: status + operator: include + values: + - failed + threshold: 0.0 +- name: TotalUpdateDeploymentMachineRuns + description: Total software update deployment machine runs in a software update + deployment run + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1624 + properties: + metricName: TotalUpdateDeploymentMachineRuns + metricNamespace: Microsoft.Automation/automationAccounts + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + dimensions: + - name: status + operator: include + values: + - failed + threshold: 0.0 +- name: TotalUpdateDeploymentRuns + description: Total software update deployment runs + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1216 + properties: + metricName: TotalUpdateDeploymentRuns + metricNamespace: Microsoft.Automation/automationAccounts + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + dimensions: + - name: status + operator: include + values: + - failed + threshold: 0.0 diff --git a/services/Batch/_index.md b/services/Batch/_index.md new file mode 100644 index 000000000..587aae2ad --- /dev/null +++ b/services/Batch/_index.md @@ -0,0 +1,5 @@ +--- +title: Batch +geekdocCollapseSection: true +geekdocHidden: true +--- diff --git a/services/Batch/batchAccounts/_index.md b/services/Batch/batchAccounts/_index.md new file mode 100644 index 000000000..0c5709d3c --- /dev/null +++ b/services/Batch/batchAccounts/_index.md @@ -0,0 +1,7 @@ +--- +title: batchAccounts +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/Batch/batchAccounts/alerts.yaml b/services/Batch/batchAccounts/alerts.yaml new file mode 100644 index 000000000..4db508e10 --- /dev/null +++ b/services/Batch/batchAccounts/alerts.yaml @@ -0,0 +1,54 @@ +- name: UnusableNodeCount + description: Number of unusable nodes + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-520 + properties: + metricName: UnusableNodeCount + metricNamespace: Microsoft.Batch/batchAccounts + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 2.5 +- name: OfflineNodeCount + description: Number of offline nodes + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-416 + properties: + metricName: OfflineNodeCount + metricNamespace: Microsoft.Batch/batchAccounts + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: TaskFailEvent + description: Total number of tasks that have completed in a failed state + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-329 + properties: + metricName: TaskFailEvent + metricNamespace: Microsoft.Batch/batchAccounts + severity: 1 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 diff --git a/services/Cache/Redis/_index.md b/services/Cache/Redis/_index.md new file mode 100644 index 000000000..2191a7374 --- /dev/null +++ b/services/Cache/Redis/_index.md @@ -0,0 +1,7 @@ +--- +title: Redis +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/Cache/Redis/alerts.yaml b/services/Cache/Redis/alerts.yaml new file mode 100644 index 000000000..009ad778f --- /dev/null +++ b/services/Cache/Redis/alerts.yaml @@ -0,0 +1,320 @@ +- name: serverLoad + description: The percentage of cycles in which the Redis server is busy processing + and not waiting idle for messages. For more details, see https://aka.ms/redis/metrics. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-129235 + properties: + metricName: serverLoad + metricNamespace: Microsoft.Cache/Redis + severity: 3 + windowSize: PT15M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 85.0 +- name: usedmemorypercentage + description: The percentage of cache memory used for key/value pairs. For more details, + see https://aka.ms/redis/metrics. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-125979 + properties: + metricName: usedmemorypercentage + metricNamespace: Microsoft.Cache/Redis + severity: 3 + windowSize: PT15M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 70.0 +- name: connectedclients + description: The number of client connections to the cache. For more details, see + https://aka.ms/redis/metrics. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-122242 + properties: + metricName: connectedclients + metricNamespace: Microsoft.Cache/Redis + severity: 3 + windowSize: PT15M + evaluationFrequency: PT5M + timeAggregation: Maximum + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 750.0 +- name: cacheRead + description: The amount of data read from the cache in bytes per second. For more + details, see https://aka.ms/redis/metrics. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-121455 + properties: + metricName: cacheRead + metricNamespace: Microsoft.Cache/Redis + severity: 3 + windowSize: PT15M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 46875000.0 +- name: percentProcessorTime + description: The CPU utilization of the Azure Redis Cache server as a percentage. + For more details, see https://aka.ms/redis/metrics. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-4553 + properties: + metricName: percentProcessorTime + metricNamespace: Microsoft.Cache/Redis + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 90.0 +- name: cacheLatency + description: The latency to the cache in microseconds. For more details, see https://aka.ms/redis/metrics. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-4152 + properties: + metricName: cacheLatency + metricNamespace: Microsoft.Cache/Redis + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 10000.0 +- name: usedmemoryRss + description: The amount of cache memory used in MB, including fragmentation and + metadata. For more details, see https://aka.ms/redis/metrics. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-2830 + properties: + metricName: usedmemoryRss + metricNamespace: Microsoft.Cache/Redis + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 11000000000.0 +- name: errors + description: The number errors that occured on the cache. For more details, see + https://aka.ms/redis/metrics. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1611 + properties: + metricName: errors + metricNamespace: Microsoft.Cache/Redis + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Maximum + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: allusedmemorypercentage + description: The percentage of cache memory used for key/value pairs. For more details, + see https://aka.ms/redis/metrics. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1425 + properties: + metricName: allusedmemorypercentage + metricNamespace: Microsoft.Cache/Redis + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Maximum + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 80.0 +- name: usedmemory + description: The amount of cache memory used for key/value pairs in the cache in + MB. For more details, see https://aka.ms/redis/metrics. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1199 + properties: + metricName: usedmemory + metricNamespace: Microsoft.Cache/Redis + severity: 3 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Maximum + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 4000000000.0 +- name: totalcommandsprocessed + description: The total number of commands processed by the cache server. For more + details, see https://aka.ms/redis/metrics. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1007 + properties: + metricName: totalcommandsprocessed + metricNamespace: Microsoft.Cache/Redis + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 500.0 +- name: allserverLoad + description: The percentage of cycles in which the Redis server is busy processing + and not waiting idle for messages. For more details, see https://aka.ms/redis/metrics. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-721 + properties: + metricName: allserverLoad + metricNamespace: Microsoft.Cache/Redis + severity: 3 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 50.0 +- name: allpercentprocessortime + description: The CPU utilization of the Azure Redis Cache server as a percentage. + For more details, see https://aka.ms/redis/metrics. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-580 + properties: + metricName: allpercentprocessortime + metricNamespace: Microsoft.Cache/Redis + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 90.0 +- name: allconnectedclients + description: The number of client connections to the cache. For more details, see + https://aka.ms/redis/metrics. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-417 + properties: + metricName: allconnectedclients + metricNamespace: Microsoft.Cache/Redis + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Maximum + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 100.0 +- name: allusedmemory + description: The amount of cache memory used for key/value pairs in the cache in + MB. For more details, see https://aka.ms/redis/metrics. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-322 + properties: + metricName: allusedmemory + metricNamespace: Microsoft.Cache/Redis + severity: 0 + windowSize: PT30M + evaluationFrequency: PT15M + timeAggregation: Maximum + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 200000000.0 +- name: cachemissrate + description: The % of get requests that miss. For more details, see https://aka.ms/redis/metrics. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-279 + properties: + metricName: cachemissrate + metricNamespace: Microsoft.Cache/Redis + severity: 2 + windowSize: PT30M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThanOrEqual + criterionType: StaticThresholdCriterion + threshold: 80.0 +- name: evictedkeys + description: The number of items evicted from the cache. For more details, see https://aka.ms/redis/metrics. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-273 + properties: + metricName: evictedkeys + metricNamespace: Microsoft.Cache/Redis + severity: 2 + windowSize: PT30M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThanOrEqual + criterionType: StaticThresholdCriterion + threshold: 80.0 diff --git a/services/Cache/_index.md b/services/Cache/_index.md new file mode 100644 index 000000000..4bac52b4e --- /dev/null +++ b/services/Cache/_index.md @@ -0,0 +1,5 @@ +--- +title: Cache +geekdocCollapseSection: true +geekdocHidden: true +--- diff --git a/services/Cdn/_index.md b/services/Cdn/_index.md new file mode 100644 index 000000000..64a25513f --- /dev/null +++ b/services/Cdn/_index.md @@ -0,0 +1,5 @@ +--- +title: Cdn +geekdocCollapseSection: true +geekdocHidden: true +--- diff --git a/services/Cdn/profiles/_index.md b/services/Cdn/profiles/_index.md new file mode 100644 index 000000000..b526eb156 --- /dev/null +++ b/services/Cdn/profiles/_index.md @@ -0,0 +1,7 @@ +--- +title: profiles +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/Cdn/profiles/alerts.yaml b/services/Cdn/profiles/alerts.yaml new file mode 100644 index 000000000..3e4939706 --- /dev/null +++ b/services/Cdn/profiles/alerts.yaml @@ -0,0 +1,94 @@ +- name: TotalLatency + description: The time calculated from when the client request was received by the + HTTP/S proxy until the client acknowledged the last response byte from the HTTP/S + proxy + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1820 + properties: + metricName: TotalLatency + metricNamespace: Microsoft.Cdn/profiles + severity: 2 + windowSize: PT15M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 100.0 +- name: ByteHitRatio + description: This is the ratio of the total bytes served from the cache compared + to the total response bytes + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1414 + properties: + metricName: ByteHitRatio + metricNamespace: Microsoft.Cdn/profiles + severity: 2 + windowSize: PT30M + evaluationFrequency: PT5M + timeAggregation: Average + operator: LessThan + criterionType: StaticThresholdCriterion + threshold: 90.0 +- name: OriginHealthPercentage + description: The percentage of successful health probes from AFDX to backends. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-963 + properties: + metricName: OriginHealthPercentage + metricNamespace: Microsoft.Cdn/profiles + severity: 2 + windowSize: PT15M + evaluationFrequency: PT5M + timeAggregation: Average + operator: LessThan + criterionType: StaticThresholdCriterion + threshold: 95.0 +- name: RequestCount + description: The number of client requests served by the HTTP/S proxy + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-906 + properties: + metricName: RequestCount + metricNamespace: Microsoft.Cdn/profiles + severity: 0 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 10000.0 +- name: Percentage5XX + description: The percentage of all the client requests for which the response status + code is 5XX + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-823 + properties: + metricName: Percentage5XX + metricNamespace: Microsoft.Cdn/profiles + severity: 2 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 10.0 diff --git a/services/CognitiveServices/_index.md b/services/CognitiveServices/_index.md new file mode 100644 index 000000000..ef5efc257 --- /dev/null +++ b/services/CognitiveServices/_index.md @@ -0,0 +1,5 @@ +--- +title: CognitiveServices +geekdocCollapseSection: true +geekdocHidden: true +--- diff --git a/services/CognitiveServices/accounts/_index.md b/services/CognitiveServices/accounts/_index.md new file mode 100644 index 000000000..55e18dc5e --- /dev/null +++ b/services/CognitiveServices/accounts/_index.md @@ -0,0 +1,7 @@ +--- +title: accounts +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/CognitiveServices/accounts/alerts.yaml b/services/CognitiveServices/accounts/alerts.yaml new file mode 100644 index 000000000..c837fd5b4 --- /dev/null +++ b/services/CognitiveServices/accounts/alerts.yaml @@ -0,0 +1,146 @@ +- name: Latency + description: Latency in milliseconds. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1302 + properties: + metricName: Latency + metricNamespace: Microsoft.CognitiveServices/accounts + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 60000.0 +- name: TotalErrors + description: Total number of calls with error response (HTTP response code 4xx or + 5xx). + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1116 + properties: + metricName: TotalErrors + metricNamespace: Microsoft.CognitiveServices/accounts + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 5.0 +- name: TotalCalls + description: Total number of calls. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-960 + properties: + metricName: TotalCalls + metricNamespace: Microsoft.CognitiveServices/accounts + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 1000.0 +- name: TokenTransaction + description: Number of Inference Tokens Processed on an OpenAI Model + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-640 + properties: + metricName: TokenTransaction + metricNamespace: Microsoft.CognitiveServices/accounts + severity: 1 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 120000.0 +- name: ServerErrors + description: Number of calls with service internal error (HTTP response code 5xx). + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-498 + properties: + metricName: ServerErrors + metricNamespace: Microsoft.CognitiveServices/accounts + severity: 1 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Count + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: ClientErrors + description: Number of calls with client side error (HTTP response code 4xx). + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-449 + properties: + metricName: ClientErrors + metricNamespace: Microsoft.CognitiveServices/accounts + severity: 1 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Count + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: SuccessRate + description: 'Availability percentage with the following calculation: (Total Calls + - Server Errors)/Total Calls. Server Errors include any HTTP responses >=500.' + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-343 + properties: + metricName: SuccessRate + metricNamespace: Microsoft.CognitiveServices/accounts + severity: 0 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: LessThan + criterionType: StaticThresholdCriterion + threshold: 99.9 +- name: BlockedCalls + description: Number of calls that exceeded rate or quota limit. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-338 + properties: + metricName: BlockedCalls + metricNamespace: Microsoft.CognitiveServices/accounts + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 diff --git a/services/Compute/cloudServices/_index.md b/services/Compute/cloudServices/_index.md new file mode 100644 index 000000000..b9550cd52 --- /dev/null +++ b/services/Compute/cloudServices/_index.md @@ -0,0 +1,7 @@ +--- +title: cloudServices +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/Compute/cloudServices/alerts.yaml b/services/Compute/cloudServices/alerts.yaml new file mode 100644 index 000000000..0dd38a3b5 --- /dev/null +++ b/services/Compute/cloudServices/alerts.yaml @@ -0,0 +1,19 @@ +- name: Percentage CPU + description: The percentage of allocated compute units that are currently in use + by the Virtual Machine(s) + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-758 + properties: + metricName: Percentage CPU + metricNamespace: Microsoft.Compute/cloudServices + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 90.0 diff --git a/services/Compute/virtualMachineScaleSets/_index.md b/services/Compute/virtualMachineScaleSets/_index.md new file mode 100644 index 000000000..940cc5f54 --- /dev/null +++ b/services/Compute/virtualMachineScaleSets/_index.md @@ -0,0 +1,7 @@ +--- +title: virtualMachineScaleSets +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/Compute/virtualMachineScaleSets/alerts.yaml b/services/Compute/virtualMachineScaleSets/alerts.yaml new file mode 100644 index 000000000..6e85f5af5 --- /dev/null +++ b/services/Compute/virtualMachineScaleSets/alerts.yaml @@ -0,0 +1,244 @@ +- name: Percentage CPU + description: The percentage of allocated compute units that are currently in use + by the Virtual Machine(s) + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-11764 + properties: + metricName: Percentage CPU + metricNamespace: Microsoft.Compute/virtualMachineScaleSets + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 80.0 +- name: OS Disk IOPS Consumed Percentage + description: Percentage of operating system disk I/Os consumed per minute + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-2994 + properties: + metricName: OS Disk IOPS Consumed Percentage + metricNamespace: Microsoft.Compute/virtualMachineScaleSets + severity: 3 + windowSize: PT1H + evaluationFrequency: PT30M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 95.0 +- name: Data Disk IOPS Consumed Percentage + description: Percentage of data disk I/Os consumed per minute + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-2691 + properties: + metricName: Data Disk IOPS Consumed Percentage + metricNamespace: Microsoft.Compute/virtualMachineScaleSets + severity: 3 + windowSize: PT1H + evaluationFrequency: PT30M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 95.0 +- name: Outbound Flows + description: Outbound Flows are number of current flows in the outbound direction + (traffic going out of the VM) + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-2211 + properties: + metricName: Outbound Flows + metricNamespace: Microsoft.Compute/virtualMachineScaleSets + severity: 3 + windowSize: PT15M + evaluationFrequency: PT15M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 100000.0 +- name: Inbound Flows + description: Inbound Flows are number of current flows in the inbound direction + (traffic going into the VM) + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-2166 + properties: + metricName: Inbound Flows + metricNamespace: Microsoft.Compute/virtualMachineScaleSets + severity: 3 + windowSize: PT15M + evaluationFrequency: PT15M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 100000.0 +- name: Available Memory Bytes + description: Amount of physical memory, in bytes, immediately available for allocation + to a process or for system use in the Virtual Machine + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1543 + properties: + metricName: Available Memory Bytes + metricNamespace: Microsoft.Compute/virtualMachineScaleSets + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: LessThan + criterionType: StaticThresholdCriterion + threshold: 1000000000.0 +- name: Network In Total + description: The number of bytes received on all network interfaces by the Virtual + Machine(s) (Incoming Traffic) + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-445 + properties: + metricName: Network In Total + metricNamespace: Microsoft.Compute/virtualMachineScaleSets + severity: 3 + windowSize: PT15M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + dimensions: + - name: vmname + operator: include + values: + - '*' + threshold: 700000000.0 +- name: Network Out Total + description: The number of bytes out on all network interfaces by the Virtual Machine(s) + (Outgoing Traffic) + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-437 + properties: + metricName: Network Out Total + metricNamespace: Microsoft.Compute/virtualMachineScaleSets + severity: 3 + windowSize: PT15M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + dimensions: + - name: vmname + operator: include + values: + - '*' + threshold: 700000000.0 +- name: VmAvailabilityMetric + description: Measure of Availability of Virtual machines over time. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-422 + properties: + metricName: VmAvailabilityMetric + metricNamespace: Microsoft.Compute/virtualMachineScaleSets + severity: 0 + windowSize: PT1M + evaluationFrequency: PT1M + timeAggregation: Average + operator: LessThan + criterionType: StaticThresholdCriterion + dimensions: + - name: vmname + operator: include + values: + - '*' + threshold: 1.0 +- name: Network In + description: The number of billable bytes received on all network interfaces by + the Virtual Machine(s) (Incoming Traffic) (Deprecated) + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-361 + properties: + metricName: Network In + metricNamespace: Microsoft.Compute/virtualMachineScaleSets + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: LessThan + criterionType: StaticThresholdCriterion + threshold: 1.0 +- name: Disk Read Operations/Sec + description: Disk Read IOPS + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-252 + properties: + metricName: Disk Read Operations/Sec + metricNamespace: Microsoft.Compute/virtualMachineScaleSets + severity: 2 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterOrLessThan + criterionType: DynamicThresholdCriterion + failingPeriods: + numberOfEvaluationPeriods: 4 + minFailingPeroidsToAlert: minFailingPeroidsToAlert + alertSensitivity: Low +- name: Disk Write Operations/Sec + description: Disk Write IOPS + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-252 + properties: + metricName: Disk Write Operations/Sec + metricNamespace: Microsoft.Compute/virtualMachineScaleSets + severity: 2 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterOrLessThan + criterionType: DynamicThresholdCriterion + failingPeriods: + numberOfEvaluationPeriods: 4 + minFailingPeroidsToAlert: minFailingPeroidsToAlert + alertSensitivity: Low diff --git a/services/Compute/virtualMachines/alerts.yaml b/services/Compute/virtualMachines/alerts.yaml index 11f193891..6b3b951d0 100644 --- a/services/Compute/virtualMachines/alerts.yaml +++ b/services/Compute/virtualMachines/alerts.yaml @@ -1,8 +1,9 @@ - name: Available Memory Bytes (MBytes) - description: Metric Alert for Virtual Machine Available Memory Bytes (MBytes) + description: Amount of physical memory, in bytes, immediately available for allocation + to a process or for system use in the Virtual Machine type: Metric - verified: False - visible: True + verified: false + visible: true tags: - alz properties: @@ -24,8 +25,8 @@ - name: Data Disk Read Latency (ms) description: Log Alert for Virtual Machine Data Disk Read Latency (ms) type: Log - verified: False - visible: True + verified: false + visible: true tags: - alz properties: @@ -40,28 +41,37 @@ dimensions: Computer: operator: Include - values: ['*'] + values: + - '*' Disk: operator: Include - values: ['*'] + values: + - '*' failingPeriods: numberOfEvaluationPeriods: 1 minFailingPeriodsToAlert: 1 - query: | - InsightsMetrics + query: 'InsightsMetrics + | where Origin == "vm.azm.ms" + | where Namespace == "LogicalDisk" and Name == "ReadLatencyMs" + | extend Disk=tostring(todynamic(Tags)["vm.azm.ms/mountId"]) - | where Disk !in ('C:','/') - | summarize AggregatedValue = avg(Val) by bin(TimeGenerated,15m), Computer, _ResourceId, Disk + + | where Disk !in (''C:'',''/'') + + | summarize AggregatedValue = avg(Val) by bin(TimeGenerated,15m), Computer, + _ResourceId, Disk + + ' deployments: - description: Policy to audit/deploy VM Data Disk Read Latency Alert template: Deploy-VM-DataDiskReadLatency-Alert.json - name: Data Disk Free Space Percentage description: Log Alert for Virtual Machine Data Disk Free Space Percentage type: Log - verified: True - visible: True + verified: true + visible: true tags: - alz properties: @@ -76,28 +86,37 @@ dimensions: Computer: operator: Include - values: ['*'] + values: + - '*' Disk: operator: Include - values: ['*'] + values: + - '*' failingPeriods: numberOfEvaluationPeriods: 1 minFailingPeriodsToAlert: 1 - query: | - InsightsMetrics + query: 'InsightsMetrics + | where Origin == "vm.azm.ms" + | where Namespace == "LogicalDisk"and Name == "FreeSpacePercentage" + | extend Disk=tostring(todynamic(Tags)["vm.azm.ms/mountId"]) - | where Disk !in ('C:','/') - | summarize AggregatedValue = avg(Val) by bin(TimeGenerated,15m), Computer, _ResourceId, Disk + + | where Disk !in (''C:'',''/'') + + | summarize AggregatedValue = avg(Val) by bin(TimeGenerated,15m), Computer, + _ResourceId, Disk + + ' deployments: - description: Policy to audit/deploy VM Data Disk Free Space Percentage Alert template: Deploy-VM-DataDiskSpace-Alert.json - name: Data Disk Write Latency (ms) description: Log Alert for Virtual Machine Data Disk Write Latency (ms) type: Log - verified: True - visible: True + verified: true + visible: true tags: - alz properties: @@ -112,20 +131,29 @@ dimensions: Computer: operator: Include - values: ['*'] + values: + - '*' Disk: operator: Include - values: ['*'] + values: + - '*' failingPeriods: numberOfEvaluationPeriods: 1 minFailingPeriodsToAlert: 1 - query: | - InsightsMetrics + query: 'InsightsMetrics + | where Origin == "vm.azm.ms" + | where Namespace == "LogicalDisk" and Name == "WriteLatencyMs" + | extend Disk=tostring(todynamic(Tags)["vm.azm.ms/mountId"]) - | where Disk !in ('C:','/') - | summarize AggregatedValue = avg(Val) by bin(TimeGenerated,15m), Computer, _ResourceId, Disk + + | where Disk !in (''C:'',''/'') + + | summarize AggregatedValue = avg(Val) by bin(TimeGenerated,15m), Computer, + _ResourceId, Disk + + ' deployments: - description: Policy to audit/deploy VM Data Disk Write Latency Alert template: Deploy-VM-DataDiskWriteLatency-Alert.json @@ -144,18 +172,25 @@ dimensions: Computer: operator: Include - values: ['*'] + values: + - '*' Disk: operator: Include - values: ['*'] + values: + - '*' failingPeriods: numberOfEvaluationPeriods: 1 minFailingPeriodsToAlert: 1 - query: | - Heartbeat + query: 'Heartbeat + | summarize TimeGenerated=max(TimeGenerated) by Computer, _ResourceId - | extend Duration = datetime_diff('minute',now(),TimeGenerated) - | summarize AggregatedValue = min(Duration) by Computer, bin(TimeGenerated,5m), _ResourceId + + | extend Duration = datetime_diff(''minute'',now(),TimeGenerated) + + | summarize AggregatedValue = min(Duration) by Computer, bin(TimeGenerated,5m), + _ResourceId + + ' deployments: - description: Policy to audit/deploy VM HeartBeat Alert for all VMs in the subscription template: Deploy-VM-HeartBeat-Alert.json @@ -165,8 +200,8 @@ - name: Network Read (bytes/sec) description: Log Alert for Virtual Machine Network Read (bytes/sec) type: Log - verified: True - visible: True + verified: true + visible: true tags: - alz properties: @@ -181,27 +216,35 @@ dimensions: Computer: operator: Include - values: ['*'] + values: + - '*' NetworkInterface: operator: Include - values: ['*'] + values: + - '*' failingPeriods: numberOfEvaluationPeriods: 1 minFailingPeriodsToAlert: 1 - query: | - InsightsMetrics + query: 'InsightsMetrics + | where Origin == "vm.azm.ms" + | where Namespace == "Network" and Name == "ReadBytesPerSecond" + | extend NetworkInterface=tostring(todynamic(Tags)["vm.azm.ms/networkDeviceId"]) - | summarize AggregatedValue = avg(Val) by bin(TimeGenerated, 15m), Computer, _ResourceId, NetworkInterface + + | summarize AggregatedValue = avg(Val) by bin(TimeGenerated, 15m), Computer, + _ResourceId, NetworkInterface + + ' deployments: - description: Policy to audit/deploy VM Nework Read (bytes/sec) Alert template: Deploy-VM-NetworkIn-Alert.json - name: Network Write (bytes/sec) description: Log Alert for Virtual Machine Network Write (bytes/sec) type: Log - verified: True - visible: True + verified: true + visible: true tags: - alz properties: @@ -216,27 +259,35 @@ dimensions: Computer: operator: Include - values: ['*'] + values: + - '*' NetworkInterface: operator: Include - values: ['*'] + values: + - '*' failingPeriods: numberOfEvaluationPeriods: 1 minFailingPeriodsToAlert: 1 - query: | - InsightsMetrics + query: 'InsightsMetrics + | where Origin == "vm.azm.ms" + | where Namespace == "Network" and Name == "WriteBytesPerSecond" + | extend NetworkInterface=tostring(todynamic(Tags)["vm.azm.ms/networkDeviceId"]) - | summarize AggregatedValue = avg(Val) by bin(TimeGenerated, 15m), Computer, _ResourceId, NetworkInterface + + | summarize AggregatedValue = avg(Val) by bin(TimeGenerated, 15m), Computer, + _ResourceId, NetworkInterface + + ' deployments: - description: Policy to audit/deploy VM Nework Write (bytes/sec) Alert template: Deploy-VM-NetworkOut-Alert.json - name: OS Disk Read Latency (ms) description: Log Alert for Virtual Machine Data OS Read Latency (ms) type: Log - verified: False - visible: True + verified: false + visible: true tags: - alz properties: @@ -251,27 +302,35 @@ dimensions: Computer: operator: Include - values: ['*'] + values: + - '*' Disk: operator: Include - values: ['*'] + values: + - '*' failingPeriods: numberOfEvaluationPeriods: 1 minFailingPeriodsToAlert: 1 - query: | - InsightsMetrics + query: 'InsightsMetrics + | where Origin == "vm.azm.ms" + | where Namespace == "LogicalDisk" and Name == "ReadLatencyMs" + | extend Disk=tostring(todynamic(Tags)["vm.azm.ms/mountId"]) - | summarize AggregatedValue = avg(Val) by bin(TimeGenerated, 15m), Computer, _ResourceId, Disk + + | summarize AggregatedValue = avg(Val) by bin(TimeGenerated, 15m), Computer, + _ResourceId, Disk + + ' deployments: - description: Policy to audit/deploy VM OS Disk Read Latency Alert template: Deploy-VM-OSDiskReadLatency-Alert.json - name: OS Disk Free Space Percentage description: Log Alert for Virtual Machine OS Disk Free Space Percentage type: Log - verified: True - visible: True + verified: true + visible: true tags: - alz properties: @@ -286,27 +345,35 @@ dimensions: Computer: operator: Include - values: ['*'] + values: + - '*' Disk: operator: Include - values: ['*'] + values: + - '*' failingPeriods: numberOfEvaluationPeriods: 1 minFailingPeriodsToAlert: 1 - query: | - InsightsMetrics + query: 'InsightsMetrics + | where Origin == "vm.azm.ms" + | where Namespace == "LogicalDisk" and Name == "FreeSpacePercentage" + | extend Disk=tostring(todynamic(Tags)["vm.azm.ms/mountId"]) - | summarize AggregatedValue = avg(Val) by bin(TimeGenerated, 15m), Computer, _ResourceId, Disk + + | summarize AggregatedValue = avg(Val) by bin(TimeGenerated, 15m), Computer, + _ResourceId, Disk + + ' deployments: - description: Policy to audit/deploy VM OS Disk Free Space Percentage Alert template: Deploy-VM-OSDiskSpace-Alert.json - name: OS Disk Write Latency (ms) description: Log Alert for Virtual Machine OS Disk Write Latency (ms) type: Log - verified: False - visible: True + verified: false + visible: true tags: - alz properties: @@ -321,26 +388,33 @@ dimensions: Computer: operator: Include - values: ['*'] + values: + - '*' Disk: operator: Include - values: ['*'] + values: + - '*' failingPeriods: numberOfEvaluationPeriods: 1 minFailingPeriodsToAlert: 1 - query: | - InsightsMetrics| where Origin == "vm.azm.ms" + query: 'InsightsMetrics| where Origin == "vm.azm.ms" + | where Namespace == "LogicalDisk" and Name == "WriteLatencyMs" + | extend Disk=tostring(todynamic(Tags)["vm.azm.ms/mountId"]) - | summarize AggregatedValue = avg(Val) by bin(TimeGenerated, 15m), Computer, _ResourceId, Disk + + | summarize AggregatedValue = avg(Val) by bin(TimeGenerated, 15m), Computer, + _ResourceId, Disk + + ' deployments: - description: Policy to audit/deploy VM OS Disk Write Latency Alert template: Deploy-VM-OSDiskWriteLatency-Alert.json - name: Processor Utilization Percentage description: Log Alert for Virtual Machine Processor Utilization Percentage type: Log - verified: True - visible: True + verified: true + visible: true tags: - alz properties: @@ -355,23 +429,29 @@ dimensions: Computer: operator: Include - values: ['*'] + values: + - '*' failingPeriods: numberOfEvaluationPeriods: 1 minFailingPeriodsToAlert: 1 - query: | - InsightsMetrics + query: 'InsightsMetrics + | where Origin == "vm.azm.ms" + | where Namespace == "Processor" and Name == "UtilizationPercentage" - | summarize AggregatedValue = avg(Val) by bin(TimeGenerated, 15m), Computer, _ResourceId + + | summarize AggregatedValue = avg(Val) by bin(TimeGenerated, 15m), Computer, + _ResourceId + + ' deployments: - description: Policy to audit/deploy VM Processor Utilization Percentage Alert template: Deploy-VM-PercentCPU-Alert.json - name: Available Memory Percentage description: Log Alert for Virtual Machine Available Memory Percentage type: Log - verified: True - visible: True + verified: true + visible: true tags: - alz properties: @@ -386,17 +466,620 @@ dimensions: Computer: operator: Include - values: ['*'] + values: + - '*' failingPeriods: numberOfEvaluationPeriods: 1 minFailingPeriodsToAlert: 1 - query: | - InsightsMetrics + query: 'InsightsMetrics + | where Origin == "vm.azm.ms" + | where Namespace == "Memory" and Name == "AvailableMB" + | extend TotalMemory = toreal(todynamic(Tags)["vm.azm.ms/memorySizeMB"]) + | extend AvailableMemoryPercentage = (toreal(Val) / TotalMemory) * 100.0 - | summarize AggregatedValue = avg(AvailableMemoryPercentage) by bin(TimeGenerated, 15m), Computer, _ResourceId + + | summarize AggregatedValue = avg(AvailableMemoryPercentage) by bin(TimeGenerated, + 15m), Computer, _ResourceId + + ' deployments: - description: Policy to audit/deploy VM Available Memory Percentage Alert template: Deploy-VM-PercentMemory-Alert.json +- name: Percentage CPU + description: The percentage of allocated compute units that are currently in use + by the Virtual Machine(s) + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-334990 + properties: + metricName: Percentage CPU + metricNamespace: Microsoft.Compute/virtualMachines + severity: 3 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 80.0 +- name: Data Disk IOPS Consumed Percentage + description: Percentage of data disk I/Os consumed per minute. Only available on + VM series that support premium storage. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-139392 + properties: + metricName: Data Disk IOPS Consumed Percentage + metricNamespace: Microsoft.Compute/virtualMachines + severity: 3 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 95.0 +- name: OS Disk IOPS Consumed Percentage + description: Percentage of operating system disk I/Os consumed per minute. Only + available on VM series that support premium storage. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-134481 + properties: + metricName: OS Disk IOPS Consumed Percentage + metricNamespace: Microsoft.Compute/virtualMachines + severity: 3 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 95.0 +- name: Available Memory Bytes + description: Amount of physical memory, in bytes, immediately available for allocation + to a process or for system use in the Virtual Machine + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-130712 + properties: + metricName: Available Memory Bytes + metricNamespace: Microsoft.Compute/virtualMachines + severity: 3 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Average + operator: LessThan + criterionType: StaticThresholdCriterion + threshold: 1000000000.0 +- name: Network In Total + description: The number of bytes received on all network interfaces by the Virtual + Machine(s) (Incoming Traffic) + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-112534 + properties: + metricName: Network In Total + metricNamespace: Microsoft.Compute/virtualMachines + severity: 3 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 500000000000.0 +- name: Network Out Total + description: The number of bytes out on all network interfaces by the Virtual Machine(s) + (Outgoing Traffic) + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-111827 + properties: + metricName: Network Out Total + metricNamespace: Microsoft.Compute/virtualMachines + severity: 3 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 200000000000.0 +- name: VmAvailabilityMetric + description: Measure of Availability of Virtual machines over time. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-83394 + properties: + metricName: VmAvailabilityMetric + metricNamespace: Microsoft.Compute/virtualMachines + severity: 3 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Average + operator: LessThan + criterionType: StaticThresholdCriterion + threshold: 1.0 +- name: OS Disk Bandwidth Consumed Percentage + description: Percentage of operating system disk bandwidth consumed per minute. + Only available on VM series that support premium storage. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-10847 + properties: + metricName: OS Disk Bandwidth Consumed Percentage + metricNamespace: Microsoft.Compute/virtualMachines + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 90.0 +- name: Inbound Flows + description: Inbound Flows are number of current flows in the inbound direction + (traffic going into the VM) + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-9070 + properties: + metricName: Inbound Flows + metricNamespace: Microsoft.Compute/virtualMachines + severity: 3 + windowSize: PT15M + evaluationFrequency: PT15M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 100000.0 +- name: Outbound Flows + description: Outbound Flows are number of current flows in the outbound direction + (traffic going out of the VM) + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-8907 + properties: + metricName: Outbound Flows + metricNamespace: Microsoft.Compute/virtualMachines + severity: 3 + windowSize: PT15M + evaluationFrequency: PT15M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 100000.0 +- name: Data Disk Bandwidth Consumed Percentage + description: Percentage of data disk bandwidth consumed per minute. Only available + on VM series that support premium storage. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-8619 + properties: + metricName: Data Disk Bandwidth Consumed Percentage + metricNamespace: Microsoft.Compute/virtualMachines + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 90.0 +- name: CPU Credits Remaining + description: Total number of credits available to burst. Only available on B-series + burstable VMs + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-7495 + properties: + metricName: CPU Credits Remaining + metricNamespace: Microsoft.Compute/virtualMachines + severity: 3 + windowSize: PT15M + evaluationFrequency: PT1M + timeAggregation: Average + operator: LessThan + criterionType: StaticThresholdCriterion + threshold: 5.0 +- name: Data Disk Queue Depth + description: Data Disk Queue Depth(or Queue Length) + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-6104 + properties: + metricName: Data Disk Queue Depth + metricNamespace: Microsoft.Compute/virtualMachines + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 100.0 +- name: Network In + description: The number of billable bytes received on all network interfaces by + the Virtual Machine(s) (Incoming Traffic) (Deprecated) + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-3454 + properties: + metricName: Network In + metricNamespace: Microsoft.Compute/virtualMachines + severity: 4 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Average + operator: LessThanOrEqual + criterionType: StaticThresholdCriterion + threshold: 1.0 +- name: Network Out + description: The number of billable bytes out on all network interfaces by the Virtual + Machine(s) (Outgoing Traffic) (Deprecated) + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-3451 + properties: + metricName: Network Out + metricNamespace: Microsoft.Compute/virtualMachines + severity: 4 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Average + operator: LessThanOrEqual + criterionType: StaticThresholdCriterion + threshold: 1.0 +- name: VM Cached IOPS Consumed Percentage + description: Percentage of cached disk IOPS consumed by the VM. Only available on + VM series that support premium storage. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-2657 + properties: + metricName: VM Cached IOPS Consumed Percentage + metricNamespace: Microsoft.Compute/virtualMachines + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 90.0 +- name: OS Disk Queue Depth + description: OS Disk Queue Depth(or Queue Length) + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-2651 + properties: + metricName: OS Disk Queue Depth + metricNamespace: Microsoft.Compute/virtualMachines + severity: 2 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 10.0 +- name: VM Cached Bandwidth Consumed Percentage + description: Percentage of cached disk bandwidth consumed by the VM. Only available + on VM series that support premium storage. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-2581 + properties: + metricName: VM Cached Bandwidth Consumed Percentage + metricNamespace: Microsoft.Compute/virtualMachines + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 90.0 +- name: VM Uncached IOPS Consumed Percentage + description: Percentage of uncached disk IOPS consumed by the VM. Only available + on VM series that support premium storage. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-2124 + properties: + metricName: VM Uncached IOPS Consumed Percentage + metricNamespace: Microsoft.Compute/virtualMachines + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 90.0 +- name: VM Uncached Bandwidth Consumed Percentage + description: Percentage of uncached disk bandwidth consumed by the VM. Only available + on VM series that support premium storage. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-2115 + properties: + metricName: VM Uncached Bandwidth Consumed Percentage + metricNamespace: Microsoft.Compute/virtualMachines + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 90.0 +- name: Disk Write Operations/Sec + description: Disk Write IOPS + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1678 + properties: + metricName: Disk Write Operations/Sec + metricNamespace: Microsoft.Compute/virtualMachines + severity: 3 + windowSize: PT1H + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 10.0 +- name: CPU Credits Consumed + description: Total number of credits consumed by the Virtual Machine. Only available + on B-series burstable VMs + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1239 + properties: + metricName: CPU Credits Consumed + metricNamespace: Microsoft.Compute/virtualMachines + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 80.0 +- name: Data Disk Write Bytes/sec + description: Bytes/Sec written to a single disk during monitoring period + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1031 + properties: + metricName: Data Disk Write Bytes/sec + metricNamespace: Microsoft.Compute/virtualMachines + severity: 3 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 10000000.0 +- name: OS Disk Write Bytes/sec + description: Bytes/Sec written to a single disk during monitoring period for OS + disk + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1020 + properties: + metricName: OS Disk Write Bytes/sec + metricNamespace: Microsoft.Compute/virtualMachines + severity: 3 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 48000000.0 +- name: Disk Read Operations/Sec + description: Disk Read IOPS + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-688 + properties: + metricName: Disk Read Operations/Sec + metricNamespace: Microsoft.Compute/virtualMachines + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 400.0 +- name: OS Disk Max Burst IOPS + description: Maximum IOPS OS Disk can achieve with bursting + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-488 + properties: + metricName: OS Disk Max Burst IOPS + metricNamespace: Microsoft.Compute/virtualMachines + severity: 3 + windowSize: PT1H + evaluationFrequency: PT30M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 3500.0 +- name: Data Disk Read Operations/Sec + description: Read IOPS from a single disk during monitoring period + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-480 + properties: + metricName: Data Disk Read Operations/Sec + metricNamespace: Microsoft.Compute/virtualMachines + severity: 1 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 100.0 +- name: Data Disk Max Burst IOPS + description: Maximum IOPS Data Disk can achieve with bursting + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-423 + properties: + metricName: Data Disk Max Burst IOPS + metricNamespace: Microsoft.Compute/virtualMachines + severity: 3 + windowSize: PT1H + evaluationFrequency: PT30M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 3750.0 +- name: Disk Write Bytes + description: Bytes written to disk during monitoring period + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-389 + properties: + metricName: Disk Write Bytes + metricNamespace: Microsoft.Compute/virtualMachines + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 107374182400.0 +- name: OS Disk Write Operations/Sec + description: Write IOPS from a single disk during monitoring period for OS disk + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-382 + properties: + metricName: OS Disk Write Operations/Sec + metricNamespace: Microsoft.Compute/virtualMachines + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 200.0 +- name: Disk Read Bytes + description: Bytes read from disk during monitoring period + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-370 + properties: + metricName: Disk Read Bytes + metricNamespace: Microsoft.Compute/virtualMachines + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: Data Disk Write Operations/Sec + description: Write IOPS from a single disk during monitoring period + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-334 + properties: + metricName: Data Disk Write Operations/Sec + metricNamespace: Microsoft.Compute/virtualMachines + severity: 0 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 1000.0 diff --git a/services/ContainerInstance/_index.md b/services/ContainerInstance/_index.md new file mode 100644 index 000000000..9da95f385 --- /dev/null +++ b/services/ContainerInstance/_index.md @@ -0,0 +1,5 @@ +--- +title: ContainerInstance +geekdocCollapseSection: true +geekdocHidden: true +--- diff --git a/services/ContainerInstance/containerGroups/_index.md b/services/ContainerInstance/containerGroups/_index.md new file mode 100644 index 000000000..1b43a8ebe --- /dev/null +++ b/services/ContainerInstance/containerGroups/_index.md @@ -0,0 +1,7 @@ +--- +title: containerGroups +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/ContainerInstance/containerGroups/alerts.yaml b/services/ContainerInstance/containerGroups/alerts.yaml new file mode 100644 index 000000000..5493ef335 --- /dev/null +++ b/services/ContainerInstance/containerGroups/alerts.yaml @@ -0,0 +1,86 @@ +- name: MemoryUsage + description: Total memory usage in byte. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-49821 + properties: + metricName: MemoryUsage + metricNamespace: Microsoft.ContainerInstance/containerGroups + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Maximum + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 2700000000.0 +- name: CpuUsage + description: CPU usage on all cores in millicores. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1474 + properties: + metricName: CpuUsage + metricNamespace: Microsoft.ContainerInstance/containerGroups + severity: 3 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: DynamicThresholdCriterion + dimensions: + - name: containername + operator: include + values: + - '*' + failingPeriods: + numberOfEvaluationPeriods: 4 + minFailingPeroidsToAlert: minFailingPeroidsToAlert + alertSensitivity: Low +- name: NetworkBytesReceivedPerSecond + description: The network bytes received per second. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1237 + properties: + metricName: NetworkBytesReceivedPerSecond + metricNamespace: Microsoft.ContainerInstance/containerGroups + severity: 3 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: DynamicThresholdCriterion + failingPeriods: + numberOfEvaluationPeriods: 4 + minFailingPeroidsToAlert: minFailingPeroidsToAlert + alertSensitivity: Low +- name: NetworkBytesTransmittedPerSecond + description: The network bytes transmitted per second. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1231 + properties: + metricName: NetworkBytesTransmittedPerSecond + metricNamespace: Microsoft.ContainerInstance/containerGroups + severity: 3 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: DynamicThresholdCriterion + failingPeriods: + numberOfEvaluationPeriods: 4 + minFailingPeroidsToAlert: minFailingPeroidsToAlert + alertSensitivity: Low diff --git a/services/ContainerRegistry/_index.md b/services/ContainerRegistry/_index.md new file mode 100644 index 000000000..b1ecbe49a --- /dev/null +++ b/services/ContainerRegistry/_index.md @@ -0,0 +1,5 @@ +--- +title: ContainerRegistry +geekdocCollapseSection: true +geekdocHidden: true +--- diff --git a/services/ContainerRegistry/registries/_index.md b/services/ContainerRegistry/registries/_index.md new file mode 100644 index 000000000..41b77bc16 --- /dev/null +++ b/services/ContainerRegistry/registries/_index.md @@ -0,0 +1,7 @@ +--- +title: registries +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/ContainerRegistry/registries/alerts.yaml b/services/ContainerRegistry/registries/alerts.yaml new file mode 100644 index 000000000..8e72f71dd --- /dev/null +++ b/services/ContainerRegistry/registries/alerts.yaml @@ -0,0 +1,57 @@ +- name: StorageUsed + description: The amount of storage used by the container registry. For a registry + account, it's the sum of capacity used by all the repositories within a registry. + It's sum of capacity used by shared layers, manifest files, and replica copies + in each of its repositories. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1139 + properties: + metricName: StorageUsed + metricNamespace: Microsoft.ContainerRegistry/registries + severity: 3 + windowSize: PT1H + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 429496729600.0 +- name: SuccessfulPullCount + description: Number of successful image pulls + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-738 + properties: + metricName: SuccessfulPullCount + metricNamespace: Microsoft.ContainerRegistry/registries + severity: 2 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Count + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 50.0 +- name: SuccessfulPushCount + description: Number of successful image pushes + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-736 + properties: + metricName: SuccessfulPushCount + metricNamespace: Microsoft.ContainerRegistry/registries + severity: 2 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Count + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 10.0 diff --git a/services/ContainerService/_index.md b/services/ContainerService/_index.md new file mode 100644 index 000000000..c529d4769 --- /dev/null +++ b/services/ContainerService/_index.md @@ -0,0 +1,5 @@ +--- +title: ContainerService +geekdocCollapseSection: true +geekdocHidden: true +--- diff --git a/services/ContainerService/managedClusters/_index.md b/services/ContainerService/managedClusters/_index.md new file mode 100644 index 000000000..1ca15da19 --- /dev/null +++ b/services/ContainerService/managedClusters/_index.md @@ -0,0 +1,7 @@ +--- +title: managedClusters +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/ContainerService/managedClusters/alerts.yaml b/services/ContainerService/managedClusters/alerts.yaml new file mode 100644 index 000000000..8ab7ce9af --- /dev/null +++ b/services/ContainerService/managedClusters/alerts.yaml @@ -0,0 +1,210 @@ +- name: node_cpu_usage_percentage + description: Aggregated average CPU utilization measured in percentage across the + cluster + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-87286 + properties: + metricName: node_cpu_usage_percentage + metricNamespace: Microsoft.ContainerService/managedClusters + severity: 3 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 95.0 +- name: node_memory_working_set_percentage + description: Container working set memory used in percent + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-82948 + properties: + metricName: node_memory_working_set_percentage + metricNamespace: Microsoft.ContainerService/managedClusters + severity: 3 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 100.0 +- name: node_disk_usage_percentage + description: Disk space used in percent by device + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-3339 + properties: + metricName: node_disk_usage_percentage + metricNamespace: Microsoft.ContainerService/managedClusters + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 80.0 +- name: node_memory_rss_percentage + description: Container RSS memory used in percent + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-2250 + properties: + metricName: node_memory_rss_percentage + metricNamespace: Microsoft.ContainerService/managedClusters + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 80.0 +- name: kube_pod_status_phase + description: Number of pods by phase + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-2220 + properties: + metricName: kube_pod_status_phase + metricNamespace: Microsoft.ContainerService/managedClusters + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + dimensions: + - name: phase + operator: include + values: + - failed + threshold: 0.0 +- name: cluster_autoscaler_cluster_safe_to_autoscale + description: Determines whether or not cluster autoscaler will take action on the + cluster + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1403 + properties: + metricName: cluster_autoscaler_cluster_safe_to_autoscale + metricNamespace: Microsoft.ContainerService/managedClusters + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: LessThan + criterionType: StaticThresholdCriterion + threshold: 1.0 +- name: kube_node_status_condition + description: Statuses for various node conditions + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1215 + properties: + metricName: kube_node_status_condition + metricNamespace: Microsoft.ContainerService/managedClusters + severity: 2 + windowSize: PT15M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + dimensions: + - name: status + operator: include + values: + - notready + threshold: 0.0 +- name: cluster_autoscaler_unschedulable_pods_count + description: Number of pods that are currently unschedulable in the cluster + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1088 + properties: + metricName: cluster_autoscaler_unschedulable_pods_count + metricNamespace: Microsoft.ContainerService/managedClusters + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: kube_pod_status_ready + description: Number of pods in Ready state + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-783 + properties: + metricName: kube_pod_status_ready + metricNamespace: Microsoft.ContainerService/managedClusters + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: LessThan + criterionType: StaticThresholdCriterion + threshold: 1.0 +- name: kube_node_status_allocatable_memory_bytes + description: Total amount of available memory in a managed cluster + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-611 + properties: + metricName: kube_node_status_allocatable_memory_bytes + metricNamespace: Microsoft.ContainerService/managedClusters + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: LessThan + criterionType: StaticThresholdCriterion + threshold: 1000000000.0 +- name: kube_node_status_allocatable_cpu_cores + description: Total number of available cpu cores in a managed cluster + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-391 + properties: + metricName: kube_node_status_allocatable_cpu_cores + metricNamespace: Microsoft.ContainerService/managedClusters + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: LessThan + criterionType: StaticThresholdCriterion + threshold: 2.0 diff --git a/services/DBforMariaDB/_index.md b/services/DBforMariaDB/_index.md new file mode 100644 index 000000000..aaf18ac32 --- /dev/null +++ b/services/DBforMariaDB/_index.md @@ -0,0 +1,5 @@ +--- +title: DBforMariaDB +geekdocCollapseSection: true +geekdocHidden: true +--- diff --git a/services/DBforMariaDB/servers/_index.md b/services/DBforMariaDB/servers/_index.md new file mode 100644 index 000000000..f13aa1eef --- /dev/null +++ b/services/DBforMariaDB/servers/_index.md @@ -0,0 +1,7 @@ +--- +title: servers +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/DBforMariaDB/servers/alerts.yaml b/services/DBforMariaDB/servers/alerts.yaml new file mode 100644 index 000000000..9b55b538b --- /dev/null +++ b/services/DBforMariaDB/servers/alerts.yaml @@ -0,0 +1,72 @@ +- name: cpu_percent + description: CPU percent + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-737 + properties: + metricName: cpu_percent + metricNamespace: Microsoft.DBforMariaDB/servers + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 80.0 +- name: storage_percent + description: Storage percent + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-442 + properties: + metricName: storage_percent + metricNamespace: Microsoft.DBforMariaDB/servers + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 80.0 +- name: memory_percent + description: Memory percent + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-423 + properties: + metricName: memory_percent + metricNamespace: Microsoft.DBforMariaDB/servers + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 90.0 +- name: io_consumption_percent + description: IO percent + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-341 + properties: + metricName: io_consumption_percent + metricNamespace: Microsoft.DBforMariaDB/servers + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 80.0 diff --git a/services/DBforMySQL/_index.md b/services/DBforMySQL/_index.md new file mode 100644 index 000000000..874cd8703 --- /dev/null +++ b/services/DBforMySQL/_index.md @@ -0,0 +1,5 @@ +--- +title: DBforMySQL +geekdocCollapseSection: true +geekdocHidden: true +--- diff --git a/services/DBforMySQL/flexibleServers/_index.md b/services/DBforMySQL/flexibleServers/_index.md new file mode 100644 index 000000000..b38c8e12a --- /dev/null +++ b/services/DBforMySQL/flexibleServers/_index.md @@ -0,0 +1,7 @@ +--- +title: flexibleServers +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/DBforMySQL/flexibleServers/alerts.yaml b/services/DBforMySQL/flexibleServers/alerts.yaml new file mode 100644 index 000000000..78ad355a7 --- /dev/null +++ b/services/DBforMySQL/flexibleServers/alerts.yaml @@ -0,0 +1,126 @@ +- name: cpu_percent + description: Host CPU Percent + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-3416 + properties: + metricName: cpu_percent + metricNamespace: Microsoft.DBforMySQL/flexibleServers + severity: 3 + windowSize: PT1H + evaluationFrequency: PT1H + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 95.0 +- name: memory_percent + description: Host Memory Percent + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-2894 + properties: + metricName: memory_percent + metricNamespace: Microsoft.DBforMySQL/flexibleServers + severity: 3 + windowSize: PT1H + evaluationFrequency: PT1H + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 95.0 +- name: storage_percent + description: Storage Percent + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-2642 + properties: + metricName: storage_percent + metricNamespace: Microsoft.DBforMySQL/flexibleServers + severity: 3 + windowSize: PT1H + evaluationFrequency: PT1H + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 80.0 +- name: aborted_connections + description: Aborted Connections + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-922 + properties: + metricName: aborted_connections + metricNamespace: Microsoft.DBforMySQL/flexibleServers + severity: 1 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 4.0 +- name: active_connections + description: Active Connections + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-802 + properties: + metricName: active_connections + metricNamespace: Microsoft.DBforMySQL/flexibleServers + severity: 1 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Maximum + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 5000.0 +- name: io_consumption_percent + description: Storage I/O consumption percent + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-753 + properties: + metricName: io_consumption_percent + metricNamespace: Microsoft.DBforMySQL/flexibleServers + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 90.0 +- name: replication_lag + description: Replication lag in seconds + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-292 + properties: + metricName: replication_lag + metricNamespace: Microsoft.DBforMySQL/flexibleServers + severity: 1 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Maximum + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 6000.0 diff --git a/services/DBforMySQL/servers/_index.md b/services/DBforMySQL/servers/_index.md new file mode 100644 index 000000000..f13aa1eef --- /dev/null +++ b/services/DBforMySQL/servers/_index.md @@ -0,0 +1,7 @@ +--- +title: servers +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/DBforMySQL/servers/alerts.yaml b/services/DBforMySQL/servers/alerts.yaml new file mode 100644 index 000000000..b84a6f743 --- /dev/null +++ b/services/DBforMySQL/servers/alerts.yaml @@ -0,0 +1,162 @@ +- name: cpu_percent + description: CPU percent + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-8109 + properties: + metricName: cpu_percent + metricNamespace: Microsoft.DBforMySQL/servers + severity: 1 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 80.0 +- name: connections_failed + description: Failed Connections + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-4984 + properties: + metricName: connections_failed + metricNamespace: Microsoft.DBforMySQL/servers + severity: 1 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: memory_percent + description: Memory percent + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-3350 + properties: + metricName: memory_percent + metricNamespace: Microsoft.DBforMySQL/servers + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 90.0 +- name: storage_percent + description: Storage percent + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-3050 + properties: + metricName: storage_percent + metricNamespace: Microsoft.DBforMySQL/servers + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 80.0 +- name: io_consumption_percent + description: IO percent + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-2085 + properties: + metricName: io_consumption_percent + metricNamespace: Microsoft.DBforMySQL/servers + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 90.0 +- name: active_connections + description: Active Connections + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1161 + properties: + metricName: active_connections + metricNamespace: Microsoft.DBforMySQL/servers + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 1125.0 +- name: serverlog_storage_percent + description: Server Log storage percent + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-348 + properties: + metricName: serverlog_storage_percent + metricNamespace: Microsoft.DBforMySQL/servers + severity: 0 + windowSize: PT15M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 80.0 +- name: storage_limit + description: Storage limit + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-314 + properties: + metricName: storage_limit + metricNamespace: Microsoft.DBforMySQL/servers + severity: 3 + windowSize: PT30M + evaluationFrequency: PT15M + timeAggregation: Maximum + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 15393162788864.0 +- name: seconds_behind_master + description: Replication lag in seconds + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-300 + properties: + metricName: seconds_behind_master + metricNamespace: Microsoft.DBforMySQL/servers + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Maximum + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 3600.0 diff --git a/services/DBforPostgreSQL/_index.md b/services/DBforPostgreSQL/_index.md new file mode 100644 index 000000000..a5bb41e68 --- /dev/null +++ b/services/DBforPostgreSQL/_index.md @@ -0,0 +1,5 @@ +--- +title: DBforPostgreSQL +geekdocCollapseSection: true +geekdocHidden: true +--- diff --git a/services/DBforPostgreSQL/flexibleServers/_index.md b/services/DBforPostgreSQL/flexibleServers/_index.md new file mode 100644 index 000000000..b38c8e12a --- /dev/null +++ b/services/DBforPostgreSQL/flexibleServers/_index.md @@ -0,0 +1,7 @@ +--- +title: flexibleServers +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/DBforPostgreSQL/flexibleServers/alerts.yaml b/services/DBforPostgreSQL/flexibleServers/alerts.yaml new file mode 100644 index 000000000..f0d46cf77 --- /dev/null +++ b/services/DBforPostgreSQL/flexibleServers/alerts.yaml @@ -0,0 +1,162 @@ +- name: storage_percent + description: Storage percent + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-13025 + properties: + metricName: storage_percent + metricNamespace: Microsoft.DBforPostgreSQL/flexibleServers + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 90.0 +- name: cpu_percent + description: CPU percent + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-12336 + properties: + metricName: cpu_percent + metricNamespace: Microsoft.DBforPostgreSQL/flexibleServers + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 90.0 +- name: active_connections + description: Active Connections + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-7952 + properties: + metricName: active_connections + metricNamespace: Microsoft.DBforPostgreSQL/flexibleServers + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 687.2 +- name: memory_percent + description: Memory percent + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-6886 + properties: + metricName: memory_percent + metricNamespace: Microsoft.DBforPostgreSQL/flexibleServers + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 90.0 +- name: connections_failed + description: Failed Connections + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-3153 + properties: + metricName: connections_failed + metricNamespace: Microsoft.DBforPostgreSQL/flexibleServers + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 5.0 +- name: iops + description: IO Operations per second + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-823 + properties: + metricName: iops + metricNamespace: Microsoft.DBforPostgreSQL/flexibleServers + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 450.0 +- name: disk_iops_consumed_percentage + description: Percentage of disk I/Os consumed per minute + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-431 + properties: + metricName: disk_iops_consumed_percentage + metricNamespace: Microsoft.DBforPostgreSQL/flexibleServers + severity: 2 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 80.0 +- name: is_db_alive + description: Indicates if the database is up or not + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-354 + properties: + metricName: is_db_alive + metricNamespace: Microsoft.DBforPostgreSQL/flexibleServers + severity: 1 + windowSize: PT1M + evaluationFrequency: PT1M + timeAggregation: Maximum + operator: LessThan + criterionType: StaticThresholdCriterion + threshold: 1.0 +- name: storage_free + description: Storage Free + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-327 + properties: + metricName: storage_free + metricNamespace: Microsoft.DBforPostgreSQL/flexibleServers + severity: 0 + windowSize: PT1H + evaluationFrequency: PT5M + timeAggregation: Average + operator: LessThan + criterionType: StaticThresholdCriterion + threshold: 10737418240.0 diff --git a/services/DBforPostgreSQL/servers/_index.md b/services/DBforPostgreSQL/servers/_index.md new file mode 100644 index 000000000..f13aa1eef --- /dev/null +++ b/services/DBforPostgreSQL/servers/_index.md @@ -0,0 +1,7 @@ +--- +title: servers +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/DBforPostgreSQL/servers/alerts.yaml b/services/DBforPostgreSQL/servers/alerts.yaml new file mode 100644 index 000000000..ffad014be --- /dev/null +++ b/services/DBforPostgreSQL/servers/alerts.yaml @@ -0,0 +1,144 @@ +- name: cpu_percent + description: CPU percent + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-14860 + properties: + metricName: cpu_percent + metricNamespace: Microsoft.DBforPostgreSQL/servers + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 90.0 +- name: storage_percent + description: Storage percent + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-10115 + properties: + metricName: storage_percent + metricNamespace: Microsoft.DBforPostgreSQL/servers + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 90.0 +- name: memory_percent + description: Memory percent + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-7592 + properties: + metricName: memory_percent + metricNamespace: Microsoft.DBforPostgreSQL/servers + severity: 3 + windowSize: PT30M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 95.0 +- name: active_connections + description: Active Connections + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-7508 + properties: + metricName: active_connections + metricNamespace: Microsoft.DBforPostgreSQL/servers + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 120.0 +- name: io_consumption_percent + description: IO percent + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-5727 + properties: + metricName: io_consumption_percent + metricNamespace: Microsoft.DBforPostgreSQL/servers + severity: 3 + windowSize: PT30M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 95.0 +- name: connections_failed + description: Failed Connections + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-3664 + properties: + metricName: connections_failed + metricNamespace: Microsoft.DBforPostgreSQL/servers + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 5.0 +- name: serverlog_storage_percent + description: Server Log storage percent + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-694 + properties: + metricName: serverlog_storage_percent + metricNamespace: Microsoft.DBforPostgreSQL/servers + severity: 2 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 80.0 +- name: pg_replica_log_delay_in_seconds + description: Replica lag in seconds + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-412 + properties: + metricName: pg_replica_log_delay_in_seconds + metricNamespace: Microsoft.DBforPostgreSQL/servers + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Maximum + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 60.0 diff --git a/services/DataFactory/_index.md b/services/DataFactory/_index.md new file mode 100644 index 000000000..6705300ec --- /dev/null +++ b/services/DataFactory/_index.md @@ -0,0 +1,5 @@ +--- +title: DataFactory +geekdocCollapseSection: true +geekdocHidden: true +--- diff --git a/services/DataFactory/factories/_index.md b/services/DataFactory/factories/_index.md new file mode 100644 index 000000000..1cdd88ebd --- /dev/null +++ b/services/DataFactory/factories/_index.md @@ -0,0 +1,7 @@ +--- +title: factories +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/DataFactory/factories/alerts.yaml b/services/DataFactory/factories/alerts.yaml new file mode 100644 index 000000000..486322dd2 --- /dev/null +++ b/services/DataFactory/factories/alerts.yaml @@ -0,0 +1,329 @@ +- name: PipelineFailedRuns + description: Failed pipeline runs metrics + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-79303 + properties: + metricName: PipelineFailedRuns + metricNamespace: Microsoft.DataFactory/factories + severity: 1 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: MaxAllowedResourceCount + description: Maximum allowed entities count + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-22793 + properties: + metricName: MaxAllowedResourceCount + metricNamespace: Microsoft.DataFactory/factories + severity: 1 + windowSize: PT30M + evaluationFrequency: PT30M + timeAggregation: Maximum + operator: LessThan + criterionType: StaticThresholdCriterion + threshold: 2500000.0 +- name: MaxAllowedFactorySizeInGbUnits + description: Maximum allowed factory size (GB unit) + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-22791 + properties: + metricName: MaxAllowedFactorySizeInGbUnits + metricNamespace: Microsoft.DataFactory/factories + severity: 1 + windowSize: PT30M + evaluationFrequency: PT30M + timeAggregation: Maximum + operator: LessThan + criterionType: StaticThresholdCriterion + threshold: 8.0 +- name: ResourceCount + description: Total entities count + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-22650 + properties: + metricName: ResourceCount + metricNamespace: Microsoft.DataFactory/factories + severity: 1 + windowSize: PT30M + evaluationFrequency: PT30M + timeAggregation: Maximum + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 1700000.0 +- name: FactorySizeInGbUnits + description: Total factory size (GB unit) + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-22586 + properties: + metricName: FactorySizeInGbUnits + metricNamespace: Microsoft.DataFactory/factories + severity: 1 + windowSize: PT30M + evaluationFrequency: PT30M + timeAggregation: Maximum + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 6.0 +- name: PipelineSucceededRuns + description: Succeeded pipeline runs metrics + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-9905 + properties: + metricName: PipelineSucceededRuns + metricNamespace: Microsoft.DataFactory/factories + severity: 0 + windowSize: PT15M + evaluationFrequency: PT5M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + dimensions: + - name: name + operator: include + values: + - productrecommendation + threshold: 0.0 +- name: ActivityFailedRuns + description: Failed activity runs metrics + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-8755 + properties: + metricName: ActivityFailedRuns + metricNamespace: Microsoft.DataFactory/factories + severity: 1 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: TriggerFailedRuns + description: Failed trigger runs metrics + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-6419 + properties: + metricName: TriggerFailedRuns + metricNamespace: Microsoft.DataFactory/factories + severity: 1 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: IntegrationRuntimeCpuPercentage + description: Integration runtime CPU utilization + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-2351 + properties: + metricName: IntegrationRuntimeCpuPercentage + metricNamespace: Microsoft.DataFactory/factories + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 95.0 +- name: PipelineElapsedTimeRuns + description: Elapsed Time Pipeline Runs Metrics + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1150 + properties: + metricName: PipelineElapsedTimeRuns + metricNamespace: Microsoft.DataFactory/factories + severity: 2 + windowSize: PT1M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: ActivitySucceededRuns + description: Succeeded activity runs metrics + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-685 + properties: + metricName: ActivitySucceededRuns + metricNamespace: Microsoft.DataFactory/factories + severity: 3 + windowSize: PT1M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: PipelineCancelledRuns + description: Cancelled pipeline runs metrics + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-581 + properties: + metricName: PipelineCancelledRuns + metricNamespace: Microsoft.DataFactory/factories + severity: 1 + windowSize: PT1M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: IntegrationRuntimeAvailableMemory + description: Integration runtime available memory + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-489 + properties: + metricName: IntegrationRuntimeAvailableMemory + metricNamespace: Microsoft.DataFactory/factories + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: LessThanOrEqual + criterionType: StaticThresholdCriterion + threshold: 5000000000.0 +- name: TriggerSucceededRuns + description: Succeeded trigger runs metrics + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-473 + properties: + metricName: TriggerSucceededRuns + metricNamespace: Microsoft.DataFactory/factories + severity: 4 + windowSize: PT1M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: IntegrationRuntimeAvailableNodeNumber + description: Integration runtime available node count + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-443 + properties: + metricName: IntegrationRuntimeAvailableNodeNumber + metricNamespace: Microsoft.DataFactory/factories + severity: 1 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Average + operator: LessThan + criterionType: StaticThresholdCriterion + threshold: 1.0 +- name: SSISPackageExecutionFailed + description: Failed SSIS package execution metrics + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-280 + properties: + metricName: SSISPackageExecutionFailed + metricNamespace: Microsoft.DataFactory/factories + severity: 2 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: SSISIntegrationRuntimeStartFailed + description: Failed SSIS integration runtime start metrics + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-279 + properties: + metricName: SSISIntegrationRuntimeStartFailed + metricNamespace: Microsoft.DataFactory/factories + severity: 2 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: IntegrationRuntimeAverageTaskPickupDelay + description: Integration runtime queue duration + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-252 + properties: + metricName: IntegrationRuntimeAverageTaskPickupDelay + metricNamespace: Microsoft.DataFactory/factories + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 10.0 diff --git a/services/Devices/IotHubs/_index.md b/services/Devices/IotHubs/_index.md new file mode 100644 index 000000000..f899ef682 --- /dev/null +++ b/services/Devices/IotHubs/_index.md @@ -0,0 +1,7 @@ +--- +title: IotHubs +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/Devices/IotHubs/alerts.yaml b/services/Devices/IotHubs/alerts.yaml new file mode 100644 index 000000000..840e1d0b2 --- /dev/null +++ b/services/Devices/IotHubs/alerts.yaml @@ -0,0 +1,73 @@ +- name: dailyMessageQuotaUsed + description: Number of total messages used today + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1708 + properties: + metricName: dailyMessageQuotaUsed + metricNamespace: Microsoft.Devices/IotHubs + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Maximum + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 300000.0 +- name: d2c.telemetry.ingress.sendThrottle + description: Number of throttling errors due to device throughput throttles + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-852 + properties: + metricName: d2c.telemetry.ingress.sendThrottle + metricNamespace: Microsoft.Devices/IotHubs + severity: 3 + windowSize: PT1H + evaluationFrequency: PT1H + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 10.0 +- name: connectedDeviceCount + description: Number of devices connected to your IoT hub + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-270 + properties: + metricName: connectedDeviceCount + metricNamespace: Microsoft.Devices/IotHubs + severity: 0 + windowSize: PT1H + evaluationFrequency: PT1H + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 1.0 +- name: d2c.telemetry.ingress.success + description: Number of device-to-cloud telemetry messages sent successfully to your + IoT hub + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-263 + properties: + metricName: d2c.telemetry.ingress.success + metricNamespace: Microsoft.Devices/IotHubs + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 24000.0 diff --git a/services/Devices/_index.md b/services/Devices/_index.md new file mode 100644 index 000000000..a8dbeac2a --- /dev/null +++ b/services/Devices/_index.md @@ -0,0 +1,5 @@ +--- +title: Devices +geekdocCollapseSection: true +geekdocHidden: true +--- diff --git a/services/DocumentDB/_index.md b/services/DocumentDB/_index.md new file mode 100644 index 000000000..faecf1beb --- /dev/null +++ b/services/DocumentDB/_index.md @@ -0,0 +1,5 @@ +--- +title: DocumentDB +geekdocCollapseSection: true +geekdocHidden: true +--- diff --git a/services/DocumentDB/databaseAccounts/_index.md b/services/DocumentDB/databaseAccounts/_index.md new file mode 100644 index 000000000..0fe76c94b --- /dev/null +++ b/services/DocumentDB/databaseAccounts/_index.md @@ -0,0 +1,7 @@ +--- +title: databaseAccounts +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/DocumentDB/databaseAccounts/alerts.yaml b/services/DocumentDB/databaseAccounts/alerts.yaml new file mode 100644 index 000000000..e4ea3aca9 --- /dev/null +++ b/services/DocumentDB/databaseAccounts/alerts.yaml @@ -0,0 +1,268 @@ +- name: ServiceAvailability + description: Account requests availability at one hour, day or month granularity + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-21477 + properties: + metricName: ServiceAvailability + metricNamespace: Microsoft.DocumentDB/databaseAccounts + severity: 3 + windowSize: PT1H + evaluationFrequency: PT5M + timeAggregation: Average + operator: LessThan + criterionType: StaticThresholdCriterion + threshold: 98.0 +- name: NormalizedRUConsumption + description: Max RU consumption percentage per minute + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-20908 + properties: + metricName: NormalizedRUConsumption + metricNamespace: Microsoft.DocumentDB/databaseAccounts + severity: 3 + windowSize: PT15M + evaluationFrequency: PT5M + timeAggregation: Maximum + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 48.0 +- name: RemoveRegion + description: Region Removed + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-16334 + properties: + metricName: RemoveRegion + metricNamespace: Microsoft.DocumentDB/databaseAccounts + severity: 3 + windowSize: PT15M + evaluationFrequency: PT5M + timeAggregation: Count + operator: GreaterThanOrEqual + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: TotalRequests + description: Number of requests made + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-11823 + properties: + metricName: TotalRequests + metricNamespace: Microsoft.DocumentDB/databaseAccounts + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Count + operator: GreaterThan + criterionType: StaticThresholdCriterion + dimensions: + - name: statuscode + operator: include + values: + - '429' + threshold: 5.0 +- name: SqlContainerDelete + description: Sql Container Deleted + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-8289 + properties: + metricName: SqlContainerDelete + metricNamespace: Microsoft.DocumentDB/databaseAccounts + severity: 2 + windowSize: PT15M + evaluationFrequency: PT5M + timeAggregation: Count + operator: GreaterThanOrEqual + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: SqlDatabaseDelete + description: Sql Database Deleted + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-8209 + properties: + metricName: SqlDatabaseDelete + metricNamespace: Microsoft.DocumentDB/databaseAccounts + severity: 2 + windowSize: PT15M + evaluationFrequency: PT5M + timeAggregation: Count + operator: GreaterThanOrEqual + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: TotalRequestUnits + description: SQL Request Units consumed + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-3159 + properties: + metricName: TotalRequestUnits + metricNamespace: Microsoft.DocumentDB/databaseAccounts + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + dimensions: + - name: statuscode + operator: include + values: + - '429' + threshold: 100.0 +- name: ServerSideLatency + description: Server Side Latency + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-2777 + properties: + metricName: ServerSideLatency + metricNamespace: Microsoft.DocumentDB/databaseAccounts + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 5000.0 +- name: ProvisionedThroughput + description: Provisioned Throughput + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1568 + properties: + metricName: ProvisionedThroughput + metricNamespace: Microsoft.DocumentDB/databaseAccounts + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Maximum + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 3000.0 +- name: MongoRequests + description: Number of Mongo Requests Made + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1420 + properties: + metricName: MongoRequests + metricNamespace: Microsoft.DocumentDB/databaseAccounts + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Count + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 2500.0 +- name: UpdateAccountKeys + description: Account Keys Updated + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1397 + properties: + metricName: UpdateAccountKeys + metricNamespace: Microsoft.DocumentDB/databaseAccounts + severity: 2 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Count + operator: GreaterThanOrEqual + criterionType: StaticThresholdCriterion + dimensions: + - name: keytype + operator: include + values: + - '*' + threshold: 1.0 +- name: RegionFailover + description: Region Failed Over + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1220 + properties: + metricName: RegionFailover + metricNamespace: Microsoft.DocumentDB/databaseAccounts + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Count + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: DataUsage + description: Total data usage reported at 5 minutes granularity + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-936 + properties: + metricName: DataUsage + metricNamespace: Microsoft.DocumentDB/databaseAccounts + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 10000000000.0 +- name: ReplicationLatency + description: P99 Replication Latency across source and target regions for geo-enabled + account + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-380 + properties: + metricName: ReplicationLatency + metricNamespace: Microsoft.DocumentDB/databaseAccounts + severity: 3 + windowSize: PT15M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 5000.0 diff --git a/services/EventGrid/_index.md b/services/EventGrid/_index.md new file mode 100644 index 000000000..172cb1da1 --- /dev/null +++ b/services/EventGrid/_index.md @@ -0,0 +1,5 @@ +--- +title: EventGrid +geekdocCollapseSection: true +geekdocHidden: true +--- diff --git a/services/EventGrid/domains/_index.md b/services/EventGrid/domains/_index.md new file mode 100644 index 000000000..326facf7c --- /dev/null +++ b/services/EventGrid/domains/_index.md @@ -0,0 +1,7 @@ +--- +title: domains +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/EventGrid/domains/alerts.yaml b/services/EventGrid/domains/alerts.yaml new file mode 100644 index 000000000..ded1bb60e --- /dev/null +++ b/services/EventGrid/domains/alerts.yaml @@ -0,0 +1,18 @@ +- name: DeliveryAttemptFailCount + description: Total events failed to deliver to this event subscription + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-305 + properties: + metricName: DeliveryAttemptFailCount + metricNamespace: Microsoft.EventGrid/domains + severity: 3 + windowSize: PT15M + evaluationFrequency: PT15M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 1.0 diff --git a/services/EventGrid/systemTopics/_index.md b/services/EventGrid/systemTopics/_index.md new file mode 100644 index 000000000..8f16f2cf8 --- /dev/null +++ b/services/EventGrid/systemTopics/_index.md @@ -0,0 +1,7 @@ +--- +title: systemTopics +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/EventGrid/systemTopics/alerts.yaml b/services/EventGrid/systemTopics/alerts.yaml new file mode 100644 index 000000000..74449ab4a --- /dev/null +++ b/services/EventGrid/systemTopics/alerts.yaml @@ -0,0 +1,36 @@ +- name: DeliveryAttemptFailCount + description: Total events failed to deliver to this event subscription + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-429 + properties: + metricName: DeliveryAttemptFailCount + metricNamespace: Microsoft.EventGrid/systemTopics + severity: 3 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: DeadLetteredCount + description: Total dead lettered events matching to this event subscription + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-354 + properties: + metricName: DeadLetteredCount + metricNamespace: Microsoft.EventGrid/systemTopics + severity: 3 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 diff --git a/services/EventGrid/topics/_index.md b/services/EventGrid/topics/_index.md new file mode 100644 index 000000000..f520e6ed9 --- /dev/null +++ b/services/EventGrid/topics/_index.md @@ -0,0 +1,7 @@ +--- +title: topics +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/EventGrid/topics/alerts.yaml b/services/EventGrid/topics/alerts.yaml new file mode 100644 index 000000000..8868dee4d --- /dev/null +++ b/services/EventGrid/topics/alerts.yaml @@ -0,0 +1,108 @@ +- name: PublishSuccessLatencyInMs + description: Publish success latency in milliseconds + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-2531 + properties: + metricName: PublishSuccessLatencyInMs + metricNamespace: Microsoft.EventGrid/topics + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 3000.0 +- name: DeadLetteredCount + description: Total dead lettered events matching to this event subscription + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-2048 + properties: + metricName: DeadLetteredCount + metricNamespace: Microsoft.EventGrid/topics + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThanOrEqual + criterionType: StaticThresholdCriterion + threshold: 1.0 +- name: PublishSuccessCount + description: Total events published to this topic + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1730 + properties: + metricName: PublishSuccessCount + metricNamespace: Microsoft.EventGrid/topics + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 2500.0 +- name: DeliveryAttemptFailCount + description: Total events failed to deliver to this event subscription + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1332 + properties: + metricName: DeliveryAttemptFailCount + metricNamespace: Microsoft.EventGrid/topics + severity: 3 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 1.0 +- name: PublishFailCount + description: Total events failed to publish to this topic + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-983 + properties: + metricName: PublishFailCount + metricNamespace: Microsoft.EventGrid/topics + severity: 3 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 5.0 +- name: DroppedEventCount + description: Total dropped events matching to this event subscription + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-802 + properties: + metricName: DroppedEventCount + metricNamespace: Microsoft.EventGrid/topics + severity: 3 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 1.0 diff --git a/services/EventHub/_index.md b/services/EventHub/_index.md new file mode 100644 index 000000000..63d29c8b7 --- /dev/null +++ b/services/EventHub/_index.md @@ -0,0 +1,5 @@ +--- +title: EventHub +geekdocCollapseSection: true +geekdocHidden: true +--- diff --git a/services/EventHub/clusters/_index.md b/services/EventHub/clusters/_index.md new file mode 100644 index 000000000..4d224591b --- /dev/null +++ b/services/EventHub/clusters/_index.md @@ -0,0 +1,7 @@ +--- +title: clusters +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/EventHub/clusters/alerts.yaml b/services/EventHub/clusters/alerts.yaml new file mode 100644 index 000000000..244706a08 --- /dev/null +++ b/services/EventHub/clusters/alerts.yaml @@ -0,0 +1,23 @@ +- name: CPU + description: CPU utilization for the Event Hub Cluster as a percentage + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-930 + properties: + metricName: CPU + metricNamespace: Microsoft.EventHub/clusters + severity: 2 + windowSize: PT15M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + dimensions: + - name: role + operator: include + values: + - sbsfe + threshold: 70.0 diff --git a/services/EventHub/namespaces/_index.md b/services/EventHub/namespaces/_index.md new file mode 100644 index 000000000..4fb117a9b --- /dev/null +++ b/services/EventHub/namespaces/_index.md @@ -0,0 +1,7 @@ +--- +title: namespaces +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/EventHub/namespaces/alerts.yaml b/services/EventHub/namespaces/alerts.yaml new file mode 100644 index 000000000..c10e7b0af --- /dev/null +++ b/services/EventHub/namespaces/alerts.yaml @@ -0,0 +1,217 @@ +- name: ThrottledRequests + description: Throttled Requests for Microsoft.EventHub. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-17566 + properties: + metricName: ThrottledRequests + metricNamespace: Microsoft.EventHub/namespaces + severity: 3 + windowSize: PT15M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: DynamicThresholdCriterion + failingPeriods: + numberOfEvaluationPeriods: 6 + minFailingPeroidsToAlert: minFailingPeroidsToAlert + alertSensitivity: Low +- name: QuotaExceededErrors + description: Quota Exceeded Errors for Microsoft.EventHub. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-17532 + properties: + metricName: QuotaExceededErrors + metricNamespace: Microsoft.EventHub/namespaces + severity: 3 + windowSize: PT15M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: DynamicThresholdCriterion + failingPeriods: + numberOfEvaluationPeriods: 4 + minFailingPeroidsToAlert: minFailingPeroidsToAlert + alertSensitivity: Low +- name: ServerErrors + description: Server Errors for Microsoft.EventHub. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-17470 + properties: + metricName: ServerErrors + metricNamespace: Microsoft.EventHub/namespaces + severity: 2 + windowSize: PT15M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: DynamicThresholdCriterion + failingPeriods: + numberOfEvaluationPeriods: 6 + minFailingPeroidsToAlert: minFailingPeroidsToAlert + alertSensitivity: Low +- name: IncomingMessages + description: Incoming Messages for Microsoft.EventHub. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-8388 + properties: + metricName: IncomingMessages + metricNamespace: Microsoft.EventHub/namespaces + severity: 3 + windowSize: PT6H + evaluationFrequency: PT1H + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + dimensions: + - name: entityname + operator: include + values: + - diagnostic-logs + threshold: 0.0 +- name: OutgoingMessages + description: Outgoing Messages for Microsoft.EventHub. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-7782 + properties: + metricName: OutgoingMessages + metricNamespace: Microsoft.EventHub/namespaces + severity: 3 + windowSize: PT6H + evaluationFrequency: PT1H + timeAggregation: Total + operator: LessThan + criterionType: StaticThresholdCriterion + dimensions: + - name: entityname + operator: include + values: + - diagnostic-logs + threshold: 1.0 +- name: UserErrors + description: User Errors for Microsoft.EventHub. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-3719 + properties: + metricName: UserErrors + metricNamespace: Microsoft.EventHub/namespaces + severity: 1 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: NamespaceCpuUsage + description: CPU usage metric for Premium SKU namespaces. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-995 + properties: + metricName: NamespaceCpuUsage + metricNamespace: Microsoft.EventHub/namespaces + severity: 2 + windowSize: PT15M + evaluationFrequency: PT15M + timeAggregation: Maximum + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 70.0 +- name: IncomingBytes + description: Incoming Bytes for Microsoft.EventHub. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-678 + properties: + metricName: IncomingBytes + metricNamespace: Microsoft.EventHub/namespaces + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 400000000.0 +- name: NamespaceMemoryUsage + description: Memory usage metric for Premium SKU namespaces. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-664 + properties: + metricName: NamespaceMemoryUsage + metricNamespace: Microsoft.EventHub/namespaces + severity: 3 + windowSize: PT15M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThanOrEqual + criterionType: StaticThresholdCriterion + threshold: 80.0 +- name: OutgoingBytes + description: Outgoing Bytes for Microsoft.EventHub. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-440 + properties: + metricName: OutgoingBytes + metricNamespace: Microsoft.EventHub/namespaces + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 400000000.0 +- name: CaptureBacklog + description: Capture Backlog for Microsoft.EventHub. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-438 + properties: + metricName: CaptureBacklog + metricNamespace: Microsoft.EventHub/namespaces + severity: 4 + windowSize: PT6H + evaluationFrequency: PT1H + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 50000000.0 diff --git a/services/HealthcareApis/_index.md b/services/HealthcareApis/_index.md new file mode 100644 index 000000000..7cc44cb21 --- /dev/null +++ b/services/HealthcareApis/_index.md @@ -0,0 +1,5 @@ +--- +title: HealthcareApis +geekdocCollapseSection: true +geekdocHidden: true +--- diff --git a/services/HealthcareApis/services/_index.md b/services/HealthcareApis/services/_index.md new file mode 100644 index 000000000..6085162dd --- /dev/null +++ b/services/HealthcareApis/services/_index.md @@ -0,0 +1,7 @@ +--- +title: services +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/HealthcareApis/services/alerts.yaml b/services/HealthcareApis/services/alerts.yaml new file mode 100644 index 000000000..fa36e32c7 --- /dev/null +++ b/services/HealthcareApis/services/alerts.yaml @@ -0,0 +1,36 @@ +- name: TotalLatency + description: The response latency of the service. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-379 + properties: + metricName: TotalLatency + metricNamespace: Microsoft.HealthcareApis/services + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Maximum + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 10000.0 +- name: TotalRequests + description: The total number of requests received by the service. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-378 + properties: + metricName: TotalRequests + metricNamespace: Microsoft.HealthcareApis/services + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 2500.0 diff --git a/services/KeyVault/vaults/alerts.yaml b/services/KeyVault/vaults/alerts.yaml index 6947561a7..4bbbeea41 100644 --- a/services/KeyVault/vaults/alerts.yaml +++ b/services/KeyVault/vaults/alerts.yaml @@ -1,14 +1,15 @@ - name: Activity Log Key Vault Delete description: Activity Log Alert for Key Vault Delete type: ActivityLog - verified: False - visible: True + verified: false + visible: true tags: - alz properties: category: Administrative operationName: Microsoft.KeyVault/vaults/delete - status: [ succeeded ] + status: + - succeeded references: - name: Activity Log Service Notifications url: https://learn.microsoft.com/azure/service-health/alerts-activity-log-service-notifications-portal @@ -18,10 +19,10 @@ - description: Policy to Deploy Activity Log Key Vault Delete Alert template: Deploy-ActivityLog-KeyVault-Del.json - name: Availability - description: Metric Alert for KeyVault Availability + description: Vault requests availability type: Metric - verified: True - visible: True + verified: true + visible: true tags: - alz properties: @@ -38,10 +39,10 @@ - description: Policy to audit/deploy KeyVault Availability Alert template: Deploy-KV-Availability-Alert.json - name: Saturation Shoebox - description: Metric Alert for KeyVault Capacity + description: Vault capacity used type: Metric - verified: True - visible: True + verified: true + visible: true tags: - alz properties: @@ -58,10 +59,10 @@ - description: Policy to audit/deploy KeyVault Capacity Alert template: Deploy-KV-Capacity-Alert.json - name: Service API Latency - description: Metric Alert for KeyVault Latency + description: Overall latency of service api requests type: Metric - verified: True - visible: True + verified: true + visible: true tags: - alz properties: @@ -78,10 +79,10 @@ - description: Policy to audit/deploy KeyVault Latency Alert template: Deploy-KV-Latency-Alert.json - name: Service API Result - description: Metric Alert for KeyVault Requests + description: Number of total service api results type: Metric - verified: True - visible: True + verified: true + visible: true tags: - alz properties: @@ -100,3 +101,98 @@ deployments: - description: Policy to audit/deploy KeyVault Requests Alert template: Deploy-KV-Requests-Alert.json +- name: Availability + description: Vault requests availability + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-21701 + properties: + metricName: Availability + metricNamespace: Microsoft.KeyVault/vaults + severity: 2 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Average + operator: LessThan + criterionType: StaticThresholdCriterion + threshold: 100.0 +- name: ServiceApiLatency + description: Overall latency of service api requests + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-11958 + properties: + metricName: ServiceApiLatency + metricNamespace: Microsoft.KeyVault/vaults + severity: 3 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 1000.0 +- name: SaturationShoebox + description: Vault capacity used + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-10046 + properties: + metricName: SaturationShoebox + metricNamespace: Microsoft.KeyVault/vaults + severity: 3 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 75.0 +- name: ServiceApiHit + description: Number of total service api hits + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-2688 + properties: + metricName: ServiceApiHit + metricNamespace: Microsoft.KeyVault/vaults + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Count + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 100.0 +- name: ServiceApiResult + description: Number of total service api results + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-2619 + properties: + metricName: ServiceApiResult + metricNamespace: Microsoft.KeyVault/vaults + severity: 3 + windowSize: PT30M + evaluationFrequency: PT5M + timeAggregation: Count + operator: GreaterThan + criterionType: StaticThresholdCriterion + dimensions: + - name: statuscode + operator: include + values: + - '429' + threshold: 0.0 diff --git a/services/Kusto/_index.md b/services/Kusto/_index.md new file mode 100644 index 000000000..a754a0ffe --- /dev/null +++ b/services/Kusto/_index.md @@ -0,0 +1,5 @@ +--- +title: Kusto +geekdocCollapseSection: true +geekdocHidden: true +--- diff --git a/services/Kusto/clusters/_index.md b/services/Kusto/clusters/_index.md new file mode 100644 index 000000000..4d224591b --- /dev/null +++ b/services/Kusto/clusters/_index.md @@ -0,0 +1,7 @@ +--- +title: clusters +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/Kusto/clusters/alerts.yaml b/services/Kusto/clusters/alerts.yaml new file mode 100644 index 000000000..bc44a5026 --- /dev/null +++ b/services/Kusto/clusters/alerts.yaml @@ -0,0 +1,142 @@ +- name: IngestionLatencyInSeconds + description: Latency of data ingested, from the time the data was received in the + cluster until it's ready for query. The ingestion latency period depends on the + ingestion scenario. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1722 + properties: + metricName: IngestionLatencyInSeconds + metricNamespace: Microsoft.Kusto/clusters + severity: 4 + windowSize: PT6H + evaluationFrequency: PT5M + timeAggregation: Minimum + operator: GreaterThanOrEqual + criterionType: StaticThresholdCriterion + threshold: 1800.0 +- name: KeepAlive + description: Sanity check indicates the cluster responds to queries + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1046 + properties: + metricName: KeepAlive + metricNamespace: Microsoft.Kusto/clusters + severity: 4 + windowSize: PT30M + evaluationFrequency: PT5M + timeAggregation: Average + operator: LessThanOrEqual + criterionType: StaticThresholdCriterion + threshold: 0.5 +- name: CPU + description: CPU utilization level + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-986 + properties: + metricName: CPU + metricNamespace: Microsoft.Kusto/clusters + severity: 3 + windowSize: PT30M + evaluationFrequency: PT15M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 70.0 +- name: BlobsDropped + description: Number of blobs permanently rejected by a component. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-884 + properties: + metricName: BlobsDropped + metricNamespace: Microsoft.Kusto/clusters + severity: 4 + windowSize: PT15M + evaluationFrequency: PT5M + timeAggregation: Total + operator: GreaterThanOrEqual + criterionType: StaticThresholdCriterion + threshold: 100.0 +- name: IngestionResult + description: Total number of sources that either failed or succeeded to be ingested. + Splitting the metric by status, you can get detailed information about the status + of the ingestion operations. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-860 + properties: + metricName: IngestionResult + metricNamespace: Microsoft.Kusto/clusters + severity: 4 + windowSize: PT30M + evaluationFrequency: PT15M + timeAggregation: Total + operator: GreaterThanOrEqual + criterionType: StaticThresholdCriterion + dimensions: + - name: failurekind + operator: include + values: + - permanent + threshold: 300.0 +- name: CacheUtilization + description: Utilization level in the cluster scope. The metric is deprecated and + presented for backward compatibility only, you should use the 'Cache utilization + factor' metric instead. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-296 + properties: + metricName: CacheUtilization + metricNamespace: Microsoft.Kusto/clusters + severity: 3 + windowSize: PT12H + evaluationFrequency: PT1H + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 95.0 +- name: QueryResult + description: Total number of queries. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-250 + properties: + metricName: QueryResult + metricNamespace: Microsoft.Kusto/clusters + severity: 3 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Count + operator: GreaterThan + criterionType: StaticThresholdCriterion + dimensions: + - name: querystatus + operator: exclude + values: + - completed + threshold: 100.0 diff --git a/services/Logic/_index.md b/services/Logic/_index.md new file mode 100644 index 000000000..3daf179b2 --- /dev/null +++ b/services/Logic/_index.md @@ -0,0 +1,5 @@ +--- +title: Logic +geekdocCollapseSection: true +geekdocHidden: true +--- diff --git a/services/Logic/workflows/_index.md b/services/Logic/workflows/_index.md new file mode 100644 index 000000000..bcf20467c --- /dev/null +++ b/services/Logic/workflows/_index.md @@ -0,0 +1,7 @@ +--- +title: workflows +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/Logic/workflows/alerts.yaml b/services/Logic/workflows/alerts.yaml new file mode 100644 index 000000000..6a7911226 --- /dev/null +++ b/services/Logic/workflows/alerts.yaml @@ -0,0 +1,345 @@ +- name: RunsFailed + description: Number of workflow runs failed. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-82287 + properties: + metricName: RunsFailed + metricNamespace: Microsoft.Logic/workflows + severity: 3 + windowSize: PT1M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: ActionsFailed + description: Number of workflow actions failed. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-9511 + properties: + metricName: ActionsFailed + metricNamespace: Microsoft.Logic/workflows + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: TriggersFailed + description: Number of workflow triggers failed. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-7505 + properties: + metricName: TriggersFailed + metricNamespace: Microsoft.Logic/workflows + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: RunLatency + description: Latency of completed workflow runs. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-5323 + properties: + metricName: RunLatency + metricNamespace: Microsoft.Logic/workflows + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 99999.0 +- name: RunFailurePercentage + description: Percentage of workflow runs failed. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-2354 + properties: + metricName: RunFailurePercentage + metricNamespace: Microsoft.Logic/workflows + severity: 2 + windowSize: PT1H + evaluationFrequency: PT15M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 50.0 +- name: RunsStarted + description: Number of workflow runs started. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1606 + properties: + metricName: RunsStarted + metricNamespace: Microsoft.Logic/workflows + severity: 3 + windowSize: PT1M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: RunsSucceeded + description: Number of workflow runs succeeded. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1594 + properties: + metricName: RunsSucceeded + metricNamespace: Microsoft.Logic/workflows + severity: 3 + windowSize: PT1M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: RunsCompleted + description: Number of workflow runs completed. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1022 + properties: + metricName: RunsCompleted + metricNamespace: Microsoft.Logic/workflows + severity: 3 + windowSize: PT1H + evaluationFrequency: PT1H + timeAggregation: Count + operator: LessThan + criterionType: DynamicThresholdCriterion + failingPeriods: + numberOfEvaluationPeriods: 4 + minFailingPeroidsToAlert: minFailingPeroidsToAlert + alertSensitivity: Medium +- name: ActionLatency + description: Latency of completed workflow actions. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1012 + properties: + metricName: ActionLatency + metricNamespace: Microsoft.Logic/workflows + severity: 3 + windowSize: PT1M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 15.0 +- name: TriggerLatency + description: Latency of completed workflow triggers. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-908 + properties: + metricName: TriggerLatency + metricNamespace: Microsoft.Logic/workflows + severity: 3 + windowSize: PT1M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 15.0 +- name: TriggerThrottledEvents + description: Number of workflow trigger throttled events. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-828 + properties: + metricName: TriggerThrottledEvents + metricNamespace: Microsoft.Logic/workflows + severity: 3 + windowSize: PT1M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: ActionThrottledEvents + description: Number of workflow action throttled events.. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-804 + properties: + metricName: ActionThrottledEvents + metricNamespace: Microsoft.Logic/workflows + severity: 3 + windowSize: PT1M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: TriggersSkipped + description: Number of workflow triggers skipped. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-776 + properties: + metricName: TriggersSkipped + metricNamespace: Microsoft.Logic/workflows + severity: 2 + windowSize: PT1H + evaluationFrequency: PT1H + timeAggregation: Count + operator: GreaterThanOrEqual + criterionType: StaticThresholdCriterion + threshold: 5.0 +- name: RunStartThrottledEvents + description: Number of workflow run start throttled events. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-669 + properties: + metricName: RunStartThrottledEvents + metricNamespace: Microsoft.Logic/workflows + severity: 3 + windowSize: PT1M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: RunThrottledEvents + description: Number of workflow action or trigger throttled events. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-637 + properties: + metricName: RunThrottledEvents + metricNamespace: Microsoft.Logic/workflows + severity: 3 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 1.0 +- name: TotalBillableExecutions + description: Number of workflow executions getting billed. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-497 + properties: + metricName: TotalBillableExecutions + metricNamespace: Microsoft.Logic/workflows + severity: 3 + windowSize: P1D + evaluationFrequency: PT1H + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 20000.0 +- name: RunSuccessLatency + description: Latency of succeeded workflow runs. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-389 + properties: + metricName: RunSuccessLatency + metricNamespace: Microsoft.Logic/workflows + severity: 1 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 100.0 +- name: ActionsSkipped + description: Number of workflow actions skipped. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-365 + properties: + metricName: ActionsSkipped + metricNamespace: Microsoft.Logic/workflows + severity: 3 + windowSize: PT1H + evaluationFrequency: PT1H + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 10.0 +- name: RunsCancelled + description: Number of workflow runs cancelled. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-328 + properties: + metricName: RunsCancelled + metricNamespace: Microsoft.Logic/workflows + severity: 3 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 diff --git a/services/MachineLearningServices/_index.md b/services/MachineLearningServices/_index.md new file mode 100644 index 000000000..859e063dc --- /dev/null +++ b/services/MachineLearningServices/_index.md @@ -0,0 +1,5 @@ +--- +title: MachineLearningServices +geekdocCollapseSection: true +geekdocHidden: true +--- diff --git a/services/MachineLearningServices/workspaces/_index.md b/services/MachineLearningServices/workspaces/_index.md new file mode 100644 index 000000000..c7b828507 --- /dev/null +++ b/services/MachineLearningServices/workspaces/_index.md @@ -0,0 +1,7 @@ +--- +title: workspaces +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/MachineLearningServices/workspaces/alerts.yaml b/services/MachineLearningServices/workspaces/alerts.yaml new file mode 100644 index 000000000..cc2416663 --- /dev/null +++ b/services/MachineLearningServices/workspaces/alerts.yaml @@ -0,0 +1,19 @@ +- name: Failed Runs + description: Number of runs failed for this workspace. Count is updated when a run + fails. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-259 + properties: + metricName: Failed Runs + metricNamespace: Microsoft.MachineLearningServices/workspaces + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 diff --git a/services/Media/_index.md b/services/Media/_index.md new file mode 100644 index 000000000..8f8fab438 --- /dev/null +++ b/services/Media/_index.md @@ -0,0 +1,5 @@ +--- +title: Media +geekdocCollapseSection: true +geekdocHidden: true +--- diff --git a/services/Media/mediaservices/_index.md b/services/Media/mediaservices/_index.md new file mode 100644 index 000000000..f06de04f5 --- /dev/null +++ b/services/Media/mediaservices/_index.md @@ -0,0 +1,7 @@ +--- +title: mediaservices +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/Media/mediaservices/alerts.yaml b/services/Media/mediaservices/alerts.yaml new file mode 100644 index 000000000..f8d7605f6 --- /dev/null +++ b/services/Media/mediaservices/alerts.yaml @@ -0,0 +1,54 @@ +- name: AssetQuotaUsedPercentage + description: Asset used percentage in current media service account + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-544 + properties: + metricName: AssetQuotaUsedPercentage + metricNamespace: Microsoft.Media/mediaservices + severity: 2 + windowSize: PT1H + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 50.0 +- name: StreamingPolicyQuotaUsedPercentage + description: Streaming Policy used percentage in current media service account + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-402 + properties: + metricName: StreamingPolicyQuotaUsedPercentage + metricNamespace: Microsoft.Media/mediaservices + severity: 2 + windowSize: PT1H + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 50.0 +- name: ContentKeyPolicyQuotaUsedPercentage + description: Content Key Policy used percentage in current media service account + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-401 + properties: + metricName: ContentKeyPolicyQuotaUsedPercentage + metricNamespace: Microsoft.Media/mediaservices + severity: 2 + windowSize: PT1H + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 50.0 diff --git a/services/NetApp/_index.md b/services/NetApp/_index.md new file mode 100644 index 000000000..7d53fe712 --- /dev/null +++ b/services/NetApp/_index.md @@ -0,0 +1,5 @@ +--- +title: NetApp +geekdocCollapseSection: true +geekdocHidden: true +--- diff --git a/services/NetApp/netAppAccounts/_index.md b/services/NetApp/netAppAccounts/_index.md new file mode 100644 index 000000000..856b251d7 --- /dev/null +++ b/services/NetApp/netAppAccounts/_index.md @@ -0,0 +1,7 @@ +--- +title: netAppAccounts/capacityPools +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/NetApp/netAppAccounts/alerts.yaml b/services/NetApp/netAppAccounts/alerts.yaml new file mode 100644 index 000000000..0dfbe0cb6 --- /dev/null +++ b/services/NetApp/netAppAccounts/alerts.yaml @@ -0,0 +1,127 @@ +- name: VolumePoolTotalLogicalSize + description: Sum of the logical size of all the volumes belonging to the pool + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1022 + properties: + metricName: VolumePoolTotalLogicalSize + metricNamespace: Microsoft.NetApp/netAppAccounts/capacityPools + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 3958241859993.6 +- name: VolumeConsumedSizePercentage + description: The percentage of the volume consumed including snapshots. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-20837 + properties: + metricName: VolumeConsumedSizePercentage + metricNamespace: Microsoft.NetApp/netAppAccounts/capacityPools/volumes + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 80.0 +- name: VolumeLogicalSize + description: Logical size of the volume (used bytes) + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1741 + properties: + metricName: VolumeLogicalSize + metricNamespace: Microsoft.NetApp/netAppAccounts/capacityPools/volumes + severity: 3 + windowSize: PT1H + evaluationFrequency: PT30M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 85899345920.0 +- name: AverageReadLatency + description: Average read latency in milliseconds per operation + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-321 + properties: + metricName: AverageReadLatency + metricNamespace: Microsoft.NetApp/netAppAccounts/capacityPools/volumes + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 20.0 +- name: AverageWriteLatency + description: Average write latency in milliseconds per operation + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-320 + properties: + metricName: AverageWriteLatency + metricNamespace: Microsoft.NetApp/netAppAccounts/capacityPools/volumes + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 20.0 +- name: VolumeAllocatedSize + description: The provisioned size of a volume + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-315 + properties: + metricName: VolumeAllocatedSize + metricNamespace: Microsoft.NetApp/netAppAccounts/capacityPools/volumes + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 107374182400.0 +- name: CbsVolumeOperationComplete + description: Did the last volume backup or restore operation complete successfully? + 1 if yes, 0 if no. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-306 + properties: + metricName: CbsVolumeOperationComplete + metricNamespace: Microsoft.NetApp/netAppAccounts/capacityPools/volumes + severity: 2 + windowSize: PT30M + evaluationFrequency: PT30M + timeAggregation: Average + operator: LessThan + criterionType: StaticThresholdCriterion + threshold: 1.0 diff --git a/services/Network/applicationGateways/alerts.yaml b/services/Network/applicationGateways/alerts.yaml index dcf3087c7..8fedce365 100644 --- a/services/Network/applicationGateways/alerts.yaml +++ b/services/Network/applicationGateways/alerts.yaml @@ -1,8 +1,13 @@ - name: Application Gateway Total Time - description: Metric Alert for App Gateway ApplicationGatewayTotalTime + description: Time that it takes for a request to be processed and its response to + be sent. This is the interval from the time when Application Gateway receives + the first byte of an HTTP request to the time when the response send operation + finishes. It's important to note that this usually includes the Application Gateway + processing time, time that the request and response packets are traveling over + the network and the time the backend server took to respond. type: Metric - verified: False - visible: True + verified: false + visible: true tags: - alz properties: @@ -19,13 +24,15 @@ numberOfEvaluationPeriods: 2 minFailingPeriodsToAlert: 2 deployments: - - description: Policy to audit/deploy Azure Application Gateway ApplicationGatewayTotalTime Alert + - description: Policy to audit/deploy Azure Application Gateway ApplicationGatewayTotalTime + Alert template: Deploy-AGW-ApplicationGatewayTotalTime-Alert.json - name: Backend Last Byte Response Time - description: Metric Alert for App Gateway BackendLastByteResponseTime + description: Time interval between start of establishing a connection to backend + server and receiving the last byte of the response body type: Metric - verified: False - visible: True + verified: false + visible: true tags: - alz properties: @@ -42,13 +49,14 @@ numberOfEvaluationPeriods: 2 minFailingPeriodsToAlert: 2 deployments: - - description: Policy to audit/deploy Azure Application Gateway BackendLastByteResponseTime Alert + - description: Policy to audit/deploy Azure Application Gateway BackendLastByteResponseTime + Alert template: Deploy-AGW-BackendLastByteResponseTime-Alert.json - name: Capacity Units - description: Metric Alert for App Gateway Capacity + description: Capacity Units consumed type: Metric - verified: False - visible: True + verified: false + visible: true tags: - alz properties: @@ -65,10 +73,10 @@ - description: Policy to audit/deploy Azure Application Gateway CapacityUnits Alert template: Deploy-AGW-CapacityUnits-Alert.json - name: Compute Units - description: Metric Alert for App Gateway Compute Units + description: Compute Units consumed type: Metric - verified: False - visible: True + verified: false + visible: true tags: - alz properties: @@ -85,10 +93,10 @@ - description: Policy to audit/deploy Azure Application Gateway CapacityUnits Alert template: Deploy-AGW-CapacityUnits-Alert.json - name: Cpu Utilization - description: Metric Alert for App Gateway CPU Utilization + description: Current CPU utilization of the Application Gateway type: Metric - verified: False - visible: True + verified: false + visible: true tags: - alz properties: @@ -102,13 +110,14 @@ threshold: 80 criterionType: StaticThresholdCriterion deployments: - - description: Policy to audit/deploy Azure Application Gateway CPU Utilization Alert + - description: Policy to audit/deploy Azure Application Gateway CPU Utilization + Alert template: Deploy-AGW-CPUUtil-Alert.json - name: Failed Requests - description: Metric Alert for App Gateway FailedRequests + description: Count of failed requests that Application Gateway has served type: Metric - verified: False - visible: True + verified: false + visible: true tags: - alz properties: @@ -128,10 +137,10 @@ - description: Policy to audit/deploy Azure Application Gateway FailedRequests Alert template: Deploy-AGW-FailedRequests-Alert.json - name: Response Status - description: Metric Alert for App Gateway ResponseStatus + description: Http response status returned by Application Gateway type: Metric - verified: False - visible: True + verified: false + visible: true tags: - alz properties: @@ -147,7 +156,9 @@ dimensions: HttpStatusGroup: operator: Include - values: [4xx, 5xx] + values: + - 4xx + - 5xx failingPeriods: numberOfEvaluationPeriods: 2 minFailingPeriodsToAlert: 2 @@ -155,10 +166,10 @@ - description: Policy to audit/deploy Azure Application Gateway ResponseStatus Alert template: Deploy-AGW-ResponseStatus-Alert.json - name: Unhealthy Host Count - description: Metric Alert for App Gateway Unhealthy Host Count + description: Number of unhealthy backend hosts type: Metric - verified: False - visible: True + verified: false + visible: true tags: - alz properties: @@ -172,5 +183,349 @@ threshold: 20 criterionType: StaticThresholdCriterion deployments: - - description: Policy to audit/deploy Azure Application Gateway Unhealthy Host Count Alert + - description: Policy to audit/deploy Azure Application Gateway Unhealthy Host Count + Alert template: Deploy-AGW-UnhealthyHostCount-Alert.json +- name: UnhealthyHostCount + description: Number of unhealthy backend hosts + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-11692 + properties: + metricName: UnhealthyHostCount + metricNamespace: Microsoft.Network/applicationGateways + severity: 1 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: FailedRequests + description: Count of failed requests that Application Gateway has served + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-5511 + properties: + metricName: FailedRequests + metricNamespace: Microsoft.Network/applicationGateways + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 10.0 +- name: HealthyHostCount + description: Number of healthy backend hosts + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-4033 + properties: + metricName: HealthyHostCount + metricNamespace: Microsoft.Network/applicationGateways + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: LessThan + criterionType: StaticThresholdCriterion + threshold: 1.0 +- name: ResponseStatus + description: Http response status returned by Application Gateway + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-2201 + properties: + metricName: ResponseStatus + metricNamespace: Microsoft.Network/applicationGateways + severity: 1 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + dimensions: + - name: httpstatusgroup + operator: include + values: + - 5xx + threshold: 10.0 +- name: ApplicationGatewayTotalTime + description: Time that it takes for a request to be processed and its response to + be sent. This is the interval from the time when Application Gateway receives + the first byte of an HTTP request to the time when the response send operation + finishes. It's important to note that this usually includes the Application Gateway + processing time, time that the request and response packets are traveling over + the network and the time the backend server took to respond. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1805 + properties: + metricName: ApplicationGatewayTotalTime + metricNamespace: Microsoft.Network/applicationGateways + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 1000.0 +- name: CapacityUnits + description: Capacity Units consumed + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1426 + properties: + metricName: CapacityUnits + metricNamespace: Microsoft.Network/applicationGateways + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 15.0 +- name: BackendResponseStatus + description: The number of HTTP response codes generated by the backend members. + This does not include any response codes generated by the Application Gateway. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1406 + properties: + metricName: BackendResponseStatus + metricNamespace: Microsoft.Network/applicationGateways + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + dimensions: + - name: httpstatusgroup + operator: include + values: + - 5xx + threshold: 15000.0 +- name: CpuUtilization + description: Current CPU utilization of the Application Gateway + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1302 + properties: + metricName: CpuUtilization + metricNamespace: Microsoft.Network/applicationGateways + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 80.0 +- name: BackendConnectTime + description: Time spent establishing a connection with a backend server + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1292 + properties: + metricName: BackendConnectTime + metricNamespace: Microsoft.Network/applicationGateways + severity: 2 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 10000.0 +- name: ComputeUnits + description: Compute Units consumed + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-969 + properties: + metricName: ComputeUnits + metricNamespace: Microsoft.Network/applicationGateways + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 7.5 +- name: BackendLastByteResponseTime + description: Time interval between start of establishing a connection to backend + server and receiving the last byte of the response body + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-725 + properties: + metricName: BackendLastByteResponseTime + metricNamespace: Microsoft.Network/applicationGateways + severity: 3 + windowSize: PT1M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 8000.0 +- name: Throughput + description: Number of bytes per second the Application Gateway has served + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-715 + properties: + metricName: Throughput + metricNamespace: Microsoft.Network/applicationGateways + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 167772160.0 +- name: CurrentConnections + description: Count of current connections established with Application Gateway + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-556 + properties: + metricName: CurrentConnections + metricNamespace: Microsoft.Network/applicationGateways + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 10000.0 +- name: TotalRequests + description: Count of successful requests that Application Gateway has served + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-533 + properties: + metricName: TotalRequests + metricNamespace: Microsoft.Network/applicationGateways + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 20000.0 +- name: NewConnectionsPerSecond + description: New connections per second established with Application Gateway + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-325 + properties: + metricName: NewConnectionsPerSecond + metricNamespace: Microsoft.Network/applicationGateways + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 10000.0 +- name: BackendFirstByteResponseTime + description: Time interval between start of establishing a connection to backend + server and receiving the first byte of the response header, approximating processing + time of backend server + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-304 + properties: + metricName: BackendFirstByteResponseTime + metricNamespace: Microsoft.Network/applicationGateways + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThanOrEqual + criterionType: StaticThresholdCriterion + threshold: 5000.0 +- name: EstimatedBilledCapacityUnits + description: Estimated capacity units that will be charged + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-291 + properties: + metricName: EstimatedBilledCapacityUnits + metricNamespace: Microsoft.Network/applicationGateways + severity: 2 + windowSize: PT30M + evaluationFrequency: PT15M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 20.0 +- name: AvgRequestCountPerHealthyHost + description: Average request count per minute per healthy backend host in a pool + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-251 + properties: + metricName: AvgRequestCountPerHealthyHost + metricNamespace: Microsoft.Network/applicationGateways + severity: 3 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 20000.0 diff --git a/services/Network/azureFirewalls/alerts.yaml b/services/Network/azureFirewalls/alerts.yaml index 5e0204daf..21c0023d6 100644 --- a/services/Network/azureFirewalls/alerts.yaml +++ b/services/Network/azureFirewalls/alerts.yaml @@ -1,14 +1,15 @@ - name: Activity Log Azure Firewall Delete description: Activity Log Alert for Azure Firewall Delete type: ActivityLog - verified: False - visible: True + verified: false + visible: true tags: - alz properties: category: Administrative operationName: Microsoft.Network/azureFirewalls/delete - status: [ succeeded ] + status: + - succeeded references: - name: Activity Log Service Notifications url: https://learn.microsoft.com/azure/service-health/alerts-activity-log-service-notifications-portal @@ -18,10 +19,10 @@ - description: Policy to Deploy Activity Log Azure Firewall Delete Alert template: Deploy-ActivityLog-AzureFirewall-Del.json - name: Firewall Health - description: Metric Alert for AFW FirewallHealth + description: Indicates the overall health of this firewall type: Metric - verified: False - visible: True + verified: false + visible: true tags: - alz properties: @@ -38,10 +39,10 @@ - description: Policy to audit/deploy Azure Firewall FirewallHealth Alert template: Deploy-AFW-FirewallHealth-Alert.json - name: SNAT Port Utilization - description: Metric Alert for AFW SNATPortUtilization + description: Percentage of outbound SNAT ports currently in use type: Metric - verified: False - visible: True + verified: false + visible: true tags: - alz properties: @@ -57,3 +58,57 @@ deployments: - description: Policy to audit/deploy Azure Firewall SNATPortUtilization Alert template: Deploy-AFW-SNATPortUtilization-Alert.json +- name: FirewallHealth + description: Indicates the overall health of this firewall + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-2077 + properties: + metricName: FirewallHealth + metricNamespace: Microsoft.Network/azureFirewalls + severity: 1 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: LessThan + criterionType: StaticThresholdCriterion + threshold: 100.0 +- name: SNATPortUtilization + description: Percentage of outbound SNAT ports currently in use + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-950 + properties: + metricName: SNATPortUtilization + metricNamespace: Microsoft.Network/azureFirewalls + severity: 1 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 99.0 +- name: Throughput + description: Throughput processed by this firewall + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-414 + properties: + metricName: Throughput + metricNamespace: Microsoft.Network/azureFirewalls + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 27000000000.0 diff --git a/services/Network/connections/_index.md b/services/Network/connections/_index.md new file mode 100644 index 000000000..921cf09f2 --- /dev/null +++ b/services/Network/connections/_index.md @@ -0,0 +1,7 @@ +--- +title: connections +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/Network/connections/alerts.yaml b/services/Network/connections/alerts.yaml new file mode 100644 index 000000000..556a51525 --- /dev/null +++ b/services/Network/connections/alerts.yaml @@ -0,0 +1,36 @@ +- name: BitsInPerSecond + description: Bits ingressing Azure per second + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-670 + properties: + metricName: BitsInPerSecond + metricNamespace: Microsoft.Network/connections + severity: 3 + windowSize: PT15M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 6000000000.0 +- name: BitsOutPerSecond + description: Bits egressing Azure per second + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-616 + properties: + metricName: BitsOutPerSecond + metricNamespace: Microsoft.Network/connections + severity: 3 + windowSize: PT15M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 6000000000.0 diff --git a/services/Network/dnszones/_index.md b/services/Network/dnszones/_index.md new file mode 100644 index 000000000..81ac013dc --- /dev/null +++ b/services/Network/dnszones/_index.md @@ -0,0 +1,7 @@ +--- +title: dnszones +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/Network/dnszones/alerts.yaml b/services/Network/dnszones/alerts.yaml new file mode 100644 index 000000000..8699fe2f9 --- /dev/null +++ b/services/Network/dnszones/alerts.yaml @@ -0,0 +1,18 @@ +- name: RecordSetCapacityUtilization + description: Percent of Record Set capacity utilized by a DNS zone + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-621 + properties: + metricName: RecordSetCapacityUtilization + metricNamespace: Microsoft.Network/dnszones + severity: 3 + windowSize: PT1H + evaluationFrequency: PT30M + timeAggregation: Maximum + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 60.0 diff --git a/services/Network/expressRouteCircuits/alerts.yaml b/services/Network/expressRouteCircuits/alerts.yaml index 8f6e6d838..84d464c4d 100644 --- a/services/Network/expressRouteCircuits/alerts.yaml +++ b/services/Network/expressRouteCircuits/alerts.yaml @@ -1,8 +1,8 @@ - name: ARP Availability - description: Metric Alert for ExpressRoute Circuit ARP Availability + description: ARP Availability from MSEE towards all peers. type: Metric - verified: True - visible: True + verified: true + visible: true tags: - alz properties: @@ -19,10 +19,10 @@ - description: Policy to audit/deploy ExpressRoute Circuits ARP Availability Alert template: Deploy-ERCIR-ARPAvailability-Alert.json - name: BGP Availability - description: Metric Alert for ExpressRoute Circuit BGP Availability + description: BGP Availability from MSEE towards all peers. type: Metric - verified: True - visible: True + verified: true + visible: true tags: - alz properties: @@ -39,10 +39,10 @@ - description: Policy to audit/deploy ExpressRoute Circuits BGP Availability Alert template: Deploy-ERCIR-BGPAvailability-Alert.json - name: QOS Drop Bits In Per Second - description: Metric Alert for ExpressRoute Circuit QosDropBitsInPerSecond + description: Ingress bits of data dropped per second type: Metric - verified: False - visible: True + verified: false + visible: true tags: - alz properties: @@ -59,13 +59,14 @@ numberOfEvaluationPeriods: 4 minFailingPeriodsToAlert: 4 deployments: - - description: Policy to audit/deploy ExpressRoute Circuits QosDropBitsInPerSecond Alert + - description: Policy to audit/deploy ExpressRoute Circuits QosDropBitsInPerSecond + Alert template: Deploy-ERCIR-QOSDropsBitsIn-Alert.json - name: QOS Drop Bits Out Per Second - description: Metric Alert for ExpressRoute Circuit QosDropBitsOutPerSecond + description: Egress bits of data dropped per second type: Metric - verified: False - visible: True + verified: false + visible: true tags: - alz properties: @@ -82,5 +83,114 @@ numberOfEvaluationPeriods: 4 minFailingPeriodsToAlert: 4 deployments: - - description: Policy to audit/deploy ExpressRoute Circuits QosDropBitsOutPerSecond Alert + - description: Policy to audit/deploy ExpressRoute Circuits QosDropBitsOutPerSecond + Alert template: Deploy-ERCIR-QOSDropsBitsOut-Alert.json +- name: BgpAvailability + description: BGP Availability from MSEE towards all peers. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-2720 + properties: + metricName: BgpAvailability + metricNamespace: Microsoft.Network/expressRouteCircuits + severity: 0 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: LessThan + criterionType: StaticThresholdCriterion + threshold: 100.0 +- name: BitsInPerSecond + description: Bits ingressing Azure per second + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1448 + properties: + metricName: BitsInPerSecond + metricNamespace: Microsoft.Network/expressRouteCircuits + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 800000000.0 +- name: BitsOutPerSecond + description: Bits egressing Azure per second + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1261 + properties: + metricName: BitsOutPerSecond + metricNamespace: Microsoft.Network/expressRouteCircuits + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 800000000.0 +- name: ArpAvailability + description: ARP Availability from MSEE towards all peers. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1256 + properties: + metricName: ArpAvailability + metricNamespace: Microsoft.Network/expressRouteCircuits + severity: 0 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: LessThan + criterionType: StaticThresholdCriterion + threshold: 100.0 +- name: QosDropBitsInPerSecond + description: Ingress bits of data dropped per second + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-436 + properties: + metricName: QosDropBitsInPerSecond + metricNamespace: Microsoft.Network/expressRouteCircuits + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: QosDropBitsOutPerSecond + description: Egress bits of data dropped per second + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-390 + properties: + metricName: QosDropBitsOutPerSecond + metricNamespace: Microsoft.Network/expressRouteCircuits + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 diff --git a/services/Network/frontdoors/_index.md b/services/Network/frontdoors/_index.md new file mode 100644 index 000000000..cc69d42ab --- /dev/null +++ b/services/Network/frontdoors/_index.md @@ -0,0 +1,7 @@ +--- +title: frontdoors +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/Network/frontdoors/alerts.yaml b/services/Network/frontdoors/alerts.yaml new file mode 100644 index 000000000..75b179cb2 --- /dev/null +++ b/services/Network/frontdoors/alerts.yaml @@ -0,0 +1,105 @@ +- name: BackendHealthPercentage + description: The percentage of successful health probes from the HTTP/S proxy to + backends + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-2156 + properties: + metricName: BackendHealthPercentage + metricNamespace: Microsoft.Network/frontdoors + severity: 1 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: LessThan + criterionType: StaticThresholdCriterion + threshold: 80.0 +- name: RequestCount + description: The number of client requests served by the HTTP/S proxy + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1350 + properties: + metricName: RequestCount + metricNamespace: Microsoft.Network/frontdoors + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + dimensions: + - name: httpstatusgroup + operator: include + values: + - 5xx + threshold: 10.0 +- name: TotalLatency + description: The time calculated from when the client request was received by the + HTTP/S proxy until the client acknowledged the last response byte from the HTTP/S + proxy + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1310 + properties: + metricName: TotalLatency + metricNamespace: Microsoft.Network/frontdoors + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 25000.0 +- name: BackendRequestLatency + description: The time calculated from when the request was sent by the HTTP/S proxy + to the backend until the HTTP/S proxy received the last response byte from the + backend + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-356 + properties: + metricName: BackendRequestLatency + metricNamespace: Microsoft.Network/frontdoors + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 5000.0 +- name: WebApplicationFirewallRequestCount + description: The number of client requests processed by the Web Application Firewall + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-351 + properties: + metricName: WebApplicationFirewallRequestCount + metricNamespace: Microsoft.Network/frontdoors + severity: 3 + windowSize: PT1H + evaluationFrequency: PT15M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + dimensions: + - name: action + operator: include + values: + - block + threshold: 1000.0 diff --git a/services/Network/loadBalancers/alerts.yaml b/services/Network/loadBalancers/alerts.yaml index edeb3981d..0b472f945 100644 --- a/services/Network/loadBalancers/alerts.yaml +++ b/services/Network/loadBalancers/alerts.yaml @@ -1,8 +1,8 @@ - name: Vip Availability - description: Metric Alert for ALB Data Path Availability + description: Average Load Balancer data path availability per time duration type: Metric - verified: True - visible: True + verified: true + visible: true tags: - alz properties: @@ -16,13 +16,14 @@ threshold: 90 criterionType: StaticThresholdCriterion deployments: - - description: Policy to audit/deploy Azure Load Balancer Data Path Availability Alert + - description: Policy to audit/deploy Azure Load Balancer Data Path Availability + Alert template: Deploy-LB-DatapathAvailability-Alert.json - name: Global Backend Availability description: Metric Alert for Global Backend Availability type: Metric - verified: False - visible: True + verified: false + visible: true tags: - alz properties: @@ -36,13 +37,14 @@ threshold: 90 criterionType: StaticThresholdCriterion deployments: - - description: Policy to audit/deploy Azure Load Balancer Global Backend Availability Alert + - description: Policy to audit/deploy Azure Load Balancer Global Backend Availability + Alert template: Deploy-LB-GlobalBackendAvailability-Alert.json - name: Dip Availability - description: Metric Alert for ALB Health Probe Status + description: Average Load Balancer health probe status per time duration type: Metric - verified: True - visible: True + verified: true + visible: true tags: - alz properties: @@ -61,8 +63,8 @@ - name: Used SNAT Ports description: Metric Alert for ALB Used SNAT Ports type: Metric - verified: True - visible: True + verified: true + visible: true tags: - alz properties: @@ -78,3 +80,85 @@ deployments: - description: Policy to audit/deploy Azure Load Balancer Used SNAT Ports Alert template: Deploy-LB-UsedSNATPorts-Alert.json +- name: DipAvailability + description: Average Load Balancer health probe status per time duration + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-453234 + properties: + metricName: DipAvailability + metricNamespace: Microsoft.Network/loadBalancers + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: LessThan + criterionType: StaticThresholdCriterion + threshold: 51.0 +- name: UsedSnatPorts + description: Total number of SNAT ports used within time period + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-16013 + properties: + metricName: UsedSnatPorts + metricNamespace: Microsoft.Network/loadBalancers + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + dimensions: + - name: backendipaddress + operator: include + values: + - '*' + threshold: 900.0 +- name: VipAvailability + description: Average Load Balancer data path availability per time duration + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-14028 + properties: + metricName: VipAvailability + metricNamespace: Microsoft.Network/loadBalancers + severity: 0 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: LessThan + criterionType: StaticThresholdCriterion + threshold: 50.0 +- name: SnatConnectionCount + description: Total number of new SNAT connections created within time period + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-2923 + properties: + metricName: SnatConnectionCount + metricNamespace: Microsoft.Network/loadBalancers + severity: 1 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + dimensions: + - name: connectionstate + operator: include + values: + - failed + threshold: 0.0 diff --git a/services/Network/natGateways/_index.md b/services/Network/natGateways/_index.md new file mode 100644 index 000000000..5b9688b38 --- /dev/null +++ b/services/Network/natGateways/_index.md @@ -0,0 +1,7 @@ +--- +title: natGateways +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/Network/natGateways/alerts.yaml b/services/Network/natGateways/alerts.yaml new file mode 100644 index 000000000..e7e4f1053 --- /dev/null +++ b/services/Network/natGateways/alerts.yaml @@ -0,0 +1,77 @@ +- name: DatapathAvailability + description: NAT Gateway Datapath Availability + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-4909 + properties: + metricName: DatapathAvailability + metricNamespace: Microsoft.Network/natGateways + severity: 0 + windowSize: PT15M + evaluationFrequency: PT1M + timeAggregation: Average + operator: LessThan + criterionType: StaticThresholdCriterion + threshold: 90.0 +- name: SNATConnectionCount + description: Total concurrent active connections + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-2633 + properties: + metricName: SNATConnectionCount + metricNamespace: Microsoft.Network/natGateways + severity: 1 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + dimensions: + - name: connectionstate + operator: include + values: + - failed + threshold: 1000000.0 +- name: TotalConnectionCount + description: Total number of active SNAT connections + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-2408 + properties: + metricName: TotalConnectionCount + metricNamespace: Microsoft.Network/natGateways + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 100000.0 +- name: PacketDropCount + description: Count of dropped packets + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-945 + properties: + metricName: PacketDropCount + metricNamespace: Microsoft.Network/natGateways + severity: 1 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 5.0 diff --git a/services/Network/networkWatchers/_index.md b/services/Network/networkWatchers/_index.md new file mode 100644 index 000000000..967daf6f8 --- /dev/null +++ b/services/Network/networkWatchers/_index.md @@ -0,0 +1,7 @@ +--- +title: networkWatchers/connectionMonitors +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/Network/networkWatchers/alerts.yaml b/services/Network/networkWatchers/alerts.yaml new file mode 100644 index 000000000..b046031df --- /dev/null +++ b/services/Network/networkWatchers/alerts.yaml @@ -0,0 +1,89 @@ +- name: TestResult + description: Connection monitor test result + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-2492 + properties: + metricName: TestResult + metricNamespace: Microsoft.Network/networkWatchers/connectionMonitors + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Maximum + operator: GreaterThan + criterionType: StaticThresholdCriterion + dimensions: + - name: sourcename + operator: include + values: + - '*' + - name: destinationname + operator: include + values: + - '*' + - name: testgroupname + operator: include + values: + - '*' + - name: testconfigurationname + operator: include + values: + - '*' + threshold: 2.0 +- name: ChecksFailedPercent + description: '% of connectivity monitoring checks failed' + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-2222 + properties: + metricName: ChecksFailedPercent + metricNamespace: Microsoft.Network/networkWatchers/connectionMonitors + severity: 1 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 50.0 +- name: RoundTripTimeMs + description: Round-trip time in milliseconds for the connectivity monitoring checks + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-913 + properties: + metricName: RoundTripTimeMs + metricNamespace: Microsoft.Network/networkWatchers/connectionMonitors + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 500.0 +- name: ProbesFailedPercent + description: '% of connectivity monitoring probes failed' + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-869 + properties: + metricName: ProbesFailedPercent + metricNamespace: Microsoft.Network/networkWatchers/connectionMonitors + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 diff --git a/services/Network/privateDnsZones/alerts.yaml b/services/Network/privateDnsZones/alerts.yaml index 08d31472b..9abb00427 100644 --- a/services/Network/privateDnsZones/alerts.yaml +++ b/services/Network/privateDnsZones/alerts.yaml @@ -1,8 +1,9 @@ - name: Virtual Network Link Capacity Utilization - description: Metric Alert for Private DNS Zone Virtual Network Link Capacity Utilization + description: Percent of Virtual Network Link capacity utilized by a Private DNS + zone type: Metric - verified: False - visible: True + verified: false + visible: true tags: - alz properties: @@ -19,10 +20,10 @@ - description: Policy to audit/deploy Private DNS Zone Capacity Utilization Alert template: Deploy-PDNSZ-CapacityUtilization-Alert.json - name: Query Volume - description: Metric Alert for Private DNS Query Volume + description: Number of queries served for a Private DNS zone type: Metric - verified: False - visible: True + verified: false + visible: true tags: - alz properties: @@ -39,10 +40,10 @@ - description: Policy to audit/deploy Private DNS Zone Query Volume Alert template: Deploy-PDNSZ-QueryVolume-Alert.json - name: Record Set Capacity Utilization - description: Metric Alert for Private DNS Zone Record Set Capacity Utilization + description: Percent of Record Set capacity utilized by a Private DNS zone type: Metric - verified: False - visible: True + verified: false + visible: true tags: - alz properties: @@ -59,10 +60,11 @@ - description: Policy to audit/deploy Private DNS Zone Record Set Capacity Alert template: Deploy-PDNSZ-RecordSetCapacity-Alert.json - name: Virtual Network With Registration Capacity Utilization - description: Metric Alert for Private DNS Zone Registration Capacity Utilization + description: Percent of Virtual Network Link with auto-registration capacity utilized + by a Private DNS zone type: Metric - verified: False - visible: True + verified: false + visible: true tags: - alz properties: @@ -76,5 +78,98 @@ threshold: 80 criterionType: StaticThresholdCriterion deployments: - - description: Policy to audit/deploy Private DNS Zone Registration Capacity Utilization Alert + - description: Policy to audit/deploy Private DNS Zone Registration Capacity Utilization + Alert template: Deploy-PDNSZ-RegistrationCapacityUtilization-Alert.json +- name: VirtualNetworkLinkCapacityUtilization + description: Percent of Virtual Network Link capacity utilized by a Private DNS + zone + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1133 + properties: + metricName: VirtualNetworkLinkCapacityUtilization + metricNamespace: Microsoft.Network/privateDnsZones + severity: 2 + windowSize: PT1H + evaluationFrequency: PT1H + timeAggregation: Maximum + operator: GreaterThanOrEqual + criterionType: StaticThresholdCriterion + threshold: 80.0 +- name: RecordSetCapacityUtilization + description: Percent of Record Set capacity utilized by a Private DNS zone + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1070 + properties: + metricName: RecordSetCapacityUtilization + metricNamespace: Microsoft.Network/privateDnsZones + severity: 2 + windowSize: PT1H + evaluationFrequency: PT1H + timeAggregation: Maximum + operator: GreaterThanOrEqual + criterionType: StaticThresholdCriterion + threshold: 80.0 +- name: VirtualNetworkWithRegistrationCapacityUtilization + description: Percent of Virtual Network Link with auto-registration capacity utilized + by a Private DNS zone + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-917 + properties: + metricName: VirtualNetworkWithRegistrationCapacityUtilization + metricNamespace: Microsoft.Network/privateDnsZones + severity: 2 + windowSize: PT1H + evaluationFrequency: PT1H + timeAggregation: Maximum + operator: GreaterThanOrEqual + criterionType: StaticThresholdCriterion + threshold: 80.0 +- name: QueryVolume + description: Number of queries served for a Private DNS zone + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-413 + properties: + metricName: QueryVolume + metricNamespace: Microsoft.Network/privateDnsZones + severity: 3 + windowSize: PT1H + evaluationFrequency: PT1H + timeAggregation: Total + operator: GreaterThanOrEqual + criterionType: StaticThresholdCriterion + threshold: 500.0 +- name: RecordSetCount + description: Number of Record Sets in a Private DNS zone + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-369 + properties: + metricName: RecordSetCount + metricNamespace: Microsoft.Network/privateDnsZones + severity: 3 + windowSize: PT1H + evaluationFrequency: PT15M + timeAggregation: Maximum + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 18750.0 diff --git a/services/Network/publicIPAddresses/alerts.yaml b/services/Network/publicIPAddresses/alerts.yaml index d61473db6..42eda0d31 100644 --- a/services/Network/publicIPAddresses/alerts.yaml +++ b/services/Network/publicIPAddresses/alerts.yaml @@ -1,8 +1,8 @@ - name: Bytes In DDoS description: Metric Alert for Public IP Address Bytes IN DDOS type: Metric - verified: False - visible: True + verified: false + visible: true tags: - alz properties: @@ -21,8 +21,8 @@ - name: If Under DDoS Attack description: Metric Alert for Public IP Address Under Attack type: Metric - verified: True - visible: True + verified: true + visible: true tags: - alz properties: @@ -39,10 +39,10 @@ - description: Policy to audit/deploy PIP DDoS Attack Alert template: Deploy-PIP-DDOSAttack-Alert.json - name: Packets In DDoS - description: Metric Alert for Public IP Address Packets IN DDOS + description: Inbound packets DDoS type: Metric - verified: False - visible: True + verified: false + visible: true tags: - alz properties: @@ -59,10 +59,10 @@ - description: Policy to audit/deploy PIP Packets in DDoS Attack Alert template: Deploy-PIP-PacketsInDDOS-Alert.json - name: VIP Availability - description: Metric Alert for Public IP Address VIP Availability + description: Average IP Address availability per time duration type: Metric - verified: False - visible: True + verified: false + visible: true tags: - alz properties: @@ -78,3 +78,147 @@ deployments: - description: Policy to audit/deploy PIP VIP Availability Alert template: Deploy-PIP-VIPAvailability-Alert.json +- name: IfUnderDDoSAttack + description: Under DDoS attack or not + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-6674 + properties: + metricName: IfUnderDDoSAttack + metricNamespace: Microsoft.Network/publicIPAddresses + severity: 0 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Maximum + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: BytesInDDoS + description: Inbound bytes DDoS + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-977 + properties: + metricName: BytesInDDoS + metricNamespace: Microsoft.Network/publicIPAddresses + severity: 3 + windowSize: PT1H + evaluationFrequency: PT1M + timeAggregation: Maximum + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 8000000.0 +- name: VipAvailability + description: Average IP Address availability per time duration + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-856 + properties: + metricName: VipAvailability + metricNamespace: Microsoft.Network/publicIPAddresses + severity: 1 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: LessThan + criterionType: StaticThresholdCriterion + threshold: 1.0 +- name: PacketsInDDoS + description: Inbound packets DDoS + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-685 + properties: + metricName: PacketsInDDoS + metricNamespace: Microsoft.Network/publicIPAddresses + severity: 3 + windowSize: PT1H + evaluationFrequency: PT1M + timeAggregation: Maximum + operator: GreaterThanOrEqual + criterionType: StaticThresholdCriterion + threshold: 40000.0 +- name: TCPPacketsInDDoS + description: Inbound TCP packets DDoS + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-620 + properties: + metricName: TCPPacketsInDDoS + metricNamespace: Microsoft.Network/publicIPAddresses + severity: 3 + windowSize: PT1H + evaluationFrequency: PT1M + timeAggregation: Maximum + operator: GreaterThanOrEqual + criterionType: StaticThresholdCriterion + threshold: 40000.0 +- name: TCPBytesInDDoS + description: Inbound TCP bytes DDoS + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-619 + properties: + metricName: TCPBytesInDDoS + metricNamespace: Microsoft.Network/publicIPAddresses + severity: 3 + windowSize: PT1H + evaluationFrequency: PT1M + timeAggregation: Maximum + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 40000.0 +- name: UDPPacketsInDDoS + description: Inbound UDP packets DDoS + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-589 + properties: + metricName: UDPPacketsInDDoS + metricNamespace: Microsoft.Network/publicIPAddresses + severity: 3 + windowSize: PT1H + evaluationFrequency: PT1M + timeAggregation: Maximum + operator: GreaterThanOrEqual + criterionType: StaticThresholdCriterion + threshold: 40000.0 +- name: UDPBytesInDDoS + description: Inbound UDP bytes DDoS + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-585 + properties: + metricName: UDPBytesInDDoS + metricNamespace: Microsoft.Network/publicIPAddresses + severity: 3 + windowSize: PT1H + evaluationFrequency: PT1M + timeAggregation: Maximum + operator: GreaterThanOrEqual + criterionType: StaticThresholdCriterion + threshold: 40000.0 diff --git a/services/Network/trafficmanagerprofiles/_index.md b/services/Network/trafficmanagerprofiles/_index.md new file mode 100644 index 000000000..a2061d548 --- /dev/null +++ b/services/Network/trafficmanagerprofiles/_index.md @@ -0,0 +1,7 @@ +--- +title: trafficmanagerprofiles +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/Network/trafficmanagerprofiles/alerts.yaml b/services/Network/trafficmanagerprofiles/alerts.yaml new file mode 100644 index 000000000..88a39ea00 --- /dev/null +++ b/services/Network/trafficmanagerprofiles/alerts.yaml @@ -0,0 +1,23 @@ +- name: ProbeAgentCurrentEndpointStateByProfileResourceId + description: 1 if an endpoint's probe status is "Enabled", 0 otherwise. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-5272 + properties: + metricName: ProbeAgentCurrentEndpointStateByProfileResourceId + metricNamespace: Microsoft.Network/trafficmanagerprofiles + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Maximum + operator: LessThan + criterionType: StaticThresholdCriterion + dimensions: + - name: endpointname + operator: include + values: + - '*' + threshold: 1.0 diff --git a/services/Network/virtualNetworkGateways/alerts.yaml b/services/Network/virtualNetworkGateways/alerts.yaml index 52c510967..31352d37e 100644 --- a/services/Network/virtualNetworkGateways/alerts.yaml +++ b/services/Network/virtualNetworkGateways/alerts.yaml @@ -1,8 +1,8 @@ - name: Tunnel Average Bandwidth - description: Metric Alert for VNet Gateway Tunnel Avg Bandwidth + description: Average bandwidth of a tunnel in bytes per second type: Metric - verified: False - visible: True + verified: false + visible: true tags: - alz properties: @@ -21,8 +21,8 @@ - name: Tunnel Egress Bytes description: Metric Alert for VNet Gateway Tunnel Egress Bytes type: Metric - verified: False - visible: True + verified: false + visible: true tags: - alz properties: @@ -41,8 +41,8 @@ - name: Tunnel Egress Packet Drop Count description: Metric Alert for Vnet Gateway tunnel TunnelEgressPacketDropCount type: Metric - verified: False - visible: True + verified: false + visible: true tags: - alz properties: @@ -64,8 +64,8 @@ - name: Tunnel Egress Packet Drop TS Mismatch description: Metric Alert for Vnet Gateway tunnel TunnelEgressPacketDropTSMismatch type: Metric - verified: False - visible: True + verified: false + visible: true tags: - alz properties: @@ -87,8 +87,8 @@ - name: ExpressRoute Gateway Bits Per Second description: Metric Alert for VNet Gateway Express Route Bits Per Second type: Metric - verified: False - visible: True + verified: false + visible: true tags: - alz properties: @@ -102,13 +102,14 @@ threshold: 1 criterionType: StaticThresholdCriterion deployments: - - description: Policy to audit/deploy Virtual Network Gateway Express Route Bits Per Second Alert + - description: Policy to audit/deploy Virtual Network Gateway Express Route Bits + Per Second Alert template: Deploy-VNETG-ERGBitsPerSecond-Alert.json - name: ExpressRoute Gateway CPU Utilization - description: Metric Alert for VNet Gateway Express Route CPU Utilization + description: CPU Utilization of the ExpressRoute Gateway type: Metric - verified: False - visible: True + verified: false + visible: true tags: - alz properties: @@ -122,13 +123,14 @@ threshold: 80 criterionType: StaticThresholdCriterion deployments: - - description: Policy to audit/deploy Virtual Network Gateway Express Route CPU Utilization + - description: Policy to audit/deploy Virtual Network Gateway Express Route CPU + Utilization template: Deploy-VNETG-ERGCPUUtilization-Alert.json - name: Tunnel Ingress Bytes description: Metric Alert for VNet Gateway Tunnel ingress Bytes type: Metric - verified: False - visible: True + verified: false + visible: true tags: - alz properties: @@ -147,8 +149,8 @@ - name: Tunnel Ingress Packet Drop Count description: Metric Alert for Vnet Gateway tunnel TunnelIngressPacketDropCount type: Metric - verified: False - visible: True + verified: false + visible: true tags: - alz properties: @@ -170,8 +172,8 @@ - name: Tunnel Ingress Packet Drop TS Mismatch description: Metric Alert for Vnet Gateway tunnel TunnelIngressPacketDropTSMismatch type: Metric - verified: False - visible: True + verified: false + visible: true tags: - alz properties: @@ -188,5 +190,60 @@ numberOfEvaluationPeriods: 4 minFailingPeriodsToAlert: 4 deployments: - - description: Policy to audit/deploy Vnet Gateway Ingress Packet Drop Mismatch Alert + - description: Policy to audit/deploy Vnet Gateway Ingress Packet Drop Mismatch + Alert template: Deploy-VNETG-IngressPacketDropMismatch-Alert.json +- name: TunnelAverageBandwidth + description: Average bandwidth of a tunnel in bytes per second + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1069 + properties: + metricName: TunnelAverageBandwidth + metricNamespace: Microsoft.Network/virtualNetworkGateways + severity: 3 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Average + operator: LessThan + criterionType: StaticThresholdCriterion + threshold: 1.0 +- name: ExpressRouteGatewayCpuUtilization + description: CPU Utilization of the ExpressRoute Gateway + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-428 + properties: + metricName: ExpressRouteGatewayCpuUtilization + metricNamespace: Microsoft.Network/virtualNetworkGateways + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 80.0 +- name: AverageBandwidth + description: Site-to-site bandwidth of a gateway in bytes per second + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-340 + properties: + metricName: AverageBandwidth + metricNamespace: Microsoft.Network/virtualNetworkGateways + severity: 3 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 450000000.0 diff --git a/services/Network/virtualNetworks/alerts.yaml b/services/Network/virtualNetworks/alerts.yaml index fc73814a4..e8188e8f4 100644 --- a/services/Network/virtualNetworks/alerts.yaml +++ b/services/Network/virtualNetworks/alerts.yaml @@ -1,8 +1,8 @@ - name: If Under DDoS Attack description: Metric Alert for VNet DDOS Attack type: Metric - verified: False - visible: True + verified: false + visible: true tags: - alz properties: @@ -18,3 +18,21 @@ deployments: - description: Policy to audit/deploy Virtual Network DDoS Attack Alert template: Deploy-VNET-DDOSAttack-Alert.json +- name: IfUnderDDoSAttack + description: Under DDoS attack or not + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-613 + properties: + metricName: IfUnderDDoSAttack + metricNamespace: Microsoft.Network/virtualNetworks + severity: 1 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Maximum + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 1.0 diff --git a/services/OperationalInsights/workspaces/alerts.yaml b/services/OperationalInsights/workspaces/alerts.yaml index c55c6403c..fdbc99387 100644 --- a/services/OperationalInsights/workspaces/alerts.yaml +++ b/services/OperationalInsights/workspaces/alerts.yaml @@ -1,14 +1,15 @@ - name: Activity Log LA Workspace Delete description: Activity Log LA Workspace Delete type: ActivityLog - verified: False - visible: True + verified: false + visible: true tags: - alz properties: category: Administrative operationName: Microsoft.OperationalInsights/workspaces/delete - status: [ succeeded ] + status: + - succeeded references: - name: Activity Log Service Notifications url: https://learn.microsoft.com/azure/service-health/alerts-activity-log-service-notifications-portal @@ -20,14 +21,15 @@ - name: Activity Log LA Workspace Regenerate Key description: Activity Log Alert for LA Workspace Regenerate Key type: ActivityLog - verified: False - visible: True + verified: false + visible: true tags: - alz properties: category: Administrative operationName: Microsoft.OperationalInsights/workspaces/regeneratesharedkey/action - status: [ succeeded ] + status: + - succeeded references: - name: Activity Log Service Notifications url: https://learn.microsoft.com/azure/service-health/alerts-activity-log-service-notifications-portal @@ -36,3 +38,623 @@ deployments: - description: Policy to Deploy Activity Log LA Workspace Regenerate Key Alert template: Deploy-ActivityLog-LAWorkspace-KeyRegen.json +- name: Average_% Free Space + description: 'Average_% Free Space. Supported for: Linux, Windows. Part of [metric + alerts for logs feature](https://aka.ms/am-log-to-metric).' + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-13312 + properties: + metricName: Average_% Free Space + metricNamespace: Microsoft.OperationalInsights/workspaces + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: LessThan + criterionType: StaticThresholdCriterion + dimensions: + - name: computer + operator: include + values: + - '*' + threshold: 10.0 +- name: Average_% Processor Time + description: 'Average_% Processor Time. Supported for: Linux, Windows. Part of [metric + alerts for logs feature](https://aka.ms/am-log-to-metric).' + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-11563 + properties: + metricName: Average_% Processor Time + metricNamespace: Microsoft.OperationalInsights/workspaces + severity: 3 + windowSize: PT1M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + dimensions: + - name: computer + operator: include + values: + - '*' + threshold: 90.0 +- name: Average_% Used Memory + description: 'Average_% Used Memory. Supported for: Linux. Part of [metric alerts + for logs feature](https://aka.ms/am-log-to-metric).' + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-9257 + properties: + metricName: Average_% Used Memory + metricNamespace: Microsoft.OperationalInsights/workspaces + severity: 3 + windowSize: PT1M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + dimensions: + - name: computer + operator: include + values: + - '*' + threshold: 90.0 +- name: Average_% Used Space + description: 'Average_% Used Space. Supported for: Linux. Part of [metric alerts + for logs feature](https://aka.ms/am-log-to-metric).' + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-8227 + properties: + metricName: Average_% Used Space + metricNamespace: Microsoft.OperationalInsights/workspaces + severity: 3 + windowSize: PT1M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + dimensions: + - name: computer + operator: include + values: + - '*' + threshold: 90.0 +- name: Average_% Committed Bytes In Use + description: 'Average_% Committed Bytes In Use. Supported for: Windows. Part of + [metric alerts for logs feature](https://aka.ms/am-log-to-metric).' + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-6344 + properties: + metricName: Average_% Committed Bytes In Use + metricNamespace: Microsoft.OperationalInsights/workspaces + severity: 1 + windowSize: PT15M + evaluationFrequency: PT15M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + dimensions: + - name: computer + operator: include + values: + - '*' + threshold: 90.0 +- name: Heartbeat + description: 'Heartbeat. Supported for: Linux, Windows. Part of [metric alerts for + logs feature](https://aka.ms/am-log-to-metric).' + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-4467 + properties: + metricName: Heartbeat + metricNamespace: Microsoft.OperationalInsights/workspaces + severity: 1 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: LessThanOrEqual + criterionType: StaticThresholdCriterion + dimensions: + - name: computer + operator: include + values: + - '*' + threshold: 0.0 +- name: Average_Disk Transfers/sec + description: 'Average_Disk Transfers/sec. Supported for: Linux, Windows. Part of + [metric alerts for logs feature](https://aka.ms/am-log-to-metric).' + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-3660 + properties: + metricName: Average_Disk Transfers/sec + metricNamespace: Microsoft.OperationalInsights/workspaces + severity: 2 + windowSize: PT15M + evaluationFrequency: PT15M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + dimensions: + - name: computer + operator: include + values: + - '*' + threshold: 100.0 +- name: Average_Available MBytes + description: 'Average_Available MBytes. Supported for: Windows. Part of [metric + alerts for logs feature](https://aka.ms/am-log-to-metric).' + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-2336 + properties: + metricName: Average_Available MBytes + metricNamespace: Microsoft.OperationalInsights/workspaces + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: LessThan + criterionType: StaticThresholdCriterion + dimensions: + - name: computer + operator: include + values: + - '*' + threshold: 512.0 +- name: Average_Available MBytes Memory + description: 'Average_Available MBytes Memory. Supported for: Linux. Part of [metric + alerts for logs feature](https://aka.ms/am-log-to-metric).' + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1519 + properties: + metricName: Average_Available MBytes Memory + metricNamespace: Microsoft.OperationalInsights/workspaces + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: LessThan + criterionType: StaticThresholdCriterion + dimensions: + - name: computer + operator: include + values: + - '*' + threshold: 1.0 +- name: Average_% Available Memory + description: 'Average_% Available Memory. Supported for: Linux. Part of [metric + alerts for logs feature](https://aka.ms/am-log-to-metric).' + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-732 + properties: + metricName: Average_% Available Memory + metricNamespace: Microsoft.OperationalInsights/workspaces + severity: 3 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Average + operator: LessThan + criterionType: StaticThresholdCriterion + dimensions: + - name: computer + operator: include + values: + - '*' + threshold: 10.0 +- name: Average_Free Megabytes + description: 'Average_Free Megabytes. Supported for: Linux, Windows. Part of [metric + alerts for logs feature](https://aka.ms/am-log-to-metric).' + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-722 + properties: + metricName: Average_Free Megabytes + metricNamespace: Microsoft.OperationalInsights/workspaces + severity: 2 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Average + operator: LessThan + criterionType: StaticThresholdCriterion + dimensions: + - name: computer + operator: include + values: + - '*' + - name: instancename + operator: include + values: + - 'c:' + - / + threshold: 10240.0 +- name: Average_% Used Inodes + description: 'Average_% Used Inodes. Supported for: Linux. Part of [metric alerts + for logs feature](https://aka.ms/am-log-to-metric).' + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-588 + properties: + metricName: Average_% Used Inodes + metricNamespace: Microsoft.OperationalInsights/workspaces + severity: 0 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + dimensions: + - name: computer + operator: include + values: + - '*' + threshold: 80.0 +- name: Average_% Used Swap Space + description: 'Average_% Used Swap Space. Supported for: Linux. Part of [metric alerts + for logs feature](https://aka.ms/am-log-to-metric).' + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-468 + properties: + metricName: Average_% Used Swap Space + metricNamespace: Microsoft.OperationalInsights/workspaces + severity: 1 + windowSize: PT1H + evaluationFrequency: PT15M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + dimensions: + - name: computer + operator: include + values: + - '*' + - name: objectname + operator: include + values: + - '*' + - name: instancename + operator: include + values: + - '*' + threshold: 50.0 +- name: Average_Current Disk Queue Length + description: 'Average_Current Disk Queue Length. Supported for: Windows. Part of + [metric alerts for logs feature](https://aka.ms/am-log-to-metric).' + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-456 + properties: + metricName: Average_Current Disk Queue Length + metricNamespace: Microsoft.OperationalInsights/workspaces + severity: 1 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + dimensions: + - name: computer + operator: include + values: + - '*' + - name: objectname + operator: include + values: + - '*' + - name: instancename + operator: include + values: + - '*' + threshold: 40.0 +- name: Event + description: 'Event. Supported for: Windows. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric).' + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-410 + properties: + metricName: Event + metricNamespace: Microsoft.OperationalInsights/workspaces + severity: 1 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + dimensions: + - name: source + operator: include + values: + - user32 + - name: eventlog + operator: include + values: + - system + - name: computer + operator: include + values: + - '*' + - name: eventid + operator: include + values: + - '1074' + threshold: 0.0 +- name: Average_Pages/sec + description: 'Average_Pages/sec. Supported for: Linux, Windows. Part of [metric + alerts for logs feature](https://aka.ms/am-log-to-metric).' + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-389 + properties: + metricName: Average_Pages/sec + metricNamespace: Microsoft.OperationalInsights/workspaces + severity: 2 + windowSize: PT15M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + dimensions: + - name: computer + operator: include + values: + - '*' + threshold: 5000.0 +- name: Average_Bytes Sent/sec + description: 'Average_Bytes Sent/sec. Supported for: Windows. Part of [metric alerts + for logs feature](https://aka.ms/am-log-to-metric).' + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-361 + properties: + metricName: Average_Bytes Sent/sec + metricNamespace: Microsoft.OperationalInsights/workspaces + severity: 1 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterOrLessThan + criterionType: DynamicThresholdCriterion + dimensions: + - name: computer + operator: include + values: + - '*' + - name: objectname + operator: include + values: + - '*' + - name: instancename + operator: include + values: + - '*' + - name: sourcesystem + operator: include + values: + - '*' + failingPeriods: + numberOfEvaluationPeriods: 4 + minFailingPeroidsToAlert: minFailingPeroidsToAlert + alertSensitivity: Medium +- name: Average_Bytes Received/sec + description: 'Average_Bytes Received/sec. Supported for: Windows. Part of [metric + alerts for logs feature](https://aka.ms/am-log-to-metric).' + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-357 + properties: + metricName: Average_Bytes Received/sec + metricNamespace: Microsoft.OperationalInsights/workspaces + severity: 1 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterOrLessThan + criterionType: DynamicThresholdCriterion + dimensions: + - name: computer + operator: include + values: + - '*' + - name: objectname + operator: include + values: + - '*' + - name: instancename + operator: include + values: + - '*' + - name: sourcesystem + operator: include + values: + - '*' + failingPeriods: + numberOfEvaluationPeriods: 4 + minFailingPeroidsToAlert: minFailingPeroidsToAlert + alertSensitivity: Medium +- name: Average_Total Bytes Transmitted + description: 'Average_Total Bytes Transmitted. Supported for: Linux. Part of [metric + alerts for logs feature](https://aka.ms/am-log-to-metric).' + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-349 + properties: + metricName: Average_Total Bytes Transmitted + metricNamespace: Microsoft.OperationalInsights/workspaces + severity: 1 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterOrLessThan + criterionType: DynamicThresholdCriterion + dimensions: + - name: computer + operator: include + values: + - '*' + - name: objectname + operator: include + values: + - '*' + - name: instancename + operator: include + values: + - '*' + - name: sourcesystem + operator: include + values: + - '*' + failingPeriods: + numberOfEvaluationPeriods: 4 + minFailingPeroidsToAlert: minFailingPeroidsToAlert + alertSensitivity: Medium +- name: Average_Total Bytes Received + description: 'Average_Total Bytes Received. Supported for: Linux. Part of [metric + alerts for logs feature](https://aka.ms/am-log-to-metric).' + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-347 + properties: + metricName: Average_Total Bytes Received + metricNamespace: Microsoft.OperationalInsights/workspaces + severity: 1 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterOrLessThan + criterionType: DynamicThresholdCriterion + dimensions: + - name: computer + operator: include + values: + - '*' + - name: objectname + operator: include + values: + - '*' + - name: instancename + operator: include + values: + - '*' + - name: sourcesystem + operator: include + values: + - '*' + failingPeriods: + numberOfEvaluationPeriods: 4 + minFailingPeroidsToAlert: minFailingPeroidsToAlert + alertSensitivity: Medium +- name: Average_% IO Wait Time + description: 'Average_% IO Wait Time. Supported for: Linux. Part of [metric alerts + for logs feature](https://aka.ms/am-log-to-metric).' + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-264 + properties: + metricName: Average_% IO Wait Time + metricNamespace: Microsoft.OperationalInsights/workspaces + severity: 4 + windowSize: PT15M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThanOrEqual + criterionType: StaticThresholdCriterion + dimensions: + - name: computer + operator: include + values: + - vm-pm-public-jump-001 + threshold: 75.0 +- name: Average_% User Time + description: 'Average_% User Time. Supported for: Linux, Windows. Part of [metric + alerts for logs feature](https://aka.ms/am-log-to-metric).' + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-261 + properties: + metricName: Average_% User Time + metricNamespace: Microsoft.OperationalInsights/workspaces + severity: 4 + windowSize: PT15M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThanOrEqual + criterionType: StaticThresholdCriterion + dimensions: + - name: computer + operator: include + values: + - vm-pm-public-jump-001 + threshold: 90.0 diff --git a/services/PowerBIDedicated/_index.md b/services/PowerBIDedicated/_index.md new file mode 100644 index 000000000..4c786a4cb --- /dev/null +++ b/services/PowerBIDedicated/_index.md @@ -0,0 +1,5 @@ +--- +title: PowerBIDedicated +geekdocCollapseSection: true +geekdocHidden: true +--- diff --git a/services/PowerBIDedicated/capacities/_index.md b/services/PowerBIDedicated/capacities/_index.md new file mode 100644 index 000000000..ca52601f9 --- /dev/null +++ b/services/PowerBIDedicated/capacities/_index.md @@ -0,0 +1,7 @@ +--- +title: capacities +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/PowerBIDedicated/capacities/alerts.yaml b/services/PowerBIDedicated/capacities/alerts.yaml new file mode 100644 index 000000000..29de38f24 --- /dev/null +++ b/services/PowerBIDedicated/capacities/alerts.yaml @@ -0,0 +1,19 @@ +- name: cpu_metric + description: CPU Utilization. Supported only for Power BI Embedded Generation 2 + resources. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-414 + properties: + metricName: cpu_metric + metricNamespace: Microsoft.PowerBIDedicated/capacities + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 90.0 diff --git a/services/RecoveryServices/_index.md b/services/RecoveryServices/_index.md new file mode 100644 index 000000000..eb0015aa6 --- /dev/null +++ b/services/RecoveryServices/_index.md @@ -0,0 +1,5 @@ +--- +title: RecoveryServices +geekdocCollapseSection: true +geekdocHidden: true +--- diff --git a/services/RecoveryServices/vaults/_index.md b/services/RecoveryServices/vaults/_index.md new file mode 100644 index 000000000..50e8641b5 --- /dev/null +++ b/services/RecoveryServices/vaults/_index.md @@ -0,0 +1,7 @@ +--- +title: vaults +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/RecoveryServices/vaults/alerts.yaml b/services/RecoveryServices/vaults/alerts.yaml new file mode 100644 index 000000000..e397cc48f --- /dev/null +++ b/services/RecoveryServices/vaults/alerts.yaml @@ -0,0 +1,50 @@ +- name: BackupHealthEvent + description: The count of health events pertaining to backup job health + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-3543 + properties: + metricName: BackupHealthEvent + metricNamespace: Microsoft.RecoveryServices/vaults + severity: 3 + windowSize: P1D + evaluationFrequency: PT1H + timeAggregation: Count + operator: GreaterThan + criterionType: StaticThresholdCriterion + dimensions: + - name: datasourceurl + operator: include + values: + - '*' + - name: healthstatus + operator: exclude + values: + - healthy + threshold: 0.0 +- name: RestoreHealthEvent + description: The count of health events pertaining to restore job health + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-285 + properties: + metricName: RestoreHealthEvent + metricNamespace: Microsoft.RecoveryServices/vaults + severity: 2 + windowSize: PT15M + evaluationFrequency: PT15M + timeAggregation: Count + operator: GreaterThanOrEqual + criterionType: StaticThresholdCriterion + dimensions: + - name: healthstatus + operator: exclude + values: + - healthy + threshold: 1.0 diff --git a/services/Relay/_index.md b/services/Relay/_index.md new file mode 100644 index 000000000..3c541780e --- /dev/null +++ b/services/Relay/_index.md @@ -0,0 +1,5 @@ +--- +title: Relay +geekdocCollapseSection: true +geekdocHidden: true +--- diff --git a/services/Relay/namespaces/_index.md b/services/Relay/namespaces/_index.md new file mode 100644 index 000000000..4fb117a9b --- /dev/null +++ b/services/Relay/namespaces/_index.md @@ -0,0 +1,7 @@ +--- +title: namespaces +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/Relay/namespaces/alerts.yaml b/services/Relay/namespaces/alerts.yaml new file mode 100644 index 000000000..d0a943939 --- /dev/null +++ b/services/Relay/namespaces/alerts.yaml @@ -0,0 +1,18 @@ +- name: ActiveListeners + description: Total ActiveListeners for Microsoft.Relay. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-777 + properties: + metricName: ActiveListeners + metricNamespace: Microsoft.Relay/namespaces + severity: 1 + windowSize: PT30M + evaluationFrequency: PT30M + timeAggregation: Total + operator: LessThan + criterionType: StaticThresholdCriterion + threshold: 1.0 diff --git a/services/Search/_index.md b/services/Search/_index.md new file mode 100644 index 000000000..bb18677b2 --- /dev/null +++ b/services/Search/_index.md @@ -0,0 +1,5 @@ +--- +title: Search +geekdocCollapseSection: true +geekdocHidden: true +--- diff --git a/services/Search/searchServices/_index.md b/services/Search/searchServices/_index.md new file mode 100644 index 000000000..56503e1c4 --- /dev/null +++ b/services/Search/searchServices/_index.md @@ -0,0 +1,7 @@ +--- +title: searchServices +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/Search/searchServices/alerts.yaml b/services/Search/searchServices/alerts.yaml new file mode 100644 index 000000000..fe8ea6f99 --- /dev/null +++ b/services/Search/searchServices/alerts.yaml @@ -0,0 +1,36 @@ +- name: SearchLatency + description: Average search latency for the search service + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-696 + properties: + metricName: SearchLatency + metricNamespace: Microsoft.Search/searchServices + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 64.0 +- name: ThrottledSearchQueriesPercentage + description: Percentage of search queries that were throttled for the search service + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-680 + properties: + metricName: ThrottledSearchQueriesPercentage + metricNamespace: Microsoft.Search/searchServices + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 1.0 diff --git a/services/ServiceBus/_index.md b/services/ServiceBus/_index.md new file mode 100644 index 000000000..97f3deed1 --- /dev/null +++ b/services/ServiceBus/_index.md @@ -0,0 +1,5 @@ +--- +title: ServiceBus +geekdocCollapseSection: true +geekdocHidden: true +--- diff --git a/services/ServiceBus/namespaces/_index.md b/services/ServiceBus/namespaces/_index.md new file mode 100644 index 000000000..4fb117a9b --- /dev/null +++ b/services/ServiceBus/namespaces/_index.md @@ -0,0 +1,7 @@ +--- +title: namespaces +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/ServiceBus/namespaces/alerts.yaml b/services/ServiceBus/namespaces/alerts.yaml new file mode 100644 index 000000000..b9cebbf82 --- /dev/null +++ b/services/ServiceBus/namespaces/alerts.yaml @@ -0,0 +1,275 @@ +- name: DeadletteredMessages + description: Count of dead-lettered messages in a Queue/Topic. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-38142 + properties: + metricName: DeadletteredMessages + metricNamespace: Microsoft.ServiceBus/namespaces + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: ActiveMessages + description: Count of active messages in a Queue/Topic. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-25181 + properties: + metricName: ActiveMessages + metricNamespace: Microsoft.ServiceBus/namespaces + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 100.0 +- name: Size + description: Size of an Queue/Topic in Bytes. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-20672 + properties: + metricName: Size + metricNamespace: Microsoft.ServiceBus/namespaces + severity: 3 + windowSize: PT15M + evaluationFrequency: PT15M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + dimensions: + - name: entityname + operator: include + values: + - lp-cl-sa-centralus-queue + threshold: 3000000000.0 +- name: NamespaceCpuUsage + description: Service bus premium namespace CPU usage metric. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-16694 + properties: + metricName: NamespaceCpuUsage + metricNamespace: Microsoft.ServiceBus/namespaces + severity: 2 + windowSize: PT15M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 85.0 +- name: Messages + description: Count of messages in a Queue/Topic. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-7213 + properties: + metricName: Messages + metricNamespace: Microsoft.ServiceBus/namespaces + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 100000.0 +- name: ThrottledRequests + description: Throttled Requests for Microsoft.ServiceBus. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-3899 + properties: + metricName: ThrottledRequests + metricNamespace: Microsoft.ServiceBus/namespaces + severity: 1 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: ServerErrors + description: Server Errors for Microsoft.ServiceBus. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-3695 + properties: + metricName: ServerErrors + metricNamespace: Microsoft.ServiceBus/namespaces + severity: 1 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: UserErrors + description: User Errors for Microsoft.ServiceBus. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-2036 + properties: + metricName: UserErrors + metricNamespace: Microsoft.ServiceBus/namespaces + severity: 3 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: OutgoingMessages + description: Outgoing Messages for Microsoft.ServiceBus. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1096 + properties: + metricName: OutgoingMessages + metricNamespace: Microsoft.ServiceBus/namespaces + severity: 1 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: LessThanOrEqual + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: NamespaceMemoryUsage + description: Service bus premium namespace memory usage metric. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1039 + properties: + metricName: NamespaceMemoryUsage + metricNamespace: Microsoft.ServiceBus/namespaces + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 80.0 +- name: IncomingMessages + description: Incoming Messages for Microsoft.ServiceBus. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-667 + properties: + metricName: IncomingMessages + metricNamespace: Microsoft.ServiceBus/namespaces + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: ScheduledMessages + description: Count of scheduled messages in a Queue/Topic. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-425 + properties: + metricName: ScheduledMessages + metricNamespace: Microsoft.ServiceBus/namespaces + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 500.0 +- name: AbandonMessage + description: Count of messages abandoned on a Queue/Topic. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-420 + properties: + metricName: AbandonMessage + metricNamespace: Microsoft.ServiceBus/namespaces + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 1.0 +- name: ServerSendLatency + description: Latency of Send Message operations for Service Bus resources. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-353 + properties: + metricName: ServerSendLatency + metricNamespace: Microsoft.ServiceBus/namespaces + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 500.0 +- name: ActiveConnections + description: Total Active Connections for Microsoft.ServiceBus. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-309 + properties: + metricName: ActiveConnections + metricNamespace: Microsoft.ServiceBus/namespaces + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 5000.0 diff --git a/services/SignalRService/SignalR/_index.md b/services/SignalRService/SignalR/_index.md new file mode 100644 index 000000000..d453949cd --- /dev/null +++ b/services/SignalRService/SignalR/_index.md @@ -0,0 +1,7 @@ +--- +title: SignalR +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/SignalRService/SignalR/alerts.yaml b/services/SignalRService/SignalR/alerts.yaml new file mode 100644 index 000000000..1a6b87184 --- /dev/null +++ b/services/SignalRService/SignalR/alerts.yaml @@ -0,0 +1,54 @@ +- name: ConnectionCount + description: The amount of user connection. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-463 + properties: + metricName: ConnectionCount + metricNamespace: Microsoft.SignalRService/SignalR + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Maximum + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 900.0 +- name: SystemErrors + description: The percentage of system errors + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-278 + properties: + metricName: SystemErrors + metricNamespace: Microsoft.SignalRService/SignalR + severity: 1 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Maximum + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 1.0 +- name: ConnectionQuotaUtilization + description: The percentage of connection connected relative to connection quota. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-253 + properties: + metricName: ConnectionQuotaUtilization + metricNamespace: Microsoft.SignalRService/SignalR + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Maximum + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 90.0 diff --git a/services/SignalRService/_index.md b/services/SignalRService/_index.md new file mode 100644 index 000000000..353561f78 --- /dev/null +++ b/services/SignalRService/_index.md @@ -0,0 +1,5 @@ +--- +title: SignalRService +geekdocCollapseSection: true +geekdocHidden: true +--- diff --git a/services/Sql/_index.md b/services/Sql/_index.md new file mode 100644 index 000000000..beacbed4c --- /dev/null +++ b/services/Sql/_index.md @@ -0,0 +1,5 @@ +--- +title: Sql +geekdocCollapseSection: true +geekdocHidden: true +--- diff --git a/services/Sql/managedInstances/_index.md b/services/Sql/managedInstances/_index.md new file mode 100644 index 000000000..a5d85d6e2 --- /dev/null +++ b/services/Sql/managedInstances/_index.md @@ -0,0 +1,7 @@ +--- +title: managedInstances +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/Sql/managedInstances/alerts.yaml b/services/Sql/managedInstances/alerts.yaml new file mode 100644 index 000000000..a7538b9db --- /dev/null +++ b/services/Sql/managedInstances/alerts.yaml @@ -0,0 +1,36 @@ +- name: avg_cpu_percent + description: Average CPU percentage + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-3941 + properties: + metricName: avg_cpu_percent + metricNamespace: Microsoft.Sql/managedInstances + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 80.0 +- name: storage_space_used_mb + description: Storage space used + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-2440 + properties: + metricName: storage_space_used_mb + metricNamespace: Microsoft.Sql/managedInstances + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 80.0 diff --git a/services/Sql/servers/_index.md b/services/Sql/servers/_index.md new file mode 100644 index 000000000..8250b4406 --- /dev/null +++ b/services/Sql/servers/_index.md @@ -0,0 +1,7 @@ +--- +title: servers/databases +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/Sql/servers/alerts.yaml b/services/Sql/servers/alerts.yaml new file mode 100644 index 000000000..f8f0a7781 --- /dev/null +++ b/services/Sql/servers/alerts.yaml @@ -0,0 +1,512 @@ +- name: connection_failed + description: Failed Connections + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-40238 + properties: + metricName: connection_failed + metricNamespace: Microsoft.Sql/servers/databases + severity: 1 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: deadlock + description: Deadlocks. Not applicable to data warehouses. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-35134 + properties: + metricName: deadlock + metricNamespace: Microsoft.Sql/servers/databases + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: blocked_by_firewall + description: Blocked by Firewall + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-14712 + properties: + metricName: blocked_by_firewall + metricNamespace: Microsoft.Sql/servers/databases + severity: 2 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 5.0 +- name: storage + description: Data space used. Not applicable to data warehouses. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-5882 + properties: + metricName: storage + metricNamespace: Microsoft.Sql/servers/databases + severity: 3 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Maximum + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 934584883610.0 +- name: connection_successful + description: Successful Connections + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-3844 + properties: + metricName: connection_successful + metricNamespace: Microsoft.Sql/servers/databases + severity: 4 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Total + operator: LessThan + criterionType: DynamicThresholdCriterion + failingPeriods: + numberOfEvaluationPeriods: 5 + minFailingPeroidsToAlert: minFailingPeroidsToAlert + alertSensitivity: Low +- name: connection_failed_user_error + description: 'Failed Connections : User Errors' + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-2855 + properties: + metricName: connection_failed_user_error + metricNamespace: Microsoft.Sql/servers/databases + severity: 2 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 10.0 +- name: dtu_used + description: DTU used. Applies to DTU-based databases. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1689 + properties: + metricName: dtu_used + metricNamespace: Microsoft.Sql/servers/databases + severity: 3 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 85.0 +- name: sessions_count + description: Number of active sessions. Not applicable to Synapse DW Analytics. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-637 + properties: + metricName: sessions_count + metricNamespace: Microsoft.Sql/servers/databases + severity: 0 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Average + operator: LessThan + criterionType: StaticThresholdCriterion + threshold: 0.5 +- name: dtu_limit + description: DTU Limit. Applies to DTU-based databases. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-577 + properties: + metricName: dtu_limit + metricNamespace: Microsoft.Sql/servers/databases + severity: 3 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 100.0 +- name: app_memory_percent + description: App memory percentage. Applies to serverless databases. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-361 + properties: + metricName: app_memory_percent + metricNamespace: Microsoft.Sql/servers/databases + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 90.0 +- name: app_cpu_percent + description: App CPU percentage. Applies to serverless databases. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-350 + properties: + metricName: app_cpu_percent + metricNamespace: Microsoft.Sql/servers/databases + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 80.0 +- name: memory_usage_percent + description: Memory percentage. Applies only to data warehouses. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-343 + properties: + metricName: memory_usage_percent + metricNamespace: Microsoft.Sql/servers/databases + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Maximum + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 90.0 +- name: cpu_used + description: CPU used. Applies to vCore-based databases. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-328 + properties: + metricName: cpu_used + metricNamespace: Microsoft.Sql/servers/databases + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 80.0 +- name: tempdb_data_size + description: Space used in tempdb data files in kilobytes. Not applicable to data + warehouses. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-298 + properties: + metricName: tempdb_data_size + metricNamespace: Microsoft.Sql/servers/databases + severity: 3 + windowSize: PT15M + evaluationFrequency: PT5M + timeAggregation: Maximum + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 80.0 +- name: storage_percent + description: Data space used percent. Not applicable to hyperscale + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-5835 + properties: + metricName: storage_percent + metricNamespace: Microsoft.Sql/servers/elasticpools + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 80.0 +- name: cpu_percent + description: CPU percentage + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-5434 + properties: + metricName: cpu_percent + metricNamespace: Microsoft.Sql/servers/elasticpools + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 90.0 +- name: dtu_consumption_percent + description: DTU Percentage. Applies to DTU-based elastic pools. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-3850 + properties: + metricName: dtu_consumption_percent + metricNamespace: Microsoft.Sql/servers/elasticpools + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 90.0 +- name: allocated_data_storage_percent + description: Data space allocated percent. Not applicable to hyperscale + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-2800 + properties: + metricName: allocated_data_storage_percent + metricNamespace: Microsoft.Sql/servers/elasticpools + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Maximum + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 90.0 +- name: physical_data_read_percent + description: Data IO percentage + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-2299 + properties: + metricName: physical_data_read_percent + metricNamespace: Microsoft.Sql/servers/elasticpools + severity: 3 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 90.0 +- name: log_write_percent + description: Log IO percentage + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1775 + properties: + metricName: log_write_percent + metricNamespace: Microsoft.Sql/servers/elasticpools + severity: 2 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 90.0 +- name: workers_percent + description: Workers percentage + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-844 + properties: + metricName: workers_percent + metricNamespace: Microsoft.Sql/servers/elasticpools + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 80.0 +- name: sqlserver_process_memory_percent + description: Memory usage as a percentage of the SQL DB process. Applies to elastic + pools. (This metric is equivalent to sql_instance_memory_percent, and will be + removed in the future.) + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-505 + properties: + metricName: sqlserver_process_memory_percent + metricNamespace: Microsoft.Sql/servers/elasticpools + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 80.0 +- name: sessions_percent + description: Sessions percentage + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-473 + properties: + metricName: sessions_percent + metricNamespace: Microsoft.Sql/servers/elasticpools + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 80.0 +- name: xtp_storage_percent + description: In-Memory OLTP storage percent. Not applicable to hyperscale + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-436 + properties: + metricName: xtp_storage_percent + metricNamespace: Microsoft.Sql/servers/elasticpools + severity: 3 + windowSize: PT30M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 90.0 +- name: sqlserver_process_core_percent + description: CPU usage as a percentage of the SQL DB process. Applies to elastic + pools. (This metric is equivalent to sql_instance_cpu_percent, and will be removed + in the future.) + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-418 + properties: + metricName: sqlserver_process_core_percent + metricNamespace: Microsoft.Sql/servers/elasticpools + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 70.0 +- name: tempdb_log_used_percent + description: Space used percentage in tempdb transaction log file + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-289 + properties: + metricName: tempdb_log_used_percent + metricNamespace: Microsoft.Sql/servers/elasticpools + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Maximum + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 80.0 +- name: eDTU_used + description: eDTU used. Applies to DTU-based elastic pools. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-279 + properties: + metricName: eDTU_used + metricNamespace: Microsoft.Sql/servers/elasticpools + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 80.0 +- name: allocated_data_storage + description: Data space allocated. Not applicable to hyperscale + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-262 + properties: + metricName: allocated_data_storage + metricNamespace: Microsoft.Sql/servers/elasticpools + severity: 1 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThanOrEqual + criterionType: StaticThresholdCriterion + threshold: 225000000000.0 diff --git a/services/Storage/storageAccounts/alerts.yaml b/services/Storage/storageAccounts/alerts.yaml index 9ab81943e..9310c7cb6 100644 --- a/services/Storage/storageAccounts/alerts.yaml +++ b/services/Storage/storageAccounts/alerts.yaml @@ -1,8 +1,12 @@ - name: Deploy SA Availability Alert - description: Metric Alert for Storage Account Availability + description: The percentage of availability for the storage service or the specified + API operation. Availability is calculated by taking the TotalBillableRequests + value and dividing it by the number of applicable requests, including those that + produced unexpected errors. All unexpected errors result in reduced availability + for the storage service or the specified API operation. type: Metric - verified: True - visible: True + verified: true + visible: true tags: - alz properties: @@ -18,3 +22,320 @@ deployments: - description: Policy to audit/deploy SA Availability Alert template: Deploy-SA-Availability-Alert.json +- name: UsedCapacity + description: The amount of storage used by the storage account. For standard storage + accounts, it's the sum of capacity used by blob, table, file, and queue. For premium + storage accounts and Blob storage accounts, it is the same as BlobCapacity or + FileCapacity. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-42019 + properties: + metricName: UsedCapacity + metricNamespace: Microsoft.Storage/storageAccounts + severity: 3 + windowSize: P1D + evaluationFrequency: PT1H + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 4000000000000000.0 +- name: Egress + description: The amount of egress data. This number includes egress to external + client from Azure Storage as well as egress within Azure. As a result, this number + does not reflect billable egress. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-3835 + properties: + metricName: Egress + metricNamespace: Microsoft.Storage/storageAccounts + severity: 0 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 60000000.0 +- name: Ingress + description: The amount of ingress data, in bytes. This number includes ingress + from an external client into Azure Storage as well as ingress within Azure. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-2468 + properties: + metricName: Ingress + metricNamespace: Microsoft.Storage/storageAccounts + severity: 3 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 1073741824.0 +- name: BlobCapacity + description: The amount of storage used by the storage account's Blob service in + bytes. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1986 + properties: + metricName: BlobCapacity + metricNamespace: Microsoft.Storage/storageAccounts/blobServices + severity: 3 + windowSize: P1D + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 107374182400.0 +- name: SuccessE2ELatency + description: The average end-to-end latency of successful requests made to a storage + service or the specified API operation, in milliseconds. This value includes the + required processing time within Azure Storage to read the request, send the response, + and receive acknowledgment of the response. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-504 + properties: + metricName: SuccessE2ELatency + metricNamespace: Microsoft.Storage/storageAccounts/blobServices + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 1000.0 +- name: BlobCount + description: The number of blob objects stored in the storage account. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-325 + properties: + metricName: BlobCount + metricNamespace: Microsoft.Storage/storageAccounts/blobServices + severity: 3 + windowSize: PT1H + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: SuccessServerLatency + description: The average time used to process a successful request by Azure Storage. + This value does not include the network latency specified in SuccessE2ELatency. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-257 + properties: + metricName: SuccessServerLatency + metricNamespace: Microsoft.Storage/storageAccounts/blobServices + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 1000.0 +- name: QueueMessageCount + description: The number of unexpired queue messages in the storage account. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1583 + properties: + metricName: QueueMessageCount + metricNamespace: Microsoft.Storage/storageAccounts/queueServices + severity: 3 + windowSize: PT1H + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 1000.0 +- name: QueueCapacity + description: The amount of Queue storage used by the storage account. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-543 + properties: + metricName: QueueCapacity + metricNamespace: Microsoft.Storage/storageAccounts/queueServices + severity: 0 + windowSize: PT1H + evaluationFrequency: PT1H + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: QueueCount + description: The number of queues in the storage account. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-481 + properties: + metricName: QueueCount + metricNamespace: Microsoft.Storage/storageAccounts/queueServices + severity: 0 + windowSize: PT1H + evaluationFrequency: PT1H + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: FileCapacity + description: The amount of File storage used by the storage account. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-8048 + properties: + metricName: FileCapacity + metricNamespace: Microsoft.Storage/storageAccounts/fileServices + severity: 2 + windowSize: PT1H + evaluationFrequency: PT15M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 96636764160.0 +- name: Transactions + description: The number of requests made to a storage service or the specified API + operation. This number includes successful and failed requests, as well as requests + which produced errors. Use ResponseType dimension for the number of different + type of response. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1467 + properties: + metricName: Transactions + metricNamespace: Microsoft.Storage/storageAccounts/fileServices + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + dimensions: + - name: responsetype + operator: include + values: + - success + - name: authentication + operator: include + values: + - anonymous + threshold: 10.0 +- name: FileShareSnapshotCount + description: The number of snapshots present on the share in storage account's Files + Service. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-654 + properties: + metricName: FileShareSnapshotCount + metricNamespace: Microsoft.Storage/storageAccounts/fileServices + severity: 3 + windowSize: PT1H + evaluationFrequency: PT15M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 190.0 +- name: Availability + description: The percentage of availability for the storage service or the specified + API operation. Availability is calculated by taking the TotalBillableRequests + value and dividing it by the number of applicable requests, including those that + produced unexpected errors. All unexpected errors result in reduced availability + for the storage service or the specified API operation. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-620 + properties: + metricName: Availability + metricNamespace: Microsoft.Storage/storageAccounts/fileServices + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: LessThanOrEqual + criterionType: StaticThresholdCriterion + threshold: 99.9 +- name: FileShareCount + description: The number of file shares in the storage account. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-407 + properties: + metricName: FileShareCount + metricNamespace: Microsoft.Storage/storageAccounts/fileServices + severity: 0 + windowSize: PT1H + evaluationFrequency: PT1H + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: FileShareCapacityQuota + description: The upper limit on the amount of storage that can be used by Azure + Files Service in bytes. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-357 + properties: + metricName: FileShareCapacityQuota + metricNamespace: Microsoft.Storage/storageAccounts/fileServices + severity: 0 + windowSize: PT1H + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 108851651149824.0 diff --git a/services/StorageSync/_index.md b/services/StorageSync/_index.md new file mode 100644 index 000000000..709a07803 --- /dev/null +++ b/services/StorageSync/_index.md @@ -0,0 +1,5 @@ +--- +title: StorageSync +geekdocCollapseSection: true +geekdocHidden: true +--- diff --git a/services/StorageSync/storageSyncServices/_index.md b/services/StorageSync/storageSyncServices/_index.md new file mode 100644 index 000000000..e8035d4f5 --- /dev/null +++ b/services/StorageSync/storageSyncServices/_index.md @@ -0,0 +1,7 @@ +--- +title: storageSyncServices +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/StorageSync/storageSyncServices/alerts.yaml b/services/StorageSync/storageSyncServices/alerts.yaml new file mode 100644 index 000000000..c4fe3257a --- /dev/null +++ b/services/StorageSync/storageSyncServices/alerts.yaml @@ -0,0 +1,56 @@ +- name: StorageSyncServerHeartbeat + description: Metric that logs a value of 1 each time the resigtered server successfully + records a heartbeat with the Cloud Endpoint + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1502 + properties: + metricName: StorageSyncServerHeartbeat + metricNamespace: Microsoft.StorageSync/storageSyncServices + severity: 3 + windowSize: PT1H + evaluationFrequency: PT30M + timeAggregation: Maximum + operator: LessThan + criterionType: StaticThresholdCriterion + threshold: 1.0 +- name: StorageSyncSyncSessionPerItemErrorsCount + description: Count of files failed to sync + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1081 + properties: + metricName: StorageSyncSyncSessionPerItemErrorsCount + metricNamespace: Microsoft.StorageSync/storageSyncServices + severity: 2 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 100.0 +- name: ServerSyncSessionResult + description: Metric that logs a value of 1 each time the Server Endpoint successfully + completes a Sync Session with the Cloud Endpoint + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-971 + properties: + metricName: ServerSyncSessionResult + metricNamespace: Microsoft.StorageSync/storageSyncServices + severity: 3 + windowSize: P1D + evaluationFrequency: PT1H + timeAggregation: Maximum + operator: LessThan + criterionType: StaticThresholdCriterion + threshold: 1.0 diff --git a/services/StreamAnalytics/_index.md b/services/StreamAnalytics/_index.md new file mode 100644 index 000000000..366fbaf70 --- /dev/null +++ b/services/StreamAnalytics/_index.md @@ -0,0 +1,5 @@ +--- +title: StreamAnalytics +geekdocCollapseSection: true +geekdocHidden: true +--- diff --git a/services/StreamAnalytics/streamingjobs/_index.md b/services/StreamAnalytics/streamingjobs/_index.md new file mode 100644 index 000000000..0f97bc3ea --- /dev/null +++ b/services/StreamAnalytics/streamingjobs/_index.md @@ -0,0 +1,7 @@ +--- +title: streamingjobs +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/StreamAnalytics/streamingjobs/alerts.yaml b/services/StreamAnalytics/streamingjobs/alerts.yaml new file mode 100644 index 000000000..1f5d5af34 --- /dev/null +++ b/services/StreamAnalytics/streamingjobs/alerts.yaml @@ -0,0 +1,180 @@ +- name: Errors + description: Runtime Errors + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-2098 + properties: + metricName: Errors + metricNamespace: Microsoft.StreamAnalytics/streamingjobs + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: ResourceUtilization + description: SU (Memory) % Utilization + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1658 + properties: + metricName: ResourceUtilization + metricNamespace: Microsoft.StreamAnalytics/streamingjobs + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Maximum + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 80.0 +- name: OutputWatermarkDelaySeconds + description: Watermark Delay + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1610 + properties: + metricName: OutputWatermarkDelaySeconds + metricNamespace: Microsoft.StreamAnalytics/streamingjobs + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Maximum + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 300.0 +- name: OutputEvents + description: Output Events + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-902 + properties: + metricName: OutputEvents + metricNamespace: Microsoft.StreamAnalytics/streamingjobs + severity: 3 + windowSize: PT6H + evaluationFrequency: PT1H + timeAggregation: Total + operator: LessThanOrEqual + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: ConversionErrors + description: Data Conversion Errors + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-814 + properties: + metricName: ConversionErrors + metricNamespace: Microsoft.StreamAnalytics/streamingjobs + severity: 3 + windowSize: PT15M + evaluationFrequency: PT5M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: InputEvents + description: Input Events + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-629 + properties: + metricName: InputEvents + metricNamespace: Microsoft.StreamAnalytics/streamingjobs + severity: 3 + windowSize: PT6H + evaluationFrequency: PT1H + timeAggregation: Total + operator: LessThanOrEqual + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: DeserializationError + description: Input Deserialization Errors + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-607 + properties: + metricName: DeserializationError + metricNamespace: Microsoft.StreamAnalytics/streamingjobs + severity: 1 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: InputEventsSourcesBacklogged + description: Backlogged Input Events + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-360 + properties: + metricName: InputEventsSourcesBacklogged + metricNamespace: Microsoft.StreamAnalytics/streamingjobs + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Maximum + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 100000.0 +- name: ProcessCPUUsagePercentage + description: CPU % Utilization + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-343 + properties: + metricName: ProcessCPUUsagePercentage + metricNamespace: Microsoft.StreamAnalytics/streamingjobs + severity: 2 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 80.0 +- name: AMLCalloutFailedRequests + description: Failed Function Requests + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-324 + properties: + metricName: AMLCalloutFailedRequests + metricNamespace: Microsoft.StreamAnalytics/streamingjobs + severity: 3 + windowSize: PT1H + evaluationFrequency: PT15M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 diff --git a/services/Synapse/_index.md b/services/Synapse/_index.md new file mode 100644 index 000000000..24e1fcc98 --- /dev/null +++ b/services/Synapse/_index.md @@ -0,0 +1,5 @@ +--- +title: Synapse +geekdocCollapseSection: true +geekdocHidden: true +--- diff --git a/services/Synapse/workspaces/_index.md b/services/Synapse/workspaces/_index.md new file mode 100644 index 000000000..c7b828507 --- /dev/null +++ b/services/Synapse/workspaces/_index.md @@ -0,0 +1,7 @@ +--- +title: workspaces +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/Synapse/workspaces/alerts.yaml b/services/Synapse/workspaces/alerts.yaml new file mode 100644 index 000000000..62a814082 --- /dev/null +++ b/services/Synapse/workspaces/alerts.yaml @@ -0,0 +1,158 @@ +- name: IntegrationPipelineRunsEnded + description: Count of integration pipeline runs that succeeded, failed, or were + cancelled + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-2916 + properties: + metricName: IntegrationPipelineRunsEnded + metricNamespace: Microsoft.Synapse/workspaces + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + dimensions: + - name: result + operator: include + values: + - failed + threshold: 0.0 +- name: BuiltinSqlPoolLoginAttempts + description: Count of login attempts that succeded or failed + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-285 + properties: + metricName: BuiltinSqlPoolLoginAttempts + metricNamespace: Microsoft.Synapse/workspaces + severity: 3 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 360.0 +- name: BuiltinSqlPoolDataProcessedBytes + description: Amount of data processed by queries + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-274 + properties: + metricName: BuiltinSqlPoolDataProcessedBytes + metricNamespace: Microsoft.Synapse/workspaces + severity: 3 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 386547056640.0 +- name: SQLStreamingRuntimeErrors + description: This is a preview metric available in East US, West Europe. Total number + of errors related to query processing (excluding errors found while ingesting + events or outputting results). + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-272 + properties: + metricName: SQLStreamingRuntimeErrors + metricNamespace: Microsoft.Synapse/workspaces + severity: 2 + windowSize: PT15M + evaluationFrequency: PT15M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: IntegrationTriggerRunsEnded + description: Count of integration triggers that succeeded, failed, or were cancelled + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-258 + properties: + metricName: IntegrationTriggerRunsEnded + metricNamespace: Microsoft.Synapse/workspaces + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + dimensions: + - name: result + operator: include + values: + - failed + threshold: 0.0 +- name: DWUUsedPercent + description: Represents a high-level representation of usage across the SQL pool. + Measured by taking the maximum between CPU percentage and Data IO percentage + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-388 + properties: + metricName: DWUUsedPercent + metricNamespace: Microsoft.Synapse/workspaces/sqlPools + severity: 3 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 90.0 +- name: CPUPercent + description: CPU utilization across all nodes in the SQL pool + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-368 + properties: + metricName: CPUPercent + metricNamespace: Microsoft.Synapse/workspaces/sqlPools + severity: 3 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 90.0 +- name: MemoryUsedPercent + description: Memory utilization across all nodes in the SQL pool + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-275 + properties: + metricName: MemoryUsedPercent + metricNamespace: Microsoft.Synapse/workspaces/sqlPools + severity: 2 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Maximum + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 80.0 diff --git a/services/Web/_index.md b/services/Web/_index.md new file mode 100644 index 000000000..f28d84aeb --- /dev/null +++ b/services/Web/_index.md @@ -0,0 +1,5 @@ +--- +title: Web +geekdocCollapseSection: true +geekdocHidden: true +--- diff --git a/services/Web/hostingEnvironments/_index.md b/services/Web/hostingEnvironments/_index.md new file mode 100644 index 000000000..82dde9874 --- /dev/null +++ b/services/Web/hostingEnvironments/_index.md @@ -0,0 +1,7 @@ +--- +title: hostingEnvironments/multiRolePools +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/Web/hostingEnvironments/alerts.yaml b/services/Web/hostingEnvironments/alerts.yaml new file mode 100644 index 000000000..21de98260 --- /dev/null +++ b/services/Web/hostingEnvironments/alerts.yaml @@ -0,0 +1,38 @@ +- name: CpuPercentage + description: The average CPU used across all instances of front end. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1266 + properties: + metricName: CpuPercentage + metricNamespace: Microsoft.Web/hostingEnvironments/multiRolePools + severity: 3 + windowSize: PT15M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 75.0 +- name: HttpQueueLength + description: The average number of HTTP requests that had to sit on the queue before + being fulfilled. A high or increasing HTTP Queue length is a symptom of a plan + under heavy load. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1044 + properties: + metricName: HttpQueueLength + metricNamespace: Microsoft.Web/hostingEnvironments/multiRolePools + severity: 3 + windowSize: PT15M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 100.0 diff --git a/services/Web/serverFarms/_index.md b/services/Web/serverFarms/_index.md new file mode 100644 index 000000000..d3bab36e0 --- /dev/null +++ b/services/Web/serverFarms/_index.md @@ -0,0 +1,7 @@ +--- +title: serverFarms +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/Web/serverFarms/alerts.yaml b/services/Web/serverFarms/alerts.yaml new file mode 100644 index 000000000..43fee86b0 --- /dev/null +++ b/services/Web/serverFarms/alerts.yaml @@ -0,0 +1,176 @@ +- name: CpuPercentage + description: The average CPU used across all instances of the plan. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-98691 + properties: + metricName: CpuPercentage + metricNamespace: Microsoft.Web/serverFarms + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 90.0 +- name: MemoryPercentage + description: The average memory used across all instances of the plan. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-74095 + properties: + metricName: MemoryPercentage + metricNamespace: Microsoft.Web/serverFarms + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 90.0 +- name: HttpQueueLength + description: The average number of HTTP requests that had to sit on the queue before + being fulfilled. A high or increasing HTTP Queue length is a symptom of a plan + under heavy load. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-8583 + properties: + metricName: HttpQueueLength + metricNamespace: Microsoft.Web/serverFarms + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 100.0 +- name: DiskQueueLength + description: The average number of both read and write requests that were queued + on storage. A high disk queue length is an indication of an app that might be + slowing down because of excessive disk I/O. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-3640 + properties: + metricName: DiskQueueLength + metricNamespace: Microsoft.Web/serverFarms + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 100.0 +- name: SocketOutboundAll + description: The average number of sockets used for outbound connections across + all the instances of the plan irrespective of their TCP states. Having too many + outbound connections can cause connectivity errors. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1145 + properties: + metricName: SocketOutboundAll + metricNamespace: Microsoft.Web/serverFarms + severity: 4 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 2000.0 +- name: TcpTimeWait + description: The average number of sockets in TIME_WAIT state across all the instances + of the plan. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-683 + properties: + metricName: TcpTimeWait + metricNamespace: Microsoft.Web/serverFarms + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 300.0 +- name: BytesReceived + description: The average incoming bandwidth used across all instances of the plan. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-448 + properties: + metricName: BytesReceived + metricNamespace: Microsoft.Web/serverFarms + severity: 2 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Total + operator: GreaterOrLessThan + criterionType: DynamicThresholdCriterion + failingPeriods: + numberOfEvaluationPeriods: 4 + minFailingPeroidsToAlert: minFailingPeroidsToAlert + alertSensitivity: Low +- name: BytesSent + description: The average outgoing bandwidth used across all instances of the plan. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-444 + properties: + metricName: BytesSent + metricNamespace: Microsoft.Web/serverFarms + severity: 2 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Total + operator: GreaterOrLessThan + criterionType: DynamicThresholdCriterion + failingPeriods: + numberOfEvaluationPeriods: 4 + minFailingPeroidsToAlert: minFailingPeroidsToAlert + alertSensitivity: Low +- name: TcpEstablished + description: The average number of sockets in ESTABLISHED state across all the instances + of the plan. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-364 + properties: + metricName: TcpEstablished + metricNamespace: Microsoft.Web/serverFarms + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 3000.0 diff --git a/services/Web/sites/_index.md b/services/Web/sites/_index.md new file mode 100644 index 000000000..ff0a359cf --- /dev/null +++ b/services/Web/sites/_index.md @@ -0,0 +1,7 @@ +--- +title: sites +geekdocCollapseSection: true +geekdocHidden: true +--- + +{{< alertList name="alertList" >}} \ No newline at end of file diff --git a/services/Web/sites/alerts.yaml b/services/Web/sites/alerts.yaml new file mode 100644 index 000000000..565570eee --- /dev/null +++ b/services/Web/sites/alerts.yaml @@ -0,0 +1,575 @@ +- name: AverageResponseTime + description: The average time taken for the app to serve requests, in seconds. For + WebApps and FunctionApps. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-21698 + properties: + metricName: AverageResponseTime + metricNamespace: Microsoft.Web/sites + severity: 2 + windowSize: PT15M + evaluationFrequency: PT15M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 30.0 +- name: CpuTime + description: The amount of CPU consumed by the app, in seconds. For more information + about this metric. Please see https://aka.ms/website-monitor-cpu-time-vs-cpu-percentage + (CPU time vs CPU percentage). For WebApps only. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-17242 + properties: + metricName: CpuTime + metricNamespace: Microsoft.Web/sites + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 120.0 +- name: PrivateBytes + description: Private Bytes is the current size, in bytes, of memory that the app + process has allocated that can't be shared with other processes. For WebApps and + FunctionApps. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-13219 + properties: + metricName: PrivateBytes + metricNamespace: Microsoft.Web/sites + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 1200000000.0 +- name: RequestsInApplicationQueue + description: The number of requests in the application request queue. For WebApps + and FunctionApps. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-9854 + properties: + metricName: RequestsInApplicationQueue + metricNamespace: Microsoft.Web/sites + severity: 3 + windowSize: PT15M + evaluationFrequency: PT5M + timeAggregation: Maximum + operator: GreaterThan + criterionType: StaticThresholdCriterion + dimensions: + - name: instance + operator: include + values: + - '*' + threshold: 10.0 +- name: AppConnections + description: The number of bound sockets existing in the sandbox (w3wp.exe and its + child processes). A bound socket is created by calling bind()/connect() APIs and + remains until said socket is closed with CloseHandle()/closesocket(). For WebApps + and FunctionApps. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-9147 + properties: + metricName: AppConnections + metricNamespace: Microsoft.Web/sites + severity: 3 + windowSize: PT15M + evaluationFrequency: PT5M + timeAggregation: Maximum + operator: GreaterThan + criterionType: StaticThresholdCriterion + dimensions: + - name: instance + operator: include + values: + - '*' + threshold: 6000.0 +- name: Http401 + description: The count of requests resulting in HTTP 401 status code. For WebApps + and FunctionApps. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-5591 + properties: + metricName: Http401 + metricNamespace: Microsoft.Web/sites + severity: 2 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 20.0 +- name: Http404 + description: The count of requests resulting in HTTP 404 status code. For WebApps + and FunctionApps. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-5060 + properties: + metricName: Http404 + metricNamespace: Microsoft.Web/sites + severity: 3 + windowSize: PT15M + evaluationFrequency: PT5M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 10.0 +- name: FileSystemUsage + description: Percentage of filesystem quota consumed by the app. For WebApps and + FunctionApps. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-4838 + properties: + metricName: FileSystemUsage + metricNamespace: Microsoft.Web/sites + severity: 2 + windowSize: PT6H + evaluationFrequency: PT1H + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 400000000.0 +- name: MemoryWorkingSet + description: The current amount of memory used by the app, in MiB. For WebApps and + FunctionApps. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-4748 + properties: + metricName: MemoryWorkingSet + metricNamespace: Microsoft.Web/sites + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 1500000000.0 +- name: FunctionExecutionCount + description: Function Execution Count. For FunctionApps only. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-3540 + properties: + metricName: FunctionExecutionCount + metricNamespace: Microsoft.Web/sites + severity: 1 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Total + operator: LessThanOrEqual + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: Threads + description: The number of threads currently active in the app process. For WebApps + and FunctionApps. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1457 + properties: + metricName: Threads + metricNamespace: Microsoft.Web/sites + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 100.0 +- name: BytesSent + description: The amount of outgoing bandwidth consumed by the app, in MiB. For WebApps + and FunctionApps. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1401 + properties: + metricName: BytesSent + metricNamespace: Microsoft.Web/sites + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterOrLessThan + criterionType: DynamicThresholdCriterion + failingPeriods: + numberOfEvaluationPeriods: 4 + minFailingPeroidsToAlert: minFailingPeroidsToAlert + alertSensitivity: Low +- name: Http406 + description: The count of requests resulting in HTTP 406 status code. For WebApps + and FunctionApps. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1063 + properties: + metricName: Http406 + metricNamespace: Microsoft.Web/sites + severity: 1 + windowSize: PT15M + evaluationFrequency: PT15M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 1.0 +- name: BytesReceived + description: The amount of incoming bandwidth consumed by the app, in MiB. For WebApps + and FunctionApps. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1020 + properties: + metricName: BytesReceived + metricNamespace: Microsoft.Web/sites + severity: 3 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 2048000000.0 +- name: Http3xx + description: The count of requests resulting in an HTTP status code >= 300 but < + 400. For WebApps and FunctionApps. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1003 + properties: + metricName: Http3xx + metricNamespace: Microsoft.Web/sites + severity: 3 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 15.0 +- name: Handles + description: The total number of handles currently open by the app process. For + WebApps and FunctionApps. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-752 + properties: + metricName: Handles + metricNamespace: Microsoft.Web/sites + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: GreaterOrLessThan + criterionType: DynamicThresholdCriterion + failingPeriods: + numberOfEvaluationPeriods: 4 + minFailingPeroidsToAlert: minFailingPeroidsToAlert + alertSensitivity: Low +- name: FunctionExecutionUnits + description: Function Execution Units. For FunctionApps only. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-426 + properties: + metricName: FunctionExecutionUnits + metricNamespace: Microsoft.Web/sites + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 13000000000.0 +- name: Http2xx + description: The count of requests resulting in an HTTP status code >= 200 but < + 300. For WebApps and FunctionApps. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-411 + properties: + metricName: Http2xx + metricNamespace: Microsoft.Web/sites + severity: 3 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 15.0 +- name: WorkflowRunsFailureRate + description: Workflow Runs Failure Rate. For LogicApps only. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-351 + properties: + metricName: WorkflowRunsFailureRate + metricNamespace: Microsoft.Web/sites + severity: 1 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 0.0 +- name: Gen2Collections + description: The number of times the generation 2 objects are garbage collected + since the start of the app process. For WebApps and FunctionApps. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-258 + properties: + metricName: Gen2Collections + metricNamespace: Microsoft.Web/sites + severity: 2 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: DynamicThresholdCriterion + failingPeriods: + numberOfEvaluationPeriods: 4 + minFailingPeroidsToAlert: minFailingPeroidsToAlert + alertSensitivity: Medium +- name: Gen0Collections + description: The number of times the generation 0 objects are garbage collected + since the start of the app process. Higher generation GCs include all lower generation + GCs. For WebApps and FunctionApps. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-253 + properties: + metricName: Gen0Collections + metricNamespace: Microsoft.Web/sites + severity: 2 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: DynamicThresholdCriterion + failingPeriods: + numberOfEvaluationPeriods: 4 + minFailingPeroidsToAlert: minFailingPeroidsToAlert + alertSensitivity: Medium +- name: Gen1Collections + description: The number of times the generation 1 objects are garbage collected + since the start of the app process. Higher generation GCs include all lower generation + GCs. For WebApps and FunctionApps. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-253 + properties: + metricName: Gen1Collections + metricNamespace: Microsoft.Web/sites + severity: 2 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: DynamicThresholdCriterion + failingPeriods: + numberOfEvaluationPeriods: 4 + minFailingPeroidsToAlert: minFailingPeroidsToAlert + alertSensitivity: Medium +- name: Http5xx + description: The count of requests resulting in an HTTP status code >= 500 but < + 600. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1800 + properties: + metricName: Http5xx + metricNamespace: Microsoft.Web/sites/slots + severity: 1 + windowSize: PT15M + evaluationFrequency: PT5M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 10.0 +- name: HttpResponseTime + description: The time taken for the app to serve requests, in seconds. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-1020 + properties: + metricName: HttpResponseTime + metricNamespace: Microsoft.Web/sites/slots + severity: 1 + windowSize: PT30M + evaluationFrequency: PT15M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 5.0 +- name: Http4xx + description: The count of requests resulting in an HTTP status code >= 400 but < + 500. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-685 + properties: + metricName: Http4xx + metricNamespace: Microsoft.Web/sites/slots + severity: 1 + windowSize: PT30M + evaluationFrequency: PT15M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 5.0 +- name: AverageMemoryWorkingSet + description: The average amount of memory used by the app, in megabytes (MiB). + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-350 + properties: + metricName: AverageMemoryWorkingSet + metricNamespace: Microsoft.Web/sites/slots + severity: 3 + windowSize: PT5M + evaluationFrequency: PT5M + timeAggregation: Average + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 800000000.0 +- name: Requests + description: The total number of requests regardless of their resulting HTTP status + code. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-286 + properties: + metricName: Requests + metricNamespace: Microsoft.Web/sites/slots + severity: 2 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 2000.0 +- name: HealthCheckStatus + description: Health check status + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-277 + properties: + metricName: HealthCheckStatus + metricNamespace: Microsoft.Web/sites/slots + severity: 3 + windowSize: PT5M + evaluationFrequency: PT1M + timeAggregation: Average + operator: LessThan + criterionType: StaticThresholdCriterion + threshold: 100.0 +- name: Http403 + description: The count of requests resulting in HTTP 403 status code. + type: Metric + verified: false + visible: false + tags: + - auto-generated + - agc-251 + properties: + metricName: Http403 + metricNamespace: Microsoft.Web/sites/slots + severity: 0 + windowSize: PT30M + evaluationFrequency: PT15M + timeAggregation: Total + operator: GreaterThan + criterionType: StaticThresholdCriterion + threshold: 5.0 diff --git a/tooling/query-metrics-alerts/.gitignore b/tooling/query-metrics-alerts/.gitignore new file mode 100644 index 000000000..1800ba127 --- /dev/null +++ b/tooling/query-metrics-alerts/.gitignore @@ -0,0 +1,22 @@ +# Local python packages +.python_packages/ + +# Python Environments +.env +.venv/ +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# Visual Studio Code +.vscode + +# output files +*.csv diff --git a/tooling/query-metrics-alerts/analysis_query.kql b/tooling/query-metrics-alerts/analysis_query.kql new file mode 100644 index 000000000..07f3538e1 --- /dev/null +++ b/tooling/query-metrics-alerts/analysis_query.kql @@ -0,0 +1,98 @@ +let resourceTypes = MetricAlertRules(ago(1d)) +| summarize numRulesRt=dcount(RuleId) by resourceType=tolower(resourceType) +| where numRulesRt > 1000 +| order by numRulesRt; + +let rulesExpanded = MetricAlertRules(ago(1d)) +| where tolower(resourceType) in (resourceTypes) +| mv-expand allCriteria +| extend metricName=tolower(parse_json(allCriteria)["metricName"]), + operator=tolower(parse_json(allCriteria)["operator"]), + timeAggregation=tolower(parse_json(allCriteria)["timeAggregation"]), + criterionType=tolower(parse_json(allCriteria)["criterionType"]), + dimensions=tolower(parse_json(allCriteria)["dimensions"]), + severity=toint(parse_json(JsonPayload)["genevaAlertMonitor"]["properties"]["severity"]), + threshold=tolower(parse_json(allCriteria)["threshold"]), + alertSensitivity=tolower(parse_json(allCriteria)["alertSensitivity"]), + numberOfEvaluationPeriods=toint(parse_json(allCriteria)["failingPeriods"]["numberOfEvaluationPeriods"]), + minFailingPeriodsToAlert=toint(parse_json(allCriteria)["failingPeriods"]["minFailingPeriodsToAlert"]) +| extend group = tostring(bag_pack("resourceType", resourceType, "metricName", metricName, "operator", operator, "timeAggregation", timeAggregation, "criterionType", criterionType)); + +rulesExpanded +| extend rt_metric = bag_pack("resourceType", resourceType, "metricName", metricName) +| summarize numRules=dcount(RuleId) by tostring(rt_metric), operator, timeAggregation, criterionType +| partition hint.strategy=native by rt_metric + ( + top 1 by numRules + ) +| where numRules > 50 +| extend a = parse_json(rt_metric) +| evaluate bag_unpack(a) +| extend group = tostring(bag_pack("resourceType", resourceType, "metricName", metricName, "operator", operator, "timeAggregation", timeAggregation, "criterionType", criterionType)) +| join kind=inner + ( + rulesExpanded + | where group == group + | summarize numRules1=dcount(RuleId) by group, frequency, windowSize + | partition hint.strategy=native by group + ( + top 1 by numRules1 + ) + ) on group +| join kind=inner + ( + rulesExpanded + | where group == group + | summarize numRules2=dcount(RuleId) by group, dimensions + | partition hint.strategy=native by group + ( + top 1 by numRules2 + ) + ) on group +| join kind=inner + ( + rulesExpanded + | where group == group + | summarize numRules3=dcount(RuleId) by group, severity + | partition hint.strategy=native by group + ( + top 1 by numRules3 + ) + ) on group +| join kind=inner + ( + rulesExpanded + | where group == group + | summarize numRules4=dcount(RuleId) by group, threshold + | partition hint.strategy=native by group + ( + top 1 by numRules4 + ) + ) on group +| join kind=inner + ( + rulesExpanded + | where group == group + | summarize numRules5=dcount(RuleId) by group, alertSensitivity + | partition hint.strategy=native by group + ( + top 1 by numRules5 + ) + ) on group +| join kind=inner + ( + rulesExpanded + | where group == group + | summarize numRules6=dcount(RuleId) by group, numberOfEvaluationPeriods, minFailingPeriodsToAlert + | partition hint.strategy=native by group + ( + top 1 by numRules6 + ) + ) on group +| lookup kind=inner + ( + resourceTypes + ) on resourceType +| extend failingPeriods = iif(criterionType =~ "DynamicThresholdCriterion", bag_pack("numberOfEvaluationPeriods", numberOfEvaluationPeriods, "minFailingPeroidsToAlert", "minFailingPeroidsToAlert"), "") +| project resourceType, numRulesRt, metricName, numRules, operator, timeAggregation, criterionType, frequency, windowSize, severity, dimensions, threshold, alertSensitivity, failingPeriods +| order by resourceType asc, numRules desc diff --git a/tooling/query-metrics-alerts/analysis_query_old.kql b/tooling/query-metrics-alerts/analysis_query_old.kql new file mode 100644 index 000000000..c2e2caf17 --- /dev/null +++ b/tooling/query-metrics-alerts/analysis_query_old.kql @@ -0,0 +1,157 @@ +let resourceTypes = MetricAlertRules(ago(1d)) +| summarize numRulesRt=dcount(RuleId) by resourceType=tolower(resourceType) +| where numRulesRt > 1000 +| order by numRulesRt; + +MetricAlertRules(ago(1d)) +| where tolower(resourceType) in (resourceTypes) +| mv-expand allCriteria +| extend metricName=tolower(parse_json(allCriteria)["metricName"]), + operator=tolower(parse_json(allCriteria)["operator"]), + timeAggregation=tolower(parse_json(allCriteria)["timeAggregation"]), + criterionType=tolower(parse_json(allCriteria)["criterionType"]) +| summarize id=max(RuleId), numRules=dcount(RuleId) by resourceType, metricName, operator, timeAggregation, criterionType +| partition hint.strategy=native by metricName + ( + top 3 by numRules + ) +| order by metricName asc, numRules desc +| lookup kind=inner + ( + MetricAlertRules(ago(1d)) + | where resourceType =~ resourceType + | mv-expand allCriteria + | extend metricName=tolower(parse_json(allCriteria)["metricName"]), + operator=tolower(parse_json(allCriteria)["operator"]), + timeAggregation=tolower(parse_json(allCriteria)["timeAggregation"]), + criterionType=tolower(parse_json(allCriteria)["criterionType"]) + | where metricName == metricName and operator == operator and timeAggregation == timeAggregation and criterionType == criterionType + | extend freq_winsize = tostring(bag_pack("frequency", frequency, "windowSize", windowSize)) + | extend group = tostring(bag_pack("resourceType", tolower(resourceType), "metricName", metricName, "operator", operator, "timeAggregation", timeAggregation, "criterionType", criterionType)) + | summarize numRules1=dcount(RuleId) by group, freq_winsize + | partition hint.strategy=native by group + ( + top 3 by numRules1 + ) + | order by group, numRules1 + | extend a = parse_json(freq_winsize) + | extend b = bag_pack("frequency", a['frequency'], "windowSize", a['windowSize'], "numRules", numRules1) + | summarize freq_winsize_list = make_list(b) by group + | extend c = parse_json(group) + | evaluate bag_unpack(c) + | project resourceType, metricName, operator, timeAggregation, criterionType, freq_winsize_list + ) on resourceType, metricName, operator, timeAggregation, criterionType +| lookup kind=inner + ( + MetricAlertRules(ago(1d)) + | where resourceType =~ resourceType + | mv-expand allCriteria + | extend metricName=tolower(parse_json(allCriteria)["metricName"]), + operator=tolower(parse_json(allCriteria)["operator"]), + timeAggregation=tolower(parse_json(allCriteria)["timeAggregation"]), + criterionType=tolower(parse_json(allCriteria)["criterionType"]), + dimensions=tolower(parse_json(allCriteria)["dimensions"]) + | where metricName == metricName and operator == operator and timeAggregation == timeAggregation and criterionType == criterionType + | extend group = tostring(bag_pack("resourceType", tolower(resourceType), "metricName", metricName, "operator", operator, "timeAggregation", timeAggregation, "criterionType", criterionType)) + | summarize numRules2=dcount(RuleId) by group, dimensions + | partition hint.strategy=native by group + ( + top 3 by numRules2 + ) + | order by group, numRules2 + | extend a = bag_pack("dimensions", dimensions, "numRules", numRules2) + | summarize dimensions_list = make_list(a) by group + | extend b = parse_json(group) + | evaluate bag_unpack(b) + | project resourceType, metricName, operator, timeAggregation, criterionType, dimensions_list + ) on resourceType, metricName, operator, timeAggregation, criterionType +| lookup kind=inner + ( + MetricAlertRules(ago(1d)) + | where resourceType =~ resourceType + | mv-expand allCriteria + | extend metricName=tolower(parse_json(allCriteria)["metricName"]), + operator=tolower(parse_json(allCriteria)["operator"]), + timeAggregation=tolower(parse_json(allCriteria)["timeAggregation"]), + criterionType=tolower(parse_json(allCriteria)["criterionType"]), + severity=toint(parse_json(JsonPayload)["genevaAlertMonitor"]["properties"]["severity"]) + | where metricName == metricName and operator == operator and timeAggregation == timeAggregation and criterionType == criterionType + | extend group = tostring(bag_pack("resourceType", tolower(resourceType), "metricName", metricName, "operator", operator, "timeAggregation", timeAggregation, "criterionType", criterionType)) + | summarize numRules3=dcount(RuleId) by group, severity + | partition hint.strategy=native by group + ( + top 3 by numRules3 + ) + | order by group, numRules3 + | extend a = bag_pack("severity", severity, "numRules", numRules3) + | summarize severity_list = make_list(a) by group + | extend b = parse_json(group) + | evaluate bag_unpack(b) + | project resourceType, metricName, operator, timeAggregation, criterionType, severity_list + ) on resourceType, metricName, operator, timeAggregation, criterionType +| lookup kind=inner + ( + MetricAlertRules(ago(1d)) + | where resourceType =~ resourceType + | mv-expand allCriteria + | extend metricName=tolower(parse_json(allCriteria)["metricName"]), + operator=tolower(parse_json(allCriteria)["operator"]), + timeAggregation=tolower(parse_json(allCriteria)["timeAggregation"]), + criterionType=tolower(parse_json(allCriteria)["criterionType"]), + threshold=tolower(parse_json(allCriteria)["threshold"]) + | where metricName == metricName and operator == operator and timeAggregation == timeAggregation and criterionType == criterionType + | extend group = tostring(bag_pack("resourceType", tolower(resourceType), "metricName", metricName, "operator", operator, "timeAggregation", timeAggregation, "criterionType", criterionType)) + | summarize numRules4=dcount(RuleId) by group, threshold + | partition hint.strategy=native by group + ( + top 3 by numRules4 + ) + | order by group, numRules4 + | extend a = bag_pack("threshold", threshold, "numRules", numRules4) + | summarize static_threshold_list = make_list(a) by group + | extend b = parse_json(group) + | evaluate bag_unpack(b) + | project resourceType, metricName, operator, timeAggregation, criterionType, static_threshold_list + ) on resourceType, metricName, operator, timeAggregation, criterionType +| lookup kind=inner + ( + MetricAlertRules(ago(1d)) + | where resourceType =~ resourceType + | mv-expand allCriteria + | extend metricName=tolower(parse_json(allCriteria)["metricName"]), + operator=tolower(parse_json(allCriteria)["operator"]), + timeAggregation=tolower(parse_json(allCriteria)["timeAggregation"]), + criterionType=tolower(parse_json(allCriteria)["criterionType"]), + alertSensitivity=tolower(parse_json(allCriteria)["alertSensitivity"]), + numberOfEvaluationPeriods=toint(parse_json(allCriteria)["failingPeriods"]["numberOfEvaluationPeriods"]), + minFailingPeriodsToAlert=toint(parse_json(allCriteria)["failingPeriods"]["minFailingPeriodsToAlert"]) + | where metricName == metricName and operator == operator and timeAggregation == timeAggregation and criterionType == criterionType + | extend dynamic_threshold = tostring(bag_pack("alertSensitivity", alertSensitivity, "numberOfEvaluationPeriods", numberOfEvaluationPeriods, "minFailingPeriodsToAlert", minFailingPeriodsToAlert)) + | extend group = tostring(bag_pack("resourceType", tolower(resourceType), "metricName", metricName, "operator", operator, "timeAggregation", timeAggregation, "criterionType", criterionType)) + | summarize numRules5=dcount(RuleId) by group, dynamic_threshold + | partition hint.strategy=native by group + ( + top 3 by numRules5 + ) + | order by group, numRules5 + | extend a = parse_json(dynamic_threshold) + | extend b = bag_pack("alertSensitivity", a["alertSensitivity"], "numberOfEvaluationPeriods", a["numberOfEvaluationPeriods"], "minFailingPeroidsToAlert", a["minFailingPeroidsToAlert"], "numRules", numRules5) + | summarize dynamic_threshold_list = make_list(b) by group + | extend c = parse_json(group) + | evaluate bag_unpack(c) + | project resourceType, metricName, operator, timeAggregation, criterionType, dynamic_threshold_list + ) on resourceType, metricName, operator, timeAggregation, criterionType +| extend frequency = freq_winsize_list[0]["frequency"] +| extend windowSize = freq_winsize_list[0]["windowSize"] +| extend severity = severity_list[0]["severity"] +| extend dimensions = dimensions_list[0]["dimensions"] +| extend threshold = iif(criterionType =~ "StaticThresholdCriterion", static_threshold_list[0]["threshold"], "") +| extend alertSensitivity = iif(criterionType =~ "DynamicThresholdCriterion", dynamic_threshold_list[0]["alertSensitivity"], "") +| extend failingPeriods = iif(criterionType =~ "DynamicThresholdCriterion", bag_pack("numberOfEvaluationPeriods", dynamic_threshold_list[0]["numberOfEvaluationPeriods"], "minFailingPeroidsToAlert", dynamic_threshold_list[0]["minFailingPeroidsToAlert"]), "") +| extend analysis = bag_pack("freq_winsize_list", freq_winsize_list, "severity_list", severity_list, "dimensions_list", dimensions_list, "static_threshold_list", static_threshold_list, "dynamic_threshold_list", dynamic_threshold_list) +| lookup kind=inner + ( + resourceTypes + ) on resourceType +| project resourceType, numRulesRt, metricName, numRules, operator, timeAggregation, criterionType, frequency, windowSize, severity, dimensions, threshold, alertSensitivity, failingPeriods, analysis +| order by numRulesRt desc, resourceType asc, metricName asc, numRules desc diff --git a/tooling/query-metrics-alerts/metric_definitions.json b/tooling/query-metrics-alerts/metric_definitions.json new file mode 100644 index 000000000..b9b5dd71c --- /dev/null +++ b/tooling/query-metrics-alerts/metric_definitions.json @@ -0,0 +1,29904 @@ +{ + "microsoft.aad/domainservices": { + "\\DirectoryServices(NTDS)\\LDAP Searches/sec": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "DataCenter, Tenant, Role, RoleInstance, ScaleUnit", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "This metric indicates the average number of searches per second for the NTDS object. It is backed by performance counter data from the domain controller, and can be filtered or splitted by role instance." + }, + "\\DirectoryServices(NTDS)\\LDAP Successful Binds/sec": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "DataCenter, Tenant, Role, RoleInstance, ScaleUnit", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "This metric indicates the number of LDAP successful binds per second for the NTDS object. It is backed by performance counter data from the domain controller, and can be filtered or splitted by role instance." + }, + "\\DNS\\Total Query Received/sec": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "DataCenter, Tenant, Role, RoleInstance, ScaleUnit", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "This metric indicates the average number of queries received by DNS server in each second. It is backed by performance counter data from the domain controller, and can be filtered or splitted by role instance." + }, + "\\DNS\\Total Response Sent/sec": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "DataCenter, Tenant, Role, RoleInstance, ScaleUnit", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "This metric indicates the average number of reponses sent by DNS server in each second. It is backed by performance counter data from the domain controller, and can be filtered or splitted by role instance." + }, + "\\Memory\\% Committed Bytes In Use": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "DataCenter, Tenant, Role, RoleInstance, ScaleUnit", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "This metric indicates the ratio of Memory\\Committed Bytes to the Memory\\Commit Limit. Committed memory is the physical memory in use for which space has been reserved in the paging file should it need to be written to disk. The commit limit is determined by the size of the paging file. If the paging file is enlarged, the commit limit increases, and the ratio is reduced. This counter displays the current percentage value only; it is not an average. It is backed by performance counter data from the domain controller, and can be filtered or splitted by role instance." + }, + "\\Process(dns)\\% Processor Time": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "DataCenter, Tenant, Role, RoleInstance, ScaleUnit", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "This metric indicates the percentage of elapsed time that all of dns process threads used the processor to execute instructions. An instruction is the basic unit of execution in a computer, a thread is the object that executes instructions, and a process is the object created when a program is run. Code executed to handle some hardware interrupts and trap conditions are included in this count. It is backed by performance counter data from the domain controller, and can be filtered or splitted by role instance." + }, + "\\Process(lsass)\\% Processor Time": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "DataCenter, Tenant, Role, RoleInstance, ScaleUnit", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "This metric indicates the percentage of elapsed time that all of lsass process threads used the processor to execute instructions. An instruction is the basic unit of execution in a computer, a thread is the object that executes instructions, and a process is the object created when a program is run. Code executed to handle some hardware interrupts and trap conditions are included in this count. It is backed by performance counter data from the domain controller, and can be filtered or splitted by role instance." + }, + "\\Processor(_Total)\\% Processor Time": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "DataCenter, Tenant, Role, RoleInstance, ScaleUnit", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "This metric indicates the percentage of elapsed time that the processor spends to execute a non-Idle thread. It is calculated by measuring the percentage of time that the processor spends executing the idle thread and then subtracting that value from 100%. (Each processor has an idle thread that consumes cycles when no other threads are ready to run). This counter is the primary indicator of processor activity, and displays the average percentage of busy time observed during the sample interval. It should be noted that the accounting calculation of whether the processor is idle is performed at an internal sampling interval of the system clock (10ms). On todays fast processors, % Processor Time can therefore underestimate the processor utilization as the processor may be spending a lot of time servicing threads between the system clock sampling interval. Workload based timer applications are one example of applications which are more likely to be measured inaccurately as timers are signaled just after the sample is taken. It is backed by performance counter data from the domain controller, and can be filtered or splitted by role instance." + }, + "\\Security System-Wide Statistics\\Kerberos Authentications": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "DataCenter, Tenant, Role, RoleInstance, ScaleUnit", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "This metric indicates the number of times that clients use a ticket to authenticate to this computer per second. It is backed by performance counter data from the domain controller, and can be filtered or splitted by role instance." + }, + "\\Security System-Wide Statistics\\NTLM Authentications": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "DataCenter, Tenant, Role, RoleInstance, ScaleUnit", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "This metric indicates the number of NTLM authentications processed per second for the Active Directory on this domain contrller or for local accounts on this member server. It is backed by performance counter data from the domain controller, and can be filtered or splitted by role instance." + } + }, + "microsoft.analysisservices/servers": { + "CleanerCurrentPrice": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "ServerResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Current price of memory, $/byte/time, normalized to 1000." + }, + "CleanerMemoryNonshrinkable": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "ServerResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Amount of memory, in bytes, not subject to purging by the background cleaner." + }, + "CleanerMemoryShrinkable": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "ServerResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Amount of memory, in bytes, subject to purging by the background cleaner." + }, + "CommandPoolBusyThreads": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "ServerResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of busy threads in the command thread pool." + }, + "CommandPoolIdleThreads": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "ServerResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of idle threads in the command thread pool." + }, + "CommandPoolJobQueueLength": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "ServerResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of jobs in the queue of the command thread pool." + }, + "CurrentConnections": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "ServerResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Current number of client connections established." + }, + "CurrentUserSessions": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "ServerResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Current number of user sessions established." + }, + "LongParsingBusyThreads": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "ServerResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of busy threads in the long parsing thread pool." + }, + "LongParsingIdleThreads": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "ServerResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of idle threads in the long parsing thread pool." + }, + "LongParsingJobQueueLength": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "ServerResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of jobs in the queue of the long parsing thread pool." + }, + "mashup_engine_memory_metric": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "ServerResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Memory usage by mashup engine processes" + }, + "mashup_engine_private_bytes_metric": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "ServerResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Private bytes usage by mashup engine processes." + }, + "mashup_engine_qpu_metric": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "ServerResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "QPU usage by mashup engine processes" + }, + "mashup_engine_virtual_bytes_metric": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "ServerResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Virtual bytes usage by mashup engine processes." + }, + "memory_metric": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "ServerResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Memory. Range 0-25 GB for S1, 0-50 GB for S2 and 0-100 GB for S4" + }, + "memory_thrashing_metric": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "ServerResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average memory thrashing." + }, + "MemoryLimitHard": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "ServerResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Hard memory limit, from configuration file." + }, + "MemoryLimitHigh": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "ServerResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "High memory limit, from configuration file." + }, + "MemoryLimitLow": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "ServerResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Low memory limit, from configuration file." + }, + "MemoryLimitVertiPaq": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "ServerResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "In-memory limit, from configuration file." + }, + "MemoryUsage": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "ServerResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Memory usage of the server process as used in calculating cleaner memory price. Equal to counter Process\\PrivateBytes plus the size of memory-mapped data, ignoring any memory which was mapped or allocated by the xVelocity in-memory analytics engine (VertiPaq) in excess of the xVelocity engine Memory Limit." + }, + "private_bytes_metric": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "ServerResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Private bytes." + }, + "ProcessingPoolBusyIOJobThreads": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "ServerResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of threads running I/O jobs in the processing thread pool." + }, + "ProcessingPoolBusyNonIOThreads": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "ServerResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of threads running non-I/O jobs in the processing thread pool." + }, + "ProcessingPoolIdleIOJobThreads": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "ServerResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of idle threads for I/O jobs in the processing thread pool." + }, + "ProcessingPoolIdleNonIOThreads": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "ServerResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of idle threads in the processing thread pool dedicated to non-I/O jobs." + }, + "ProcessingPoolIOJobQueueLength": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "ServerResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of I/O jobs in the queue of the processing thread pool." + }, + "ProcessingPoolJobQueueLength": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "ServerResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of non-I/O jobs in the queue of the processing thread pool." + }, + "qpu_metric": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "ServerResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "QPU. Range 0-100 for S1, 0-200 for S2 and 0-400 for S4" + }, + "QueryPoolBusyThreads": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "ServerResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of busy threads in the query thread pool." + }, + "QueryPoolIdleThreads": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "ServerResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of idle threads for I/O jobs in the processing thread pool." + }, + "QueryPoolJobQueueLength": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "ServerResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of jobs in the queue of the query thread pool." + }, + "Quota": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "ServerResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Current memory quota, in bytes. Memory quota is also known as a memory grant or memory reservation." + }, + "QuotaBlocked": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "ServerResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Current number of quota requests that are blocked until other memory quotas are freed." + }, + "RowsConvertedPerSec": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "ServerResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Rate of rows converted during processing." + }, + "RowsReadPerSec": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "ServerResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Rate of rows read from all relational databases." + }, + "RowsWrittenPerSec": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "ServerResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Rate of rows written during processing." + }, + "ShortParsingBusyThreads": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "ServerResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of busy threads in the short parsing thread pool." + }, + "ShortParsingIdleThreads": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "ServerResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of idle threads in the short parsing thread pool." + }, + "ShortParsingJobQueueLength": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "ServerResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of jobs in the queue of the short parsing thread pool." + }, + "SuccessfullConnectionsPerSec": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "ServerResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Rate of successful connection completions." + }, + "TotalConnectionFailures": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "ServerResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total failed connection attempts." + }, + "TotalConnectionRequests": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "ServerResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total connection requests. These are arrivals." + }, + "VertiPaqNonpaged": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "ServerResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Bytes of memory locked in the working set for use by the in-memory engine." + }, + "VertiPaqPaged": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "ServerResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Bytes of paged memory in use for in-memory data." + }, + "virtual_bytes_metric": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "ServerResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Virtual bytes." + } + }, + "microsoft.apimanagement/service": { + "BackendDuration": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "Location, Hostname", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Duration of Backend Requests in milliseconds" + }, + "Capacity": { + "Unit": "Percent", + "Aggregation": "Average, Maximum", + "Dimensions": "Location", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Utilization metric for ApiManagement service. Note: For skus other than Premium, 'Max' aggregation will show the value as 0." + }, + "ConnectionAttempts": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "Location, Source, Destination, State", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of WebSocket connection attempts based on selected source and destination" + }, + "Duration": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "Location, Hostname", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Overall Duration of Gateway Requests in milliseconds" + }, + "EventHubDroppedEvents": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Location", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of events skipped because of queue size limit reached" + }, + "EventHubRejectedEvents": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Location", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of rejected EventHub events (wrong configuration or unauthorized)" + }, + "EventHubSuccessfulEvents": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Location", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of successful EventHub events" + }, + "EventHubThrottledEvents": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Location", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of throttled EventHub events" + }, + "EventHubTimedoutEvents": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Location", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of timed out EventHub events" + }, + "EventHubTotalBytesSent": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "Location", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total size of EventHub events in bytes" + }, + "EventHubTotalEvents": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Location", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of events sent to EventHub" + }, + "EventHubTotalFailedEvents": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Location", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of failed EventHub events" + }, + "FailedRequests": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Location, Hostname", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of failures in gateway requests - Use multi-dimension request metric with GatewayResponseCodeCategory dimension instead" + }, + "NetworkConnectivity": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "Location, ResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Network Connectivity status of dependent resource types from API Management service" + }, + "OtherRequests": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Location, Hostname", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of other gateway requests - Use multi-dimension request metric with GatewayResponseCodeCategory dimension instead" + }, + "Requests": { + "Unit": "Count", + "Aggregation": "Total, Maximum, Minimum", + "Dimensions": "Location, Hostname, LastErrorReason, BackendResponseCode, GatewayResponseCode, BackendResponseCodeCategory, GatewayResponseCodeCategory", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Gateway request metrics with multiple dimensions" + }, + "SuccessfulRequests": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Location, Hostname", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of successful gateway requests - Use multi-dimension request metric with GatewayResponseCodeCategory dimension instead" + }, + "TotalRequests": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Location, Hostname", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of gateway requests - Use multi-dimension request metric with GatewayResponseCodeCategory dimension instead" + }, + "UnauthorizedRequests": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Location, Hostname", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of unauthorized gateway requests - Use multi-dimension request metric with GatewayResponseCodeCategory dimension instead" + }, + "WebSocketMessages": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "Location, Source, Destination", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of WebSocket messages based on selected source and destination" + } + }, + "microsoft.app/containerapps": { + "CoresQuotaUsed": { + "Unit": "Count", + "Aggregation": "Maximum, Minimum", + "Dimensions": "revisionName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of reserved cores for container app revisions" + }, + "Replicas": { + "Unit": "Count", + "Aggregation": "Average, Total, Maximum, Minimum", + "Dimensions": "revisionName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of replicas count of container app" + }, + "Requests": { + "Unit": "Count", + "Aggregation": "Average, Total, Maximum, Minimum", + "Dimensions": "revisionName, podName, statusCodeCategory, statusCode", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Requests processed" + }, + "RestartCount": { + "Unit": "Count", + "Aggregation": "Average, Total, Maximum, Minimum", + "Dimensions": "revisionName, podName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Restart count of container app replicas" + }, + "RxBytes": { + "Unit": "Bytes", + "Aggregation": "Average, Total, Maximum, Minimum", + "Dimensions": "revisionName, podName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Network received bytes" + }, + "TotalCoresQuotaUsed": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of total reserved cores for the container app" + }, + "TxBytes": { + "Unit": "Bytes", + "Aggregation": "Average, Total, Maximum, Minimum", + "Dimensions": "revisionName, podName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Network transmitted bytes" + }, + "UsageNanoCores": { + "Unit": "NanoCores", + "Aggregation": "Total, Average, Maximum, Minimum", + "Dimensions": "revisionName, podName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "CPU consumed by the container app, in nano cores. 1,000,000,000 nano cores = 1 core" + }, + "WorkingSetBytes": { + "Unit": "Bytes", + "Aggregation": "Total, Average, Maximum, Minimum", + "Dimensions": "revisionName, podName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Container App working set memory used in bytes." + } + }, + "microsoft.app/managedenvironments": { + "EnvCoresQuotaLimit": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The cores quota limit of managed environment" + }, + "EnvCoresQuotaUtilization": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The cores quota utilization of managed environment" + } + }, + "microsoft.appconfiguration/configurationstores": { + "DailyStorageUsage": { + "Unit": "Percent", + "Aggregation": "Minimum, Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total storage usage of the store in percentage. Updated at minimum every 24 hours." + }, + "HttpIncomingRequestCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "StatusCode, Authentication, Endpoint", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of incoming http requests." + }, + "HttpIncomingRequestDuration": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "StatusCode, Authentication, Endpoint", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Latency on an http request." + }, + "ReplicationLatency": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "Endpoint", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Latency of replication. Average time it takes for a replica to be consistent with current state." + }, + "ThrottledHttpRequestCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Endpoint", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Throttled http requests." + } + }, + "microsoft.appplatform/spring": { + "active-timer-count": { + "Unit": "Count", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of timers that are currently active" + }, + "alloc-rate": { + "Unit": "Bytes", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of bytes allocated in the managed heap" + }, + "AppCpuUsage": { + "Unit": "Percent", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The recent CPU usage for the app. This metric is being deprecated. Please use \"App CPU Usage\" with metric id \"PodCpuUsage\"." + }, + "assembly-count": { + "Unit": "Count", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of Assemblies Loaded" + }, + "cpu-usage": { + "Unit": "Percent", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "% time the process has utilized the CPU" + }, + "current-requests": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of requests in processing in the lifetime of the process" + }, + "exception-count": { + "Unit": "Count", + "Aggregation": "Total, Maximum, Minimum, Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of Exceptions" + }, + "failed-requests": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of failed requests in the lifetime of the process" + }, + "GatewayHttpServerRequestsMilliSecondsMax": { + "Unit": "Milliseconds", + "Aggregation": "Maximum, Average", + "Dimensions": "Pod, httpStatusCode, outcome, httpMethod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The max time of requests" + }, + "GatewayHttpServerRequestsMilliSecondsSum": { + "Unit": "Milliseconds", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "Pod, httpStatusCode, outcome, httpMethod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total time of requests" + }, + "GatewayHttpServerRequestsSecondsCount": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "Pod, httpStatusCode, outcome, httpMethod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of requests" + }, + "GatewayJvmGcLiveDataSizeBytes": { + "Unit": "Bytes", + "Aggregation": "Maximum, Average", + "Dimensions": "Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Size of old generation memory pool after a full GC" + }, + "GatewayJvmGcMaxDataSizeBytes": { + "Unit": "Bytes", + "Aggregation": "Maximum, Average", + "Dimensions": "Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Max size of old generation memory pool" + }, + "GatewayJvmGcMemoryAllocatedBytesTotal": { + "Unit": "Bytes", + "Aggregation": "Maximum, Average", + "Dimensions": "Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Incremented for an increase in the size of the young generation memory pool after one GC to before the next" + }, + "GatewayJvmGcMemoryPromotedBytesTotal": { + "Unit": "Bytes", + "Aggregation": "Maximum, Average", + "Dimensions": "Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of positive increases in the size of the old generation memory pool before GC to after GC" + }, + "GatewayJvmGcPauseSecondsCount": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "GC Pause Count" + }, + "GatewayJvmGcPauseSecondsMax": { + "Unit": "Seconds", + "Aggregation": "Maximum, Average", + "Dimensions": "Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "GC Pause Max Time" + }, + "GatewayJvmGcPauseSecondsSum": { + "Unit": "Seconds", + "Aggregation": "Total, Average", + "Dimensions": "Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "GC Pause Total Time" + }, + "GatewayJvmMemoryCommittedBytes": { + "Unit": "Bytes", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Memory assigned to JVM in bytes" + }, + "GatewayJvmMemoryUsedBytes": { + "Unit": "Bytes", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Memory Used in bytes" + }, + "GatewayProcessCpuUsage": { + "Unit": "Percent", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The recent CPU usage for the JVM process" + }, + "GatewayRatelimitThrottledCount": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of the throttled requests" + }, + "GatewaySystemCpuUsage": { + "Unit": "Percent", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The recent CPU usage for the whole system" + }, + "gc-heap-size": { + "Unit": "Count", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total heap size reported by the GC (MB)" + }, + "gen-0-gc-count": { + "Unit": "Count", + "Aggregation": "Total, Maximum, Minimum, Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of Gen 0 GCs" + }, + "gen-0-size": { + "Unit": "Bytes", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Gen 0 Heap Size" + }, + "gen-1-gc-count": { + "Unit": "Count", + "Aggregation": "Total, Maximum, Minimum, Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of Gen 1 GCs" + }, + "gen-1-size": { + "Unit": "Bytes", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Gen 1 Heap Size" + }, + "gen-2-gc-count": { + "Unit": "Count", + "Aggregation": "Total, Maximum, Minimum, Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of Gen 2 GCs" + }, + "gen-2-size": { + "Unit": "Bytes", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Gen 2 Heap Size" + }, + "IngressBytesReceived": { + "Unit": "Bytes", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "Hostname, HttpStatus", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of bytes received by Azure Spring Apps from the clients" + }, + "IngressBytesReceivedRate": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "Hostname, HttpStatus", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Bytes received per second by Azure Spring Apps from the clients" + }, + "IngressBytesSent": { + "Unit": "Bytes", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "Hostname, HttpStatus", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of bytes sent by Azure Spring Apps to the clients" + }, + "IngressBytesSentRate": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "Hostname, HttpStatus", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Bytes sent per second by Azure Spring Apps to the clients" + }, + "IngressFailedRequests": { + "Unit": "Count", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "Hostname, HttpStatus", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of failed requests by Azure Spring Apps from the clients" + }, + "IngressRequests": { + "Unit": "Count", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "Hostname, HttpStatus", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of requests by Azure Spring Apps from the clients" + }, + "IngressResponseStatus": { + "Unit": "Count", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "Hostname, HttpStatus", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "HTTP response status returned by Azure Spring Apps. The response status code distribution can be further categorized to show responses in 2xx, 3xx, 4xx, and 5xx categories" + }, + "IngressResponseTime": { + "Unit": "Seconds", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "Hostname, HttpStatus", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Http response time return by Azure Spring Apps" + }, + "jvm.gc.live.data.size": { + "Unit": "Bytes", + "Aggregation": "Maximum, Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Size of old generation memory pool after a full GC" + }, + "jvm.gc.max.data.size": { + "Unit": "Bytes", + "Aggregation": "Maximum, Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Max size of old generation memory pool" + }, + "jvm.gc.memory.allocated": { + "Unit": "Bytes", + "Aggregation": "Maximum, Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Incremented for an increase in the size of the young generation memory pool after one GC to before the next" + }, + "jvm.gc.memory.promoted": { + "Unit": "Bytes", + "Aggregation": "Maximum, Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of positive increases in the size of the old generation memory pool before GC to after GC" + }, + "jvm.gc.pause.total.count": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "GC Pause Count" + }, + "jvm.gc.pause.total.time": { + "Unit": "Milliseconds", + "Aggregation": "Total, Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "GC Pause Total Time" + }, + "jvm.memory.committed": { + "Unit": "Bytes", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Memory assigned to JVM in bytes" + }, + "jvm.memory.max": { + "Unit": "Bytes", + "Aggregation": "Maximum", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The maximum amount of memory in bytes that can be used for memory management" + }, + "jvm.memory.used": { + "Unit": "Bytes", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "App Memory Used in bytes" + }, + "loh-size": { + "Unit": "Bytes", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "LOH Heap Size" + }, + "monitor-lock-contention-count": { + "Unit": "Count", + "Aggregation": "Total, Maximum, Minimum, Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of times there were contention when trying to take the monitor lock" + }, + "PodCpuUsage": { + "Unit": "Percent", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The recent CPU usage for the app" + }, + "PodMemoryUsage": { + "Unit": "Percent", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The recent Memory usage for the app" + }, + "PodNetworkIn": { + "Unit": "Bytes", + "Aggregation": "Total, Maximum, Minimum, Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Cumulative count of bytes received in the app" + }, + "PodNetworkOut": { + "Unit": "Bytes", + "Aggregation": "Total, Maximum, Minimum, Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Cumulative count of bytes sent from the app" + }, + "process.cpu.usage": { + "Unit": "Percent", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The recent CPU usage for the JVM process" + }, + "Requests": { + "Unit": "Count", + "Aggregation": "Total, Maximum, Minimum, Average", + "Dimensions": "containerAppName, podName, statusCodeCategory, statusCode", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Requests processed" + }, + "requests-per-second": { + "Unit": "Count", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Request rate" + }, + "RestartCount": { + "Unit": "Count", + "Aggregation": "Total, Maximum, Minimum, Average", + "Dimensions": "containerAppName, podName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Restart count of Spring App" + }, + "RxBytes": { + "Unit": "Bytes", + "Aggregation": "Total, Maximum, Minimum, Average", + "Dimensions": "containerAppName, podName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Network received bytes" + }, + "system.cpu.usage": { + "Unit": "Percent", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The recent CPU usage for the whole system" + }, + "threadpool-completed-items-count": { + "Unit": "Count", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "ThreadPool Completed Work Items Count" + }, + "threadpool-queue-length": { + "Unit": "Count", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "ThreadPool Work Items Queue Length" + }, + "threadpool-thread-count": { + "Unit": "Count", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of ThreadPool Threads" + }, + "time-in-gc": { + "Unit": "Percent", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "% time in GC since the last GC" + }, + "tomcat.global.error": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Tomcat Global Error" + }, + "tomcat.global.received": { + "Unit": "Bytes", + "Aggregation": "Total, Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Tomcat Total Received Bytes" + }, + "tomcat.global.request.avg.time": { + "Unit": "Milliseconds", + "Aggregation": "Maximum, Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Tomcat Request Average Time" + }, + "tomcat.global.request.max": { + "Unit": "Milliseconds", + "Aggregation": "Maximum", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Tomcat Request Max Time" + }, + "tomcat.global.request.total.count": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Tomcat Request Total Count" + }, + "tomcat.global.request.total.time": { + "Unit": "Milliseconds", + "Aggregation": "Total, Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Tomcat Request Total Time" + }, + "tomcat.global.sent": { + "Unit": "Bytes", + "Aggregation": "Total, Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Tomcat Total Sent Bytes" + }, + "tomcat.sessions.active.current": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Tomcat Session Active Count" + }, + "tomcat.sessions.active.max": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Tomcat Session Max Active Count" + }, + "tomcat.sessions.alive.max": { + "Unit": "Milliseconds", + "Aggregation": "Maximum", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Tomcat Session Max Alive Time" + }, + "tomcat.sessions.created": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Tomcat Session Created Count" + }, + "tomcat.sessions.expired": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Tomcat Session Expired Count" + }, + "tomcat.sessions.rejected": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Tomcat Session Rejected Count" + }, + "tomcat.threads.config.max": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Tomcat Config Max Thread Count" + }, + "tomcat.threads.current": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Tomcat Current Thread Count" + }, + "total-requests": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of requests in the lifetime of the process" + }, + "TxBytes": { + "Unit": "Bytes", + "Aggregation": "Total, Maximum, Minimum, Average", + "Dimensions": "containerAppName, podName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Network transmitted bytes" + }, + "UsageNanoCores": { + "Unit": "NanoCores", + "Aggregation": "Total, Maximum, Minimum, Average", + "Dimensions": "containerAppName, podName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "CPU consumed by Spring App, in nano cores. 1,000,000,000 nano cores = 1 core" + }, + "working-set": { + "Unit": "Count", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "Deployment, AppName, Pod", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Amount of working set used by the process (MB)" + }, + "WorkingSetBytes": { + "Unit": "Bytes", + "Aggregation": "Total, Maximum, Minimum, Average", + "Dimensions": "containerAppName, podName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Spring App working set memory used in bytes." + } + }, + "microsoft.automation/automationaccounts": { + "HybridWorkerPing": { + "Unit": "Count", + "Aggregation": "Total, Average, Maximum, Minimum, Count", + "Dimensions": "HybridWorkerGroup, HybridWorker, HybridWorkerVersion", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of pings from the hybrid worker" + }, + "TotalJob": { + "Unit": "Count", + "Aggregation": "Total, Average, Maximum, Minimum, Count", + "Dimensions": "Runbook, Status", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of jobs" + }, + "TotalUpdateDeploymentMachineRuns": { + "Unit": "Count", + "Aggregation": "Total, Average, Maximum, Minimum, Count", + "Dimensions": "Status, TargetComputer, SoftwareUpdateConfigurationName, SoftwareUpdateConfigurationRunId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total software update deployment machine runs in a software update deployment run" + }, + "TotalUpdateDeploymentRuns": { + "Unit": "Count", + "Aggregation": "Total, Average, Maximum, Minimum, Count", + "Dimensions": "Status, SoftwareUpdateConfigurationName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total software update deployment runs" + } + }, + "microsoft.avs/privateclouds": { + "CapacityLatest": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "dsname", + "Time Grains": "PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The total capacity of disk in the datastore" + }, + "CpuUsageAverage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "clustername", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Percentage of Used CPU resources in Cluster" + }, + "DiskUsedPercentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "dsname", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Percent of available disk used in Datastore" + }, + "EffectiveMemAverage": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "clustername", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Total available amount of machine memory in cluster" + }, + "OverheadAverage": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "clustername", + "Time Grains": "PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Host physical memory consumed by the virtualization infrastructure" + }, + "TotalMbAverage": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "clustername", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Total memory in cluster" + }, + "UsageAverage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "clustername", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Memory usage as percentage of total configured or available memory" + }, + "UsedLatest": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "dsname", + "Time Grains": "PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The total amount of disk used in the datastore" + } + }, + "microsoft.azuresphere/catalogs": { + "DeviceEventsCount": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "DeviceId, EventCategory, EventClass, EventType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of all the events generated by an Azure Sphere device." + }, + "DeviceRequestsCount": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "DeviceId, OperationName, ResultType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of all the requests sent by an Azure Sphere device." + } + }, + "microsoft.azurestackhci/clusters": { + "Cluster CSVFS\\Avg. sec/Read": { + "Unit": "Seconds", + "Aggregation": "Minimum, Maximum, Average, Total", + "Dimensions": "ClusterName, ClusterNodeName, LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average latency of read operations from this volume." + }, + "Cluster CSVFS\\Avg. sec/Write": { + "Unit": "Seconds", + "Aggregation": "Minimum, Maximum, Average, Total", + "Dimensions": "ClusterName, ClusterNodeName, LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average latency of write operations to this volume." + }, + "Cluster CSVFS\\Read Bytes/sec": { + "Unit": "BytesPerSecond", + "Aggregation": "Minimum, Maximum, Average, Total, Count", + "Dimensions": "ClusterName, ClusterNodeName, LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Quantity of data read from this volume per second." + }, + "Cluster CSVFS\\Reads/sec": { + "Unit": "CountPerSecond", + "Aggregation": "Minimum, Maximum, Average, Total, Count", + "Dimensions": "ClusterName, ClusterNodeName, LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of read operations per second completed by this volume." + }, + "Cluster CSVFS\\Write Bytes/sec": { + "Unit": "BytesPerSecond", + "Aggregation": "Minimum, Maximum, Average, Total, Count", + "Dimensions": "ClusterName, ClusterNodeName, LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Quantity of data written to this volume per second." + }, + "Cluster CSVFS\\Writes/sec": { + "Unit": "CountPerSecond", + "Aggregation": "Minimum, Maximum, Average, Total, Count", + "Dimensions": "ClusterName, ClusterNodeName, LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of write operations per second completed by this volume." + }, + "Cluster Node Storage Degraded": { + "Unit": "Bytes", + "Aggregation": "Minimum, Maximum, Total, Count", + "Dimensions": "ClusterName, ClusterNodeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of failed or missing drives in the storage pool." + }, + "Clusternode CPU Usage Guest": { + "Unit": "Percent", + "Aggregation": "Minimum, Maximum, Total, Count", + "Dimensions": "ClusterName, ClusterNodeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of processor time used for guest (virtual machine) demand." + }, + "Clusternode CsvCache Read Hit": { + "Unit": "CountPerSecond", + "Aggregation": "Minimum, Maximum, Total, Count", + "Dimensions": "ClusterName, ClusterNodeName, LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Cache hit PerSecond for read operations." + }, + "Clusternode Csvcache Read Hitrate": { + "Unit": "Percent", + "Aggregation": "Minimum, Maximum, Total, Count", + "Dimensions": "ClusterName, ClusterNodeName, LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Cache hit rate for read operations." + }, + "Clusternode Csvcache Read Miss": { + "Unit": "CountPerSecond", + "Aggregation": "Minimum, Maximum, Total, Count", + "Dimensions": "ClusterName, ClusterNodeName, LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Cache missPerSecond for read operations." + }, + "ClusterNode Memory Usage": { + "Unit": "Percent", + "Aggregation": "Minimum, Maximum, Total, Count", + "Dimensions": "ClusterName, ClusterNodeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The allocated (not available) memory of the server." + }, + "Clusternode Memory Used": { + "Unit": "Bytes", + "Aggregation": "Minimum, Maximum", + "Dimensions": "ClusterName, ClusterNodeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The used memory of the server." + }, + "Hyper-V Dynamic Memory VM\\Current Pressure": { + "Unit": "Percent", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "ClusterName, ClusterNodeName, Instance, LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The ratio of memory demanded by the virtual machine over memory allocated to the virtual machine." + }, + "Hyper-V Dynamic Memory VM\\Guest Visible Physical Memory": { + "Unit": "Bytes", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "ClusterName, ClusterNodeName, Instance, LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total memory." + }, + "Hyper-V Hypervisor Logical Processor\\% Total Run Time": { + "Unit": "Percent", + "Aggregation": "Minimum, Maximum, Average, Total, Count", + "Dimensions": "ClusterName, ClusterNodeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The percentage of processor time that is not idle." + }, + "Hyper-V Hypervisor Root Virtual Processor\\% Guest Run Time": { + "Unit": "Percent", + "Aggregation": "Minimum, Maximum, Average, Total, Count", + "Dimensions": "ClusterName, ClusterNodeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of processor time used for host demand." + }, + "Hyper-V Virtual Network Adapter\\Bytes Received/sec": { + "Unit": "BitsPerSecond", + "Aggregation": "Minimum, Maximum, Average, Total, Count", + "Dimensions": "ClusterName, ClusterNodeName, Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Rate of data received by the virtual machine across all its virtual network adapters." + }, + "Hyper-V Virtual Network Adapter\\Bytes Sent/sec": { + "Unit": "BitsPerSecond", + "Aggregation": "Minimum, Maximum, Average, Total, Count", + "Dimensions": "ClusterName, ClusterNodeName, Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Rate of data sent by the virtual machine across all its virtual network adapters." + }, + "Hyper-V Virtual Network Adapter\\Bytes/sec": { + "Unit": "BitsPerSecond", + "Aggregation": "Minimum, Maximum, Average, Total, Count", + "Dimensions": "ClusterName, ClusterNodeName, Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total rate of data received or sent by the virtual machine across all its virtual network adapters." + }, + "Hyper-V Virtual Storage Device\\Latency": { + "Unit": "Seconds", + "Aggregation": "Minimum, Maximum, Average, Total", + "Dimensions": "ClusterName, ClusterNodeName, Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average latency of all operations to or from the virtual hard disk." + }, + "Hyper-V Virtual Storage Device\\Read Bytes/sec": { + "Unit": "BytesPerSecond", + "Aggregation": "Minimum, Maximum, Average, Total, Count", + "Dimensions": "ClusterName, ClusterNodeName, Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Quantity of data read from the virtual hard disk per second." + }, + "Hyper-V Virtual Storage Device\\Read Operations/Sec": { + "Unit": "CountPerSecond", + "Aggregation": "Minimum, Maximum, Average, Total, Count", + "Dimensions": "ClusterName, ClusterNodeName, Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of read operations per second completed by the virtual hard disk." + }, + "Hyper-V Virtual Storage Device\\Write Bytes/sec": { + "Unit": "BytesPerSecond", + "Aggregation": "Minimum, Maximum, Average, Total, Count", + "Dimensions": "ClusterName, ClusterNodeName, Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Quantity of data written to the virtual hard disk per second." + }, + "Hyper-V Virtual Storage Device\\Write Operations/Sec": { + "Unit": "CountPerSecond", + "Aggregation": "Minimum, Maximum, Average, Total, Count", + "Dimensions": "ClusterName, ClusterNodeName, Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of write operations per second completed by the virtual hard disk." + }, + "Memory\\Available Bytes": { + "Unit": "Bytes", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "ClusterName, ClusterNodeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The available memory of the server." + }, + "Netadapter Bandwidth Rdma Total": { + "Unit": "BytesPerSecond", + "Aggregation": "Minimum, Maximum, Total, Count", + "Dimensions": "ClusterName, ClusterNodeName, Instance, LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total rate of data received or sent over RDMA by the network adapter." + }, + "Network Adapter\\Bytes Received/sec": { + "Unit": "BytesPerSecond", + "Aggregation": "Minimum, Maximum, Average, Total, Count", + "Dimensions": "ClusterName, ClusterNodeName, Instance, LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Rate of data received by the network adapter" + }, + "Network Adapter\\Bytes Sent/sec": { + "Unit": "BytesPerSecond", + "Aggregation": "Minimum, Maximum, Average, Total, Count", + "Dimensions": "ClusterName, ClusterNodeName, Instance, LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Rate of data sent by the network adapter." + }, + "Network Adapter\\Bytes Total/sec": { + "Unit": "BytesPerSecond", + "Aggregation": "Minimum, Maximum, Average, Total, Count", + "Dimensions": "ClusterName, ClusterNodeName, Instance, LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total rate of data received or sent by the network adapter." + }, + "NUMA Node Memory\\Total MBytes": { + "Unit": "Bytes", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "ClusterName, ClusterNodeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total physical memory of the server." + }, + "Percentage Memory Guest": { + "Unit": "Percent", + "Aggregation": "Minimum, Maximum, Total, Count", + "Dimensions": "ClusterName, ClusterNodeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The memory allocated to guest (virtual machine) demand." + }, + "Percentage Memory Host": { + "Unit": "Percent", + "Aggregation": "Minimum, Maximum, Total, Count", + "Dimensions": "ClusterName, ClusterNodeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The memory allocated to host demand." + }, + "Physicaldisk Capacity Size Total": { + "Unit": "Bytes", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "ClusterName, ClusterNodeName, LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total storage capacity of the drive." + }, + "Physicaldisk Capacity Size Used": { + "Unit": "Bytes", + "Aggregation": "Minimum, Maximum, Average, Total, Count", + "Dimensions": "ClusterName, ClusterNodeName, LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The used storage capacity of the drive." + }, + "PhysicalDisk\\Avg. Disk sec/Read": { + "Unit": "Seconds", + "Aggregation": "Minimum, Maximum, Average, Total", + "Dimensions": "ClusterName, ClusterNodeName, LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average latency of read operations from the drive." + }, + "PhysicalDisk\\Avg. Disk sec/Transfer": { + "Unit": "Seconds", + "Aggregation": "Minimum, Maximum, Average, Total", + "Dimensions": "ClusterName, ClusterNodeName, LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average latency of all operations to or from the drive." + }, + "PhysicalDisk\\Avg. Disk sec/Write": { + "Unit": "Seconds", + "Aggregation": "Minimum, Maximum, Average, Total", + "Dimensions": "ClusterName, ClusterNodeName, LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average latency of write operations to the drive." + }, + "PhysicalDisk\\Disk Bytes/sec": { + "Unit": "BytesPerSecond", + "Aggregation": "Minimum, Maximum, Average, Total, Count", + "Dimensions": "ClusterName, ClusterNodeName, LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total quantity of data read from or written to the drive per second." + }, + "physicaldisk\\Disk Read Bytes/sec": { + "Unit": "BytesPerSecond", + "Aggregation": "Minimum, Maximum, Average, Total, Count", + "Dimensions": "ClusterName, ClusterNodeName, LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Quantity of data read from the drive per second." + }, + "physicaldisk\\disk reads/sec": { + "Unit": "CountPerSecond", + "Aggregation": "Minimum, Maximum, Average, Total, Count", + "Dimensions": "ClusterName, ClusterNodeName, LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of read operations completed by the drive." + }, + "physicaldisk\\disk transfers/sec": { + "Unit": "CountPerSecond", + "Aggregation": "Minimum, Maximum, Average, Total, Count", + "Dimensions": "ClusterName, ClusterNodeName, LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of read or write operations per second completed by the drive." + }, + "physicaldisk\\Disk Write Bytes/sec": { + "Unit": "BytesPerSecond", + "Aggregation": "Minimum, Maximum, Average, Total, Count", + "Dimensions": "ClusterName, ClusterNodeName, LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Quantity of data written to the drive per second." + }, + "physicaldisk\\disk writes/sec": { + "Unit": "CountPerSecond", + "Aggregation": "Minimum, Maximum, Average, Total, Count", + "Dimensions": "ClusterName, ClusterNodeName, LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of write operations completed by the drive." + }, + "RDMA Activity\\RDMA Inbound Bytes/sec": { + "Unit": "BytesPerSecond", + "Aggregation": "Minimum, Maximum, Average, Total, Count", + "Dimensions": "ClusterName, ClusterNodeName, Instance, LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Rate of data received over RDMA by the network adapter." + }, + "RDMA Activity\\RDMA Outbound Bytes/sec": { + "Unit": "BytesPerSecond", + "Aggregation": "Minimum, Maximum, Average, Total, Count", + "Dimensions": "ClusterName, ClusterNodeName, Instance, LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Rate of data sent over RDMA by the network adapter." + }, + "VHD IOPS Total": { + "Unit": "CountPerSecond", + "Aggregation": "Minimum, Maximum, Total, Count", + "Dimensions": "ClusterName, ClusterNodeName, Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of read or write operations per second completed by the virtual hard disk." + }, + "VHD Size Current": { + "Unit": "Bytes", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "ClusterName, ClusterNodeName, Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The current file size of the virtual hard disk, if dynamically expanding. If fixed, the series is not collected." + }, + "VHD Size Maximum": { + "Unit": "Bytes", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "ClusterName, ClusterNodeName, Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The maximum size of the virtual hard disk, if dynamically expanding. If fixed, the series is the size." + }, + "VHD Throughput Total": { + "Unit": "BytesPerSecond", + "Aggregation": "Minimum, Maximum, Total, Count", + "Dimensions": "ClusterName, ClusterNodeName, Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total quantity of data read from or written to the virtual hard disk per second." + }, + "VM Assigned Memory": { + "Unit": "Bytes", + "Aggregation": "Minimum, Maximum", + "Dimensions": "ClusterName, ClusterNodeName, Instance, LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The quantity of memory assigned to the virtual machine." + }, + "VM CPU Usage": { + "Unit": "Percent", + "Aggregation": "Minimum, Maximum, Total, Count", + "Dimensions": "ClusterName, ClusterNodeName, Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage the virtual machine is using of its host server's processor(s)." + }, + "VM Memory Available": { + "Unit": "Bytes", + "Aggregation": "Minimum, Maximum, Total, Count", + "Dimensions": "ClusterName, ClusterNodeName, Instance, LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The quantity of memory that remains available, of the amount assigned." + }, + "vm memory maximum": { + "Unit": "Bytes", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "ClusterName, ClusterNodeName, Instance, LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "If using dynamic memory, this is the maximum quantity of memory that may be assigned to the virtual machine." + }, + "vm memory minimum": { + "Unit": "Bytes", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "ClusterName, ClusterNodeName, Instance, LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "If using dynamic memory, this is the minimum quantity of memory that may be assigned to the virtual machine." + }, + "Vm Memory Startup": { + "Unit": "Bytes", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "ClusterName, ClusterNodeName, Instance, LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The quantity of memory required for the virtual machine to start." + }, + "VM Memory Used": { + "Unit": "Bytes", + "Aggregation": "Minimum, Maximum", + "Dimensions": "ClusterName, ClusterNodeName, Instance, LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The used memory." + }, + "Volume IOPS Total": { + "Unit": "CountPerSecond", + "Aggregation": "Minimum, Maximum, Total, Count", + "Dimensions": "ClusterName, ClusterNodeName, LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of read or write operations per second completed by this volume." + }, + "Volume Latency Average": { + "Unit": "Seconds", + "Aggregation": "Minimum, Maximum, Total", + "Dimensions": "ClusterName, ClusterNodeName, LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average latency of all operations to or from this volume." + }, + "volume size available": { + "Unit": "Bytes", + "Aggregation": "Minimum, Maximum, Average, Total, Count", + "Dimensions": "ClusterName, ClusterNodeName, LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The available storage capacity of the volume." + }, + "volume size total": { + "Unit": "Bytes", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "ClusterName, ClusterNodeName, LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total storage capacity of the volume." + }, + "Volume Throughput Total": { + "Unit": "BytesPerSecond", + "Aggregation": "Minimum, Maximum, Total, Count", + "Dimensions": "ClusterName, ClusterNodeName, LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total quantity of data read from or written to this volume per second." + } + }, + "microsoft.batch/batchaccounts": { + "CoreCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total number of dedicated cores in the batch account" + }, + "CreatingNodeCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of nodes being created" + }, + "IdleNodeCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of idle nodes" + }, + "JobDeleteCompleteEvent": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "jobId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of jobs that have been successfully deleted." + }, + "JobDeleteStartEvent": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "jobId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of jobs that have been requested to be deleted." + }, + "JobDisableCompleteEvent": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "jobId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of jobs that have been successfully disabled." + }, + "JobDisableStartEvent": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "jobId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of jobs that have been requested to be disabled." + }, + "JobStartEvent": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "jobId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of jobs that have been successfully started." + }, + "JobTerminateCompleteEvent": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "jobId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of jobs that have been successfully terminated." + }, + "JobTerminateStartEvent": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "jobId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of jobs that have been requested to be terminated." + }, + "LeavingPoolNodeCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of nodes leaving the Pool" + }, + "LowPriorityCoreCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total number of low-priority cores in the batch account" + }, + "OfflineNodeCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of offline nodes" + }, + "PoolCreateEvent": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "poolId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of pools that have been created" + }, + "PoolDeleteCompleteEvent": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "poolId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of pool deletes that have completed" + }, + "PoolDeleteStartEvent": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "poolId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of pool deletes that have started" + }, + "PoolResizeCompleteEvent": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "poolId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of pool resizes that have completed" + }, + "PoolResizeStartEvent": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "poolId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of pool resizes that have started" + }, + "PreemptedNodeCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of preempted nodes" + }, + "RebootingNodeCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of rebooting nodes" + }, + "ReimagingNodeCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of reimaging nodes" + }, + "RunningNodeCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of running nodes" + }, + "StartingNodeCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of nodes starting" + }, + "StartTaskFailedNodeCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of nodes where the Start Task has failed" + }, + "TaskCompleteEvent": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "poolId, jobId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of tasks that have completed" + }, + "TaskFailEvent": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "poolId, jobId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of tasks that have completed in a failed state" + }, + "TaskStartEvent": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "poolId, jobId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of tasks that have started" + }, + "TotalLowPriorityNodeCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total number of low-priority nodes in the batch account" + }, + "TotalNodeCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total number of dedicated nodes in the batch account" + }, + "UnusableNodeCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of unusable nodes" + }, + "WaitingForStartTaskNodeCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of nodes waiting for the Start Task to complete" + } + }, + "microsoft.bing/accounts": { + "BlockedCalls": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ApiName, ServingRegion, StatusCode", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of calls that exceeded the rate or quota limit" + }, + "ClientErrors": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ApiName, ServingRegion, StatusCode", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of calls with any client error (HTTP status code 4xx)" + }, + "DataIn": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "ApiName, ServingRegion, StatusCode", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Incoming request Content-Length in bytes" + }, + "DataOut": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "ApiName, ServingRegion, StatusCode", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Outgoing response Content-Length in bytes" + }, + "Latency": { + "Unit": "Milliseconds", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "ApiName, ServingRegion, StatusCode", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Latency in milliseconds" + }, + "ServerErrors": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ApiName, ServingRegion, StatusCode", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of calls with any server error (HTTP status code 5xx)" + }, + "SuccessfulCalls": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ApiName, ServingRegion, StatusCode", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of successful calls (HTTP status code 2xx)" + }, + "TotalCalls": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ApiName, ServingRegion, StatusCode", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of calls" + }, + "TotalErrors": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ApiName, ServingRegion, StatusCode", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of calls with any error (HTTP status code 4xx or 5xx)" + } + }, + "microsoft.botservice/botservices/channels": { + "RequestLatency": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "Operation, Authentication, Protocol, ResourceId, Region", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "How long it takes to get request response" + }, + "RequestsTraffic": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Operation, Authentication, Protocol, ResourceId, Region, StatusCode, StatusCodeClass, StatusText", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of requests within a given period of time" + } + }, + "microsoft.botservice/botservices/connections": { + "RequestLatency": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "Operation, Authentication, Protocol, ResourceId, Region", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "How long it takes to get request response" + }, + "RequestsTraffic": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Operation, Authentication, Protocol, ResourceId, Region, StatusCode, StatusCodeClass, StatusText", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of requests within a given period of time" + } + }, + "microsoft.botservice/botservices": { + "RequestLatency": { + "Unit": "Milliseconds", + "Aggregation": "Total", + "Dimensions": "Operation, Authentication, Protocol, DataCenter", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Time taken by the server to process the request" + }, + "RequestsTraffic": { + "Unit": "Percent", + "Aggregation": "Count", + "Dimensions": "Operation, Authentication, Protocol, StatusCode, StatusCodeClass, DataCenter", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of Requests Made" + } + }, + "microsoft.botservice/checknameavailability": { + "RequestLatency": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "Operation, Authentication, Protocol, ResourceId, Region", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "How long it takes to get request response" + }, + "RequestsTraffic": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Operation, Authentication, Protocol, ResourceId, Region, StatusCode, StatusCodeClass, StatusText", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of requests within a given period of time" + } + }, + "microsoft.botservice/hostsettings": { + "RequestLatency": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "Operation, Authentication, Protocol, ResourceId, Region", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "How long it takes to get request response" + }, + "RequestsTraffic": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Operation, Authentication, Protocol, ResourceId, Region, StatusCode, StatusCodeClass, StatusText", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of requests within a given period of time" + } + }, + "microsoft.botservice/listauthserviceproviders": { + "RequestLatency": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "Operation, Authentication, Protocol, ResourceId, Region", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "How long it takes to get request response" + }, + "RequestsTraffic": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Operation, Authentication, Protocol, ResourceId, Region, StatusCode, StatusCodeClass, StatusText", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of requests within a given period of time" + } + }, + "microsoft.botservice/listqnamakerendpointkeys": { + "RequestLatency": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "Operation, Authentication, Protocol, ResourceId, Region", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "How long it takes to get request response" + }, + "RequestsTraffic": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Operation, Authentication, Protocol, ResourceId, Region, StatusCode, StatusCodeClass, StatusText", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of requests within a given period of time" + } + }, + "microsoft.cache/redis": { + "allcachehits": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ShardId, Port, Primary", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of successful key lookups. For more details, see https://aka.ms/redis/metrics." + }, + "allcachemisses": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ShardId, Port, Primary", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of failed key lookups. For more details, see https://aka.ms/redis/metrics." + }, + "allcacheRead": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "ShardId, Port, Primary", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of data read from the cache in bytes per second. For more details, see https://aka.ms/redis/metrics." + }, + "allcacheWrite": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "ShardId, Port, Primary", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of data written to the cache in bytes per second. For more details, see https://aka.ms/redis/metrics." + }, + "allconnectedclients": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "ShardId, Port, Primary", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of client connections to the cache. For more details, see https://aka.ms/redis/metrics." + }, + "allConnectionsClosedPerSecond": { + "Unit": "CountPerSecond", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "ShardId, Primary, Ssl", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of instantaneous connections closed per second on the cache via port 6379 or 6380 (SSL). For more details, see https://aka.ms/redis/metrics." + }, + "allConnectionsCreatedPerSecond": { + "Unit": "CountPerSecond", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "ShardId, Primary, Ssl", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of instantaneous connections created per second on the cache via port 6379 or 6380 (SSL). For more details, see https://aka.ms/redis/metrics." + }, + "allevictedkeys": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ShardId, Port, Primary", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of items evicted from the cache. For more details, see https://aka.ms/redis/metrics." + }, + "allexpiredkeys": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ShardId, Port, Primary", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of items expired from the cache. For more details, see https://aka.ms/redis/metrics." + }, + "allgetcommands": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ShardId, Port, Primary", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of get operations from the cache. For more details, see https://aka.ms/redis/metrics." + }, + "alloperationsPerSecond": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "ShardId, Port, Primary", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of instantaneous operations per second executed on the cache. For more details, see https://aka.ms/redis/metrics." + }, + "allpercentprocessortime": { + "Unit": "Percent", + "Aggregation": "Maximum", + "Dimensions": "ShardId, Port, Primary", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The CPU utilization of the Azure Redis Cache server as a percentage. For more details, see https://aka.ms/redis/metrics." + }, + "allserverLoad": { + "Unit": "Percent", + "Aggregation": "Maximum", + "Dimensions": "ShardId, Port, Primary", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The percentage of cycles in which the Redis server is busy processing and not waiting idle for messages. For more details, see https://aka.ms/redis/metrics." + }, + "allsetcommands": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ShardId, Port, Primary", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of set operations to the cache. For more details, see https://aka.ms/redis/metrics." + }, + "alltotalcommandsprocessed": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ShardId, Port, Primary", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of commands processed by the cache server. For more details, see https://aka.ms/redis/metrics." + }, + "alltotalkeys": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "ShardId, Port, Primary", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of items in the cache. For more details, see https://aka.ms/redis/metrics." + }, + "allusedmemory": { + "Unit": "Bytes", + "Aggregation": "Maximum", + "Dimensions": "ShardId, Port, Primary", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of cache memory used for key/value pairs in the cache in MB. For more details, see https://aka.ms/redis/metrics." + }, + "allusedmemorypercentage": { + "Unit": "Percent", + "Aggregation": "Maximum", + "Dimensions": "ShardId, Port, Primary", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The percentage of cache memory used for key/value pairs. For more details, see https://aka.ms/redis/metrics." + }, + "allusedmemoryRss": { + "Unit": "Bytes", + "Aggregation": "Maximum", + "Dimensions": "ShardId, Port, Primary", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of cache memory used in MB, including fragmentation and metadata. For more details, see https://aka.ms/redis/metrics." + }, + "cachehits": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ShardId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of successful key lookups. For more details, see https://aka.ms/redis/metrics." + }, + "cachehits0": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of successful key lookups. For more details, see https://aka.ms/redis/metrics." + }, + "cachehits1": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of successful key lookups. For more details, see https://aka.ms/redis/metrics." + }, + "cachehits2": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of successful key lookups. For more details, see https://aka.ms/redis/metrics." + }, + "cachehits3": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of successful key lookups. For more details, see https://aka.ms/redis/metrics." + }, + "cachehits4": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of successful key lookups. For more details, see https://aka.ms/redis/metrics." + }, + "cachehits5": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of successful key lookups. For more details, see https://aka.ms/redis/metrics." + }, + "cachehits6": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of successful key lookups. For more details, see https://aka.ms/redis/metrics." + }, + "cachehits7": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of successful key lookups. For more details, see https://aka.ms/redis/metrics." + }, + "cachehits8": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of successful key lookups. For more details, see https://aka.ms/redis/metrics." + }, + "cachehits9": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of successful key lookups. For more details, see https://aka.ms/redis/metrics." + }, + "cacheLatency": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "ShardId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The latency to the cache in microseconds. For more details, see https://aka.ms/redis/metrics." + }, + "cachemisses": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ShardId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of failed key lookups. For more details, see https://aka.ms/redis/metrics." + }, + "cachemisses0": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of failed key lookups. For more details, see https://aka.ms/redis/metrics." + }, + "cachemisses1": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of failed key lookups. For more details, see https://aka.ms/redis/metrics." + }, + "cachemisses2": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of failed key lookups. For more details, see https://aka.ms/redis/metrics." + }, + "cachemisses3": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of failed key lookups. For more details, see https://aka.ms/redis/metrics." + }, + "cachemisses4": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of failed key lookups. For more details, see https://aka.ms/redis/metrics." + }, + "cachemisses5": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of failed key lookups. For more details, see https://aka.ms/redis/metrics." + }, + "cachemisses6": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of failed key lookups. For more details, see https://aka.ms/redis/metrics." + }, + "cachemisses7": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of failed key lookups. For more details, see https://aka.ms/redis/metrics." + }, + "cachemisses8": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of failed key lookups. For more details, see https://aka.ms/redis/metrics." + }, + "cachemisses9": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of failed key lookups. For more details, see https://aka.ms/redis/metrics." + }, + "cachemissrate": { + "Unit": "Percent", + "Aggregation": "Total", + "Dimensions": "ShardId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The % of get requests that miss. For more details, see https://aka.ms/redis/metrics." + }, + "cacheRead": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "ShardId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of data read from the cache in bytes per second. For more details, see https://aka.ms/redis/metrics." + }, + "cacheRead0": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of data read from the cache in bytes per second. For more details, see https://aka.ms/redis/metrics." + }, + "cacheRead1": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of data read from the cache in bytes per second. For more details, see https://aka.ms/redis/metrics." + }, + "cacheRead2": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of data read from the cache in bytes per second. For more details, see https://aka.ms/redis/metrics." + }, + "cacheRead3": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of data read from the cache in bytes per second. For more details, see https://aka.ms/redis/metrics." + }, + "cacheRead4": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of data read from the cache in bytes per second. For more details, see https://aka.ms/redis/metrics." + }, + "cacheRead5": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of data read from the cache in bytes per second. For more details, see https://aka.ms/redis/metrics." + }, + "cacheRead6": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of data read from the cache in bytes per second. For more details, see https://aka.ms/redis/metrics." + }, + "cacheRead7": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of data read from the cache in bytes per second. For more details, see https://aka.ms/redis/metrics." + }, + "cacheRead8": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of data read from the cache in bytes per second. For more details, see https://aka.ms/redis/metrics." + }, + "cacheRead9": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of data read from the cache in bytes per second. For more details, see https://aka.ms/redis/metrics." + }, + "cacheWrite": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "ShardId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of data written to the cache in bytes per second. For more details, see https://aka.ms/redis/metrics." + }, + "cacheWrite0": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of data written to the cache in bytes per second. For more details, see https://aka.ms/redis/metrics." + }, + "cacheWrite1": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of data written to the cache in bytes per second. For more details, see https://aka.ms/redis/metrics." + }, + "cacheWrite2": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of data written to the cache in bytes per second. For more details, see https://aka.ms/redis/metrics." + }, + "cacheWrite3": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of data written to the cache in bytes per second. For more details, see https://aka.ms/redis/metrics." + }, + "cacheWrite4": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of data written to the cache in bytes per second. For more details, see https://aka.ms/redis/metrics." + }, + "cacheWrite5": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of data written to the cache in bytes per second. For more details, see https://aka.ms/redis/metrics." + }, + "cacheWrite6": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of data written to the cache in bytes per second. For more details, see https://aka.ms/redis/metrics." + }, + "cacheWrite7": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of data written to the cache in bytes per second. For more details, see https://aka.ms/redis/metrics." + }, + "cacheWrite8": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of data written to the cache in bytes per second. For more details, see https://aka.ms/redis/metrics." + }, + "cacheWrite9": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of data written to the cache in bytes per second. For more details, see https://aka.ms/redis/metrics." + }, + "connectedclients": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "ShardId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of client connections to the cache. For more details, see https://aka.ms/redis/metrics." + }, + "connectedclients0": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of client connections to the cache. For more details, see https://aka.ms/redis/metrics." + }, + "connectedclients1": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of client connections to the cache. For more details, see https://aka.ms/redis/metrics." + }, + "connectedclients2": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of client connections to the cache. For more details, see https://aka.ms/redis/metrics." + }, + "connectedclients3": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of client connections to the cache. For more details, see https://aka.ms/redis/metrics." + }, + "connectedclients4": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of client connections to the cache. For more details, see https://aka.ms/redis/metrics." + }, + "connectedclients5": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of client connections to the cache. For more details, see https://aka.ms/redis/metrics." + }, + "connectedclients6": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of client connections to the cache. For more details, see https://aka.ms/redis/metrics." + }, + "connectedclients7": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of client connections to the cache. For more details, see https://aka.ms/redis/metrics." + }, + "connectedclients8": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of client connections to the cache. For more details, see https://aka.ms/redis/metrics." + }, + "connectedclients9": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of client connections to the cache. For more details, see https://aka.ms/redis/metrics." + }, + "ConnectedClientsUsingAADToken": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "ShardId, Port, Primary", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of client connections to the cache using AAD Token. For more details, see https://aka.ms/redis/metrics." + }, + "errors": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "ShardId, ErrorType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number errors that occured on the cache. For more details, see https://aka.ms/redis/metrics." + }, + "evictedkeys": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ShardId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of items evicted from the cache. For more details, see https://aka.ms/redis/metrics." + }, + "evictedkeys0": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of items evicted from the cache. For more details, see https://aka.ms/redis/metrics." + }, + "evictedkeys1": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of items evicted from the cache. For more details, see https://aka.ms/redis/metrics." + }, + "evictedkeys2": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of items evicted from the cache. For more details, see https://aka.ms/redis/metrics." + }, + "evictedkeys3": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of items evicted from the cache. For more details, see https://aka.ms/redis/metrics." + }, + "evictedkeys4": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of items evicted from the cache. For more details, see https://aka.ms/redis/metrics." + }, + "evictedkeys5": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of items evicted from the cache. For more details, see https://aka.ms/redis/metrics." + }, + "evictedkeys6": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of items evicted from the cache. For more details, see https://aka.ms/redis/metrics." + }, + "evictedkeys7": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of items evicted from the cache. For more details, see https://aka.ms/redis/metrics." + }, + "evictedkeys8": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of items evicted from the cache. For more details, see https://aka.ms/redis/metrics." + }, + "evictedkeys9": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of items evicted from the cache. For more details, see https://aka.ms/redis/metrics." + }, + "expiredkeys": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ShardId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of items expired from the cache. For more details, see https://aka.ms/redis/metrics." + }, + "expiredkeys0": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of items expired from the cache. For more details, see https://aka.ms/redis/metrics." + }, + "expiredkeys1": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of items expired from the cache. For more details, see https://aka.ms/redis/metrics." + }, + "expiredkeys2": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of items expired from the cache. For more details, see https://aka.ms/redis/metrics." + }, + "expiredkeys3": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of items expired from the cache. For more details, see https://aka.ms/redis/metrics." + }, + "expiredkeys4": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of items expired from the cache. For more details, see https://aka.ms/redis/metrics." + }, + "expiredkeys5": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of items expired from the cache. For more details, see https://aka.ms/redis/metrics." + }, + "expiredkeys6": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of items expired from the cache. For more details, see https://aka.ms/redis/metrics." + }, + "expiredkeys7": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of items expired from the cache. For more details, see https://aka.ms/redis/metrics." + }, + "expiredkeys8": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of items expired from the cache. For more details, see https://aka.ms/redis/metrics." + }, + "expiredkeys9": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of items expired from the cache. For more details, see https://aka.ms/redis/metrics." + }, + "GeoReplicationConnectivityLag": { + "Unit": "Seconds", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "ShardId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Time in seconds since last successful data synchronization with geo-primary cache. Value will continue to increase if the link status is down. For more details, see https://aka.ms/redis/georeplicationmetrics." + }, + "GeoReplicationDataSyncOffset": { + "Unit": "Bytes", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "ShardId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Approximate amount of data in bytes that needs to be synchronized to geo-secondary cache. For more details, see https://aka.ms/redis/georeplicationmetrics." + }, + "GeoReplicationFullSyncEventFinished": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "ShardId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Fired on completion of a full synchronization event between geo-replicated caches. This metric reports 0 most of the time because geo-replication uses partial resynchronizations for any new data added after the initial full synchronization. For more details, see https://aka.ms/redis/georeplicationmetrics." + }, + "GeoReplicationFullSyncEventStarted": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "ShardId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Fired on initiation of a full synchronization event between geo-replicated caches. This metric reports 0 most of the time because geo-replication uses partial resynchronizations for any new data added after the initial full synchronization. For more details, see https://aka.ms/redis/georeplicationmetrics." + }, + "GeoReplicationHealthy": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "ShardId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The health status of geo-replication link. 1 if healthy and 0 if disconnected or unhealthy. For more details, see https://aka.ms/redis/georeplicationmetrics." + }, + "getcommands": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ShardId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of get operations from the cache. For more details, see https://aka.ms/redis/metrics." + }, + "getcommands0": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of get operations from the cache. For more details, see https://aka.ms/redis/metrics." + }, + "getcommands1": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of get operations from the cache. For more details, see https://aka.ms/redis/metrics." + }, + "getcommands2": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of get operations from the cache. For more details, see https://aka.ms/redis/metrics." + }, + "getcommands3": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of get operations from the cache. For more details, see https://aka.ms/redis/metrics." + }, + "getcommands4": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of get operations from the cache. For more details, see https://aka.ms/redis/metrics." + }, + "getcommands5": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of get operations from the cache. For more details, see https://aka.ms/redis/metrics." + }, + "getcommands6": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of get operations from the cache. For more details, see https://aka.ms/redis/metrics." + }, + "getcommands7": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of get operations from the cache. For more details, see https://aka.ms/redis/metrics." + }, + "getcommands8": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of get operations from the cache. For more details, see https://aka.ms/redis/metrics." + }, + "getcommands9": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of get operations from the cache. For more details, see https://aka.ms/redis/metrics." + }, + "LatencyP99": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Measures the worst-case (99th percentile) latency of server-side commands in microseconds. Measured by issuing PING commands from the load balancer to the Redis server and tracking the time to respond." + }, + "operationsPerSecond": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "ShardId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of instantaneous operations per second executed on the cache. For more details, see https://aka.ms/redis/metrics." + }, + "operationsPerSecond0": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of instantaneous operations per second executed on the cache. For more details, see https://aka.ms/redis/metrics." + }, + "operationsPerSecond1": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of instantaneous operations per second executed on the cache. For more details, see https://aka.ms/redis/metrics." + }, + "operationsPerSecond2": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of instantaneous operations per second executed on the cache. For more details, see https://aka.ms/redis/metrics." + }, + "operationsPerSecond3": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of instantaneous operations per second executed on the cache. For more details, see https://aka.ms/redis/metrics." + }, + "operationsPerSecond4": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of instantaneous operations per second executed on the cache. For more details, see https://aka.ms/redis/metrics." + }, + "operationsPerSecond5": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of instantaneous operations per second executed on the cache. For more details, see https://aka.ms/redis/metrics." + }, + "operationsPerSecond6": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of instantaneous operations per second executed on the cache. For more details, see https://aka.ms/redis/metrics." + }, + "operationsPerSecond7": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of instantaneous operations per second executed on the cache. For more details, see https://aka.ms/redis/metrics." + }, + "operationsPerSecond8": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of instantaneous operations per second executed on the cache. For more details, see https://aka.ms/redis/metrics." + }, + "operationsPerSecond9": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of instantaneous operations per second executed on the cache. For more details, see https://aka.ms/redis/metrics." + }, + "percentProcessorTime": { + "Unit": "Percent", + "Aggregation": "Maximum", + "Dimensions": "ShardId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The CPU utilization of the Azure Redis Cache server as a percentage. For more details, see https://aka.ms/redis/metrics." + }, + "percentProcessorTime0": { + "Unit": "Percent", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The CPU utilization of the Azure Redis Cache server as a percentage. For more details, see https://aka.ms/redis/metrics." + }, + "percentProcessorTime1": { + "Unit": "Percent", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The CPU utilization of the Azure Redis Cache server as a percentage. For more details, see https://aka.ms/redis/metrics." + }, + "percentProcessorTime2": { + "Unit": "Percent", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The CPU utilization of the Azure Redis Cache server as a percentage. For more details, see https://aka.ms/redis/metrics." + }, + "percentProcessorTime3": { + "Unit": "Percent", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The CPU utilization of the Azure Redis Cache server as a percentage. For more details, see https://aka.ms/redis/metrics." + }, + "percentProcessorTime4": { + "Unit": "Percent", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The CPU utilization of the Azure Redis Cache server as a percentage. For more details, see https://aka.ms/redis/metrics." + }, + "percentProcessorTime5": { + "Unit": "Percent", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The CPU utilization of the Azure Redis Cache server as a percentage. For more details, see https://aka.ms/redis/metrics." + }, + "percentProcessorTime6": { + "Unit": "Percent", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The CPU utilization of the Azure Redis Cache server as a percentage. For more details, see https://aka.ms/redis/metrics." + }, + "percentProcessorTime7": { + "Unit": "Percent", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The CPU utilization of the Azure Redis Cache server as a percentage. For more details, see https://aka.ms/redis/metrics." + }, + "percentProcessorTime8": { + "Unit": "Percent", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The CPU utilization of the Azure Redis Cache server as a percentage. For more details, see https://aka.ms/redis/metrics." + }, + "percentProcessorTime9": { + "Unit": "Percent", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The CPU utilization of the Azure Redis Cache server as a percentage. For more details, see https://aka.ms/redis/metrics." + }, + "serverLoad": { + "Unit": "Percent", + "Aggregation": "Maximum", + "Dimensions": "ShardId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The percentage of cycles in which the Redis server is busy processing and not waiting idle for messages. For more details, see https://aka.ms/redis/metrics." + }, + "serverLoad0": { + "Unit": "Percent", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The percentage of cycles in which the Redis server is busy processing and not waiting idle for messages. For more details, see https://aka.ms/redis/metrics." + }, + "serverLoad1": { + "Unit": "Percent", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The percentage of cycles in which the Redis server is busy processing and not waiting idle for messages. For more details, see https://aka.ms/redis/metrics." + }, + "serverLoad2": { + "Unit": "Percent", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The percentage of cycles in which the Redis server is busy processing and not waiting idle for messages. For more details, see https://aka.ms/redis/metrics." + }, + "serverLoad3": { + "Unit": "Percent", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The percentage of cycles in which the Redis server is busy processing and not waiting idle for messages. For more details, see https://aka.ms/redis/metrics." + }, + "serverLoad4": { + "Unit": "Percent", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The percentage of cycles in which the Redis server is busy processing and not waiting idle for messages. For more details, see https://aka.ms/redis/metrics." + }, + "serverLoad5": { + "Unit": "Percent", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The percentage of cycles in which the Redis server is busy processing and not waiting idle for messages. For more details, see https://aka.ms/redis/metrics." + }, + "serverLoad6": { + "Unit": "Percent", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The percentage of cycles in which the Redis server is busy processing and not waiting idle for messages. For more details, see https://aka.ms/redis/metrics." + }, + "serverLoad7": { + "Unit": "Percent", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The percentage of cycles in which the Redis server is busy processing and not waiting idle for messages. For more details, see https://aka.ms/redis/metrics." + }, + "serverLoad8": { + "Unit": "Percent", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The percentage of cycles in which the Redis server is busy processing and not waiting idle for messages. For more details, see https://aka.ms/redis/metrics." + }, + "serverLoad9": { + "Unit": "Percent", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The percentage of cycles in which the Redis server is busy processing and not waiting idle for messages. For more details, see https://aka.ms/redis/metrics." + }, + "setcommands": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ShardId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of set operations to the cache. For more details, see https://aka.ms/redis/metrics." + }, + "setcommands0": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of set operations to the cache. For more details, see https://aka.ms/redis/metrics." + }, + "setcommands1": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of set operations to the cache. For more details, see https://aka.ms/redis/metrics." + }, + "setcommands2": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of set operations to the cache. For more details, see https://aka.ms/redis/metrics." + }, + "setcommands3": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of set operations to the cache. For more details, see https://aka.ms/redis/metrics." + }, + "setcommands4": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of set operations to the cache. For more details, see https://aka.ms/redis/metrics." + }, + "setcommands5": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of set operations to the cache. For more details, see https://aka.ms/redis/metrics." + }, + "setcommands6": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of set operations to the cache. For more details, see https://aka.ms/redis/metrics." + }, + "setcommands7": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of set operations to the cache. For more details, see https://aka.ms/redis/metrics." + }, + "setcommands8": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of set operations to the cache. For more details, see https://aka.ms/redis/metrics." + }, + "setcommands9": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of set operations to the cache. For more details, see https://aka.ms/redis/metrics." + }, + "totalcommandsprocessed": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ShardId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of commands processed by the cache server. For more details, see https://aka.ms/redis/metrics." + }, + "totalcommandsprocessed0": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of commands processed by the cache server. For more details, see https://aka.ms/redis/metrics." + }, + "totalcommandsprocessed1": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of commands processed by the cache server. For more details, see https://aka.ms/redis/metrics." + }, + "totalcommandsprocessed2": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of commands processed by the cache server. For more details, see https://aka.ms/redis/metrics." + }, + "totalcommandsprocessed3": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of commands processed by the cache server. For more details, see https://aka.ms/redis/metrics." + }, + "totalcommandsprocessed4": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of commands processed by the cache server. For more details, see https://aka.ms/redis/metrics." + }, + "totalcommandsprocessed5": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of commands processed by the cache server. For more details, see https://aka.ms/redis/metrics." + }, + "totalcommandsprocessed6": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of commands processed by the cache server. For more details, see https://aka.ms/redis/metrics." + }, + "totalcommandsprocessed7": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of commands processed by the cache server. For more details, see https://aka.ms/redis/metrics." + }, + "totalcommandsprocessed8": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of commands processed by the cache server. For more details, see https://aka.ms/redis/metrics." + }, + "totalcommandsprocessed9": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of commands processed by the cache server. For more details, see https://aka.ms/redis/metrics." + }, + "totalkeys": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "ShardId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of items in the cache. For more details, see https://aka.ms/redis/metrics." + }, + "totalkeys0": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of items in the cache. For more details, see https://aka.ms/redis/metrics." + }, + "totalkeys1": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of items in the cache. For more details, see https://aka.ms/redis/metrics." + }, + "totalkeys2": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of items in the cache. For more details, see https://aka.ms/redis/metrics." + }, + "totalkeys3": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of items in the cache. For more details, see https://aka.ms/redis/metrics." + }, + "totalkeys4": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of items in the cache. For more details, see https://aka.ms/redis/metrics." + }, + "totalkeys5": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of items in the cache. For more details, see https://aka.ms/redis/metrics." + }, + "totalkeys6": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of items in the cache. For more details, see https://aka.ms/redis/metrics." + }, + "totalkeys7": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of items in the cache. For more details, see https://aka.ms/redis/metrics." + }, + "totalkeys8": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of items in the cache. For more details, see https://aka.ms/redis/metrics." + }, + "totalkeys9": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of items in the cache. For more details, see https://aka.ms/redis/metrics." + }, + "usedmemory": { + "Unit": "Bytes", + "Aggregation": "Maximum", + "Dimensions": "ShardId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of cache memory used for key/value pairs in the cache in MB. For more details, see https://aka.ms/redis/metrics." + }, + "usedmemory0": { + "Unit": "Bytes", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of cache memory used for key/value pairs in the cache in MB. For more details, see https://aka.ms/redis/metrics." + }, + "usedmemory1": { + "Unit": "Bytes", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of cache memory used for key/value pairs in the cache in MB. For more details, see https://aka.ms/redis/metrics." + }, + "usedmemory2": { + "Unit": "Bytes", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of cache memory used for key/value pairs in the cache in MB. For more details, see https://aka.ms/redis/metrics." + }, + "usedmemory3": { + "Unit": "Bytes", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of cache memory used for key/value pairs in the cache in MB. For more details, see https://aka.ms/redis/metrics." + }, + "usedmemory4": { + "Unit": "Bytes", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of cache memory used for key/value pairs in the cache in MB. For more details, see https://aka.ms/redis/metrics." + }, + "usedmemory5": { + "Unit": "Bytes", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of cache memory used for key/value pairs in the cache in MB. For more details, see https://aka.ms/redis/metrics." + }, + "usedmemory6": { + "Unit": "Bytes", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of cache memory used for key/value pairs in the cache in MB. For more details, see https://aka.ms/redis/metrics." + }, + "usedmemory7": { + "Unit": "Bytes", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of cache memory used for key/value pairs in the cache in MB. For more details, see https://aka.ms/redis/metrics." + }, + "usedmemory8": { + "Unit": "Bytes", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of cache memory used for key/value pairs in the cache in MB. For more details, see https://aka.ms/redis/metrics." + }, + "usedmemory9": { + "Unit": "Bytes", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of cache memory used for key/value pairs in the cache in MB. For more details, see https://aka.ms/redis/metrics." + }, + "usedmemorypercentage": { + "Unit": "Percent", + "Aggregation": "Maximum", + "Dimensions": "ShardId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The percentage of cache memory used for key/value pairs. For more details, see https://aka.ms/redis/metrics." + }, + "usedmemoryRss": { + "Unit": "Bytes", + "Aggregation": "Maximum", + "Dimensions": "ShardId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of cache memory used in MB, including fragmentation and metadata. For more details, see https://aka.ms/redis/metrics." + }, + "usedmemoryRss0": { + "Unit": "Bytes", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of cache memory used in MB, including fragmentation and metadata. For more details, see https://aka.ms/redis/metrics." + }, + "usedmemoryRss1": { + "Unit": "Bytes", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of cache memory used in MB, including fragmentation and metadata. For more details, see https://aka.ms/redis/metrics." + }, + "usedmemoryRss2": { + "Unit": "Bytes", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of cache memory used in MB, including fragmentation and metadata. For more details, see https://aka.ms/redis/metrics." + }, + "usedmemoryRss3": { + "Unit": "Bytes", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of cache memory used in MB, including fragmentation and metadata. For more details, see https://aka.ms/redis/metrics." + }, + "usedmemoryRss4": { + "Unit": "Bytes", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of cache memory used in MB, including fragmentation and metadata. For more details, see https://aka.ms/redis/metrics." + }, + "usedmemoryRss5": { + "Unit": "Bytes", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of cache memory used in MB, including fragmentation and metadata. For more details, see https://aka.ms/redis/metrics." + }, + "usedmemoryRss6": { + "Unit": "Bytes", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of cache memory used in MB, including fragmentation and metadata. For more details, see https://aka.ms/redis/metrics." + }, + "usedmemoryRss7": { + "Unit": "Bytes", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of cache memory used in MB, including fragmentation and metadata. For more details, see https://aka.ms/redis/metrics." + }, + "usedmemoryRss8": { + "Unit": "Bytes", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of cache memory used in MB, including fragmentation and metadata. For more details, see https://aka.ms/redis/metrics." + }, + "usedmemoryRss9": { + "Unit": "Bytes", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of cache memory used in MB, including fragmentation and metadata. For more details, see https://aka.ms/redis/metrics." + } + }, + "microsoft.cache/redisenterprise": { + "cachehits": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT1H", + "DS Export": "Yes", + "Description": "The number of successful key lookups. For more details, see https://aka.ms/redis/enterprise/metrics." + }, + "cacheLatency": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "InstanceId", + "Time Grains": "PT5M, PT1H", + "DS Export": "Yes", + "Description": "The latency to the cache in microseconds. For more details, see https://aka.ms/redis/enterprise/metrics." + }, + "cachemisses": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "InstanceId", + "Time Grains": "PT5M, PT1H", + "DS Export": "Yes", + "Description": "The number of failed key lookups. For more details, see https://aka.ms/redis/enterprise/metrics." + }, + "cacheRead": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "InstanceId", + "Time Grains": "PT5M, PT1H", + "DS Export": "Yes", + "Description": "The amount of data read from the cache in Megabytes per second (MB/s). For more details, see https://aka.ms/redis/enterprise/metrics." + }, + "cacheWrite": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "InstanceId", + "Time Grains": "PT5M, PT1H", + "DS Export": "Yes", + "Description": "The amount of data written to the cache in Megabytes per second (MB/s). For more details, see https://aka.ms/redis/enterprise/metrics." + }, + "connectedclients": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "InstanceId", + "Time Grains": "PT5M, PT1H", + "DS Export": "Yes", + "Description": "The number of client connections to the cache. For more details, see https://aka.ms/redis/enterprise/metrics." + }, + "errors": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "InstanceId, ErrorType", + "Time Grains": "PT5M, PT1H", + "DS Export": "Yes", + "Description": "The number errors that occured on the cache. For more details, see https://aka.ms/redis/enterprise/metrics." + }, + "evictedkeys": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT1H", + "DS Export": "Yes", + "Description": "The number of items evicted from the cache. For more details, see https://aka.ms/redis/enterprise/metrics." + }, + "expiredkeys": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT1H", + "DS Export": "Yes", + "Description": "The number of items expired from the cache. For more details, see https://aka.ms/redis/enterprise/metrics." + }, + "geoReplicationHealthy": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT1H", + "DS Export": "Yes", + "Description": "The health of geo replication in an Active Geo-Replication group. 0 represents Unhealthy and 1 represents Healthy. For more details, see https://aka.ms/redis/enterprise/metrics." + }, + "getcommands": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT1H", + "DS Export": "Yes", + "Description": "The number of get operations from the cache. For more details, see https://aka.ms/redis/enterprise/metrics." + }, + "operationsPerSecond": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT1H", + "DS Export": "Yes", + "Description": "The number of instantaneous operations per second executed on the cache. For more details, see https://aka.ms/redis/enterprise/metrics." + }, + "percentProcessorTime": { + "Unit": "Percent", + "Aggregation": "Maximum", + "Dimensions": "InstanceId", + "Time Grains": "PT5M, PT1H", + "DS Export": "Yes", + "Description": "The CPU utilization of the Azure Redis Cache server as a percentage. For more details, see https://aka.ms/redis/enterprise/metrics." + }, + "serverLoad": { + "Unit": "Percent", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT1H", + "DS Export": "Yes", + "Description": "The percentage of cycles in which the Redis server is busy processing and not waiting idle for messages. For more details, see https://aka.ms/redis/enterprise/metrics." + }, + "setcommands": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT1H", + "DS Export": "Yes", + "Description": "The number of set operations to the cache. For more details, see https://aka.ms/redis/enterprise/metrics." + }, + "totalcommandsprocessed": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT1H", + "DS Export": "Yes", + "Description": "The total number of commands processed by the cache server. For more details, see https://aka.ms/redis/enterprise/metrics." + }, + "totalkeys": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT1H", + "DS Export": "Yes", + "Description": "The total number of items in the cache. For more details, see https://aka.ms/redis/enterprise/metrics." + }, + "usedmemory": { + "Unit": "Bytes", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT1H", + "DS Export": "Yes", + "Description": "The amount of cache memory used for key/value pairs in the cache in MB. For more details, see https://aka.ms/redis/enterprise/metrics." + }, + "usedmemorypercentage": { + "Unit": "Percent", + "Aggregation": "Maximum", + "Dimensions": "InstanceId", + "Time Grains": "PT5M, PT1H", + "DS Export": "Yes", + "Description": "The percentage of cache memory used for key/value pairs. For more details, see https://aka.ms/redis/enterprise/metrics." + } + }, + "microsoft.cdn/cdnwebapplicationfirewallpolicies": { + "WebApplicationFirewallRequestCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "PolicyName, RuleName, Action", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The number of client requests processed by the Web Application Firewall" + } + }, + "microsoft.cdn/profiles": { + "ByteHitRatio": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "Endpoint", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "This is the ratio of the total bytes served from the cache compared to the total response bytes" + }, + "OriginHealthPercentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "Origin, OriginGroup", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The percentage of successful health probes from AFDX to backends." + }, + "OriginLatency": { + "Unit": "MilliSeconds", + "Aggregation": "Average", + "Dimensions": "Origin, Endpoint", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The time calculated from when the request was sent by AFDX edge to the backend until AFDX received the last response byte from the backend." + }, + "OriginRequestCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "HttpStatus, HttpStatusGroup, Origin, Endpoint", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The number of requests sent from AFDX to origin." + }, + "Percentage4XX": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "Endpoint, ClientRegion, ClientCountry", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The percentage of all the client requests for which the response status code is 4XX" + }, + "Percentage5XX": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "Endpoint, ClientRegion, ClientCountry", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The percentage of all the client requests for which the response status code is 5XX" + }, + "RequestCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "HttpStatus, HttpStatusGroup, ClientRegion, ClientCountry, Endpoint", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The number of client requests served by the HTTP/S proxy" + }, + "RequestSize": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "HttpStatus, HttpStatusGroup, ClientRegion, ClientCountry, Endpoint", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The number of bytes sent as requests from clients to AFDX." + }, + "ResponseSize": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "HttpStatus, HttpStatusGroup, ClientRegion, ClientCountry, Endpoint", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The number of bytes sent as responses from HTTP/S proxy to clients" + }, + "TotalLatency": { + "Unit": "MilliSeconds", + "Aggregation": "Average", + "Dimensions": "HttpStatus, HttpStatusGroup, ClientRegion, ClientCountry, Endpoint", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The time calculated from when the client request was received by the HTTP/S proxy until the client acknowledged the last response byte from the HTTP/S proxy" + }, + "WebApplicationFirewallRequestCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "PolicyName, RuleName, Action", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The number of client requests processed by the Web Application Firewall" + } + }, + "microsoft.classiccompute/domainnames/slots/roles": { + "Disk Read Bytes/Sec": { + "Unit": "BytesPerSecond", + "Aggregation": "Average", + "Dimensions": "RoleInstanceId", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Average bytes read from disk during monitoring period." + }, + "Disk Read Operations/Sec": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "RoleInstanceId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Disk Read IOPS." + }, + "Disk Write Bytes/Sec": { + "Unit": "BytesPerSecond", + "Aggregation": "Average", + "Dimensions": "RoleInstanceId", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Average bytes written to disk during monitoring period." + }, + "Disk Write Operations/Sec": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "RoleInstanceId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Disk Write IOPS." + }, + "Network In": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "RoleInstanceId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of bytes received on all network interfaces by the Virtual Machine(s) (Incoming Traffic)." + }, + "Network Out": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "RoleInstanceId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of bytes out on all network interfaces by the Virtual Machine(s) (Outgoing Traffic)." + }, + "Percentage CPU": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "RoleInstanceId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The percentage of allocated compute units that are currently in use by the Virtual Machine(s)." + } + }, + "microsoft.classiccompute/virtualmachines": { + "Disk Read Bytes/Sec": { + "Unit": "BytesPerSecond", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Average bytes read from disk during monitoring period." + }, + "Disk Read Operations/Sec": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Disk Read IOPS." + }, + "Disk Write Bytes/Sec": { + "Unit": "BytesPerSecond", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Average bytes written to disk during monitoring period." + }, + "Disk Write Operations/Sec": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Disk Write IOPS." + }, + "Network In": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of bytes received on all network interfaces by the Virtual Machine(s) (Incoming Traffic)." + }, + "Network Out": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of bytes out on all network interfaces by the Virtual Machine(s) (Outgoing Traffic)." + }, + "Percentage CPU": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The percentage of allocated compute units that are currently in use by the Virtual Machine(s)." + } + }, + "microsoft.classicstorage/storageaccounts/blobservices": { + "Availability": { + "Unit": "Percent", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The percentage of availability for the storage service or the specified API operation. Availability is calculated by taking the TotalBillableRequests value and dividing it by the number of applicable requests, including those that produced unexpected errors. All unexpected errors result in reduced availability for the storage service or the specified API operation." + }, + "BlobCapacity": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "BlobType, Tier", + "Time Grains": "PT1H", + "DS Export": "No", + "Description": "The amount of storage used by the storage account's Blob service in bytes." + }, + "BlobCount": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "BlobType, Tier", + "Time Grains": "PT1H", + "DS Export": "No", + "Description": "The number of Blob in the storage account's Blob service." + }, + "ContainerCount": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1H", + "DS Export": "No", + "Description": "The number of containers in the storage account's Blob service." + }, + "Egress": { + "Unit": "Bytes", + "Aggregation": "Total, Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of egress data, in bytes. This number includes egress from an external client into Azure Storage as well as egress within Azure. As a result, this number does not reflect billable egress." + }, + "IndexCapacity": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1H", + "DS Export": "No", + "Description": "The amount of storage used by ADLS Gen2 (Hierarchical) Index in bytes." + }, + "Ingress": { + "Unit": "Bytes", + "Aggregation": "Total, Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of ingress data, in bytes. This number includes ingress from an external client into Azure Storage as well as ingress within Azure." + }, + "SuccessE2ELatency": { + "Unit": "Milliseconds", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The end-to-end latency of successful requests made to a storage service or the specified API operation, in milliseconds. This value includes the required processing time within Azure Storage to read the request, send the response, and receive acknowledgment of the response." + }, + "SuccessServerLatency": { + "Unit": "Milliseconds", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The latency used by Azure Storage to process a successful request, in milliseconds. This value does not include the network latency specified in SuccessE2ELatency." + }, + "Transactions": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ResponseType, GeoType, ApiName, Authentication", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of requests made to a storage service or the specified API operation. This number includes successful and failed requests, as well as requests which produced errors. Use ResponseType dimension for the number of different type of response." + } + }, + "microsoft.classicstorage/storageaccounts/fileservices": { + "Availability": { + "Unit": "Percent", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication, FileShare", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The percentage of availability for the storage service or the specified API operation. Availability is calculated by taking the TotalBillableRequests value and dividing it by the number of applicable requests, including those that produced unexpected errors. All unexpected errors result in reduced availability for the storage service or the specified API operation." + }, + "Egress": { + "Unit": "Bytes", + "Aggregation": "Total, Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication, FileShare", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of egress data, in bytes. This number includes egress from an external client into Azure Storage as well as egress within Azure. As a result, this number does not reflect billable egress." + }, + "FileCapacity": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "FileShare", + "Time Grains": "PT1H", + "DS Export": "No", + "Description": "The amount of storage used by the storage account's File service in bytes." + }, + "FileCount": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "FileShare", + "Time Grains": "PT1H", + "DS Export": "No", + "Description": "The number of file in the storage account's File service." + }, + "FileShareCount": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1H", + "DS Export": "No", + "Description": "The number of file shares in the storage account's File service." + }, + "FileShareQuota": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "FileShare", + "Time Grains": "PT1H", + "DS Export": "No", + "Description": "The upper limit on the amount of storage that can be used by Azure Files Service in bytes." + }, + "FileShareSnapshotCount": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "FileShare", + "Time Grains": "PT1H", + "DS Export": "No", + "Description": "The number of snapshots present on the share in storage account's Files Service." + }, + "FileShareSnapshotSize": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "FileShare", + "Time Grains": "PT1H", + "DS Export": "No", + "Description": "The amount of storage used by the snapshots in storage account's File service in bytes." + }, + "Ingress": { + "Unit": "Bytes", + "Aggregation": "Total, Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication, FileShare", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of ingress data, in bytes. This number includes ingress from an external client into Azure Storage as well as ingress within Azure." + }, + "SuccessE2ELatency": { + "Unit": "Milliseconds", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication, FileShare", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The end-to-end latency of successful requests made to a storage service or the specified API operation, in milliseconds. This value includes the required processing time within Azure Storage to read the request, send the response, and receive acknowledgment of the response." + }, + "SuccessServerLatency": { + "Unit": "Milliseconds", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication, FileShare", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The latency used by Azure Storage to process a successful request, in milliseconds. This value does not include the network latency specified in SuccessE2ELatency." + }, + "Transactions": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ResponseType, GeoType, ApiName, Authentication, FileShare", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of requests made to a storage service or the specified API operation. This number includes successful and failed requests, as well as requests which produced errors. Use ResponseType dimension for the number of different type of response." + } + }, + "microsoft.classicstorage/storageaccounts": { + "Availability": { + "Unit": "Percent", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The percentage of availability for the storage service or the specified API operation. Availability is calculated by taking the TotalBillableRequests value and dividing it by the number of applicable requests, including those that produced unexpected errors. All unexpected errors result in reduced availability for the storage service or the specified API operation." + }, + "Egress": { + "Unit": "Bytes", + "Aggregation": "Total, Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of egress data, in bytes. This number includes egress from an external client into Azure Storage as well as egress within Azure. As a result, this number does not reflect billable egress." + }, + "Ingress": { + "Unit": "Bytes", + "Aggregation": "Total, Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of ingress data, in bytes. This number includes ingress from an external client into Azure Storage as well as ingress within Azure." + }, + "SuccessE2ELatency": { + "Unit": "Milliseconds", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The end-to-end latency of successful requests made to a storage service or the specified API operation, in milliseconds. This value includes the required processing time within Azure Storage to read the request, send the response, and receive acknowledgment of the response." + }, + "SuccessServerLatency": { + "Unit": "Milliseconds", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The latency used by Azure Storage to process a successful request, in milliseconds. This value does not include the network latency specified in SuccessE2ELatency." + }, + "Transactions": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ResponseType, GeoType, ApiName, Authentication", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of requests made to a storage service or the specified API operation. This number includes successful and failed requests, as well as requests which produced errors. Use ResponseType dimension for the number of different type of response." + }, + "UsedCapacity": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1H", + "DS Export": "No", + "Description": "Account used capacity" + } + }, + "microsoft.classicstorage/storageaccounts/queueservices": { + "Availability": { + "Unit": "Percent", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The percentage of availability for the storage service or the specified API operation. Availability is calculated by taking the TotalBillableRequests value and dividing it by the number of applicable requests, including those that produced unexpected errors. All unexpected errors result in reduced availability for the storage service or the specified API operation." + }, + "Egress": { + "Unit": "Bytes", + "Aggregation": "Total, Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of egress data, in bytes. This number includes egress from an external client into Azure Storage as well as egress within Azure. As a result, this number does not reflect billable egress." + }, + "Ingress": { + "Unit": "Bytes", + "Aggregation": "Total, Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of ingress data, in bytes. This number includes ingress from an external client into Azure Storage as well as ingress within Azure." + }, + "QueueCapacity": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1H", + "DS Export": "Yes", + "Description": "The amount of storage used by the storage account's Queue service in bytes." + }, + "QueueCount": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1H", + "DS Export": "Yes", + "Description": "The number of queue in the storage account's Queue service." + }, + "QueueMessageCount": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1H", + "DS Export": "Yes", + "Description": "The approximate number of queue messages in the storage account's Queue service." + }, + "SuccessE2ELatency": { + "Unit": "Milliseconds", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The end-to-end latency of successful requests made to a storage service or the specified API operation, in milliseconds. This value includes the required processing time within Azure Storage to read the request, send the response, and receive acknowledgment of the response." + }, + "SuccessServerLatency": { + "Unit": "Milliseconds", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The latency used by Azure Storage to process a successful request, in milliseconds. This value does not include the network latency specified in SuccessE2ELatency." + }, + "Transactions": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ResponseType, GeoType, ApiName, Authentication", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of requests made to a storage service or the specified API operation. This number includes successful and failed requests, as well as requests which produced errors. Use ResponseType dimension for the number of different type of response." + } + }, + "microsoft.classicstorage/storageaccounts/tableservices": { + "Availability": { + "Unit": "Percent", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The percentage of availability for the storage service or the specified API operation. Availability is calculated by taking the TotalBillableRequests value and dividing it by the number of applicable requests, including those that produced unexpected errors. All unexpected errors result in reduced availability for the storage service or the specified API operation." + }, + "Egress": { + "Unit": "Bytes", + "Aggregation": "Total, Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of egress data, in bytes. This number includes egress from an external client into Azure Storage as well as egress within Azure. As a result, this number does not reflect billable egress." + }, + "Ingress": { + "Unit": "Bytes", + "Aggregation": "Total, Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of ingress data, in bytes. This number includes ingress from an external client into Azure Storage as well as ingress within Azure." + }, + "SuccessE2ELatency": { + "Unit": "Milliseconds", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The end-to-end latency of successful requests made to a storage service or the specified API operation, in milliseconds. This value includes the required processing time within Azure Storage to read the request, send the response, and receive acknowledgment of the response." + }, + "SuccessServerLatency": { + "Unit": "Milliseconds", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The latency used by Azure Storage to process a successful request, in milliseconds. This value does not include the network latency specified in SuccessE2ELatency." + }, + "TableCapacity": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1H", + "DS Export": "No", + "Description": "The amount of storage used by the storage account's Table service in bytes." + }, + "TableCount": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1H", + "DS Export": "No", + "Description": "The number of table in the storage account's Table service." + }, + "TableEntityCount": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1H", + "DS Export": "No", + "Description": "The number of table entities in the storage account's Table service." + }, + "Transactions": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ResponseType, GeoType, ApiName, Authentication", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of requests made to a storage service or the specified API operation. This number includes successful and failed requests, as well as requests which produced errors. Use ResponseType dimension for the number of different type of response." + } + }, + "microsoft.cloudtest/hostedpools": { + "Allocated": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "PoolId, SKU, Images, ProviderName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Resources that are allocated" + }, + "AllocationDurationMs": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "PoolId, Type, ResourceRequestType, Image", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average time to allocate requests (ms)" + }, + "Count": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "RequestType, Status, PoolId, Type, ErrorCode, FailureStage", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of requests in last dump" + }, + "NotReady": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "PoolId, SKU, Images, ProviderName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Resources that are not ready to be used" + }, + "PendingReimage": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "PoolId, SKU, Images, ProviderName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Resources that are pending reimage" + }, + "PendingReturn": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "PoolId, SKU, Images, ProviderName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Resources that are pending return" + }, + "Provisioned": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "PoolId, SKU, Images, ProviderName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Resources that are provisioned" + }, + "Ready": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "PoolId, SKU, Images, ProviderName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Resources that are ready to be used" + }, + "Starting": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "PoolId, SKU, Images, ProviderName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Resources that are starting" + }, + "Total": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "PoolId, SKU, Images, ProviderName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total Number of Resources" + } + }, + "microsoft.cloudtest/pools": { + "Allocated": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "PoolId, SKU, Images, ProviderName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Resources that are allocated" + }, + "AllocationDurationMs": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "PoolId, Type, ResourceRequestType, Image", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average time to allocate requests (ms)" + }, + "Count": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "RequestType, Status, PoolId, Type, ErrorCode, FailureStage", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of requests in last dump" + }, + "NotReady": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "PoolId, SKU, Images, ProviderName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Resources that are not ready to be used" + }, + "PendingReimage": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "PoolId, SKU, Images, ProviderName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Resources that are pending reimage" + }, + "PendingReturn": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "PoolId, SKU, Images, ProviderName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Resources that are pending return" + }, + "Provisioned": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "PoolId, SKU, Images, ProviderName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Resources that are provisioned" + }, + "Ready": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "PoolId, SKU, Images, ProviderName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Resources that are ready to be used" + }, + "Starting": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "PoolId, SKU, Images, ProviderName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Resources that are starting" + }, + "Total": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "PoolId, SKU, Images, ProviderName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total Number of Resources" + } + }, + "microsoft.clusterstor/nodes": { + "TotalCapacityAvailable": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "filesystem_name, category, system", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The total capacity available in lustre file system" + }, + "TotalCapacityUsed": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "filesystem_name, category, system", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The total capacity used in lustre file system" + }, + "TotalRead": { + "Unit": "BytesPerSecond", + "Aggregation": "Average", + "Dimensions": "filesystem_name, category, system", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The total lustre file system read per second" + }, + "TotalWrite": { + "Unit": "BytesPerSecond", + "Aggregation": "Average", + "Dimensions": "filesystem_name, category, system", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The total lustre file system write per second" + } + }, + "microsoft.codesigning/codesigningaccounts": { + "SignCompleted": { + "Unit": "Count", + "Aggregation": "Count, Sum", + "Dimensions": "CertType, Region, TenantId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Completed Sign Request" + } + }, + "microsoft.cognitiveservices/accounts": { + "ActionFeatureIdOccurrences": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "FeatureId, Mode, RunId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of times each action feature appears." + }, + "ActionFeaturesPerEvent": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Mode, RunId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average number of action features per event." + }, + "ActionIdOccurrences": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ActionId, Mode, RunId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of times each action appears." + }, + "ActionNamespacesPerEvent": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Mode, RunId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average number of action namespaces per event." + }, + "ActionsPerEvent": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Mode, RunId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of actions per event." + }, + "AudioSecondsTranscribed": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ApiName, FeatureName, UsageChannel, Region", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of seconds transcribed" + }, + "AudioSecondsTranslated": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ApiName, FeatureName, UsageChannel, Region", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of seconds translated" + }, + "BaselineEstimatorOverallReward": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Mode, RunId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Baseline Estimator Overall Reward." + }, + "BaselineEstimatorSlotReward": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "SlotId, SlotIndex, Mode, RunId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Baseline Estimator Reward by slot." + }, + "BaselineRandomEstimatorOverallReward": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Mode, RunId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Baseline Random Estimator Overall Reward." + }, + "BaselineRandomEstimatorSlotReward": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "SlotId, SlotIndex, Mode, RunId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Baseline Random Estimator Reward by slot." + }, + "BaselineRandomEventCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Mode, RunId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Estimation for baseline random event count." + }, + "BaselineRandomReward": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Mode, RunId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Estimation for baseline random reward." + }, + "BlockedCalls": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ApiName, OperationName, Region, RatelimitKey", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of calls that exceeded rate or quota limit." + }, + "CarnegieInferenceCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Region, Modality, Category, Language, SeverityLevel, UseCustomList", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inference Count of Carnegie Frontdoor Service" + }, + "CharactersTrained": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ApiName, OperationName, Region", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of characters trained." + }, + "CharactersTranslated": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ApiName, OperationName, Region", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of characters in incoming text request." + }, + "ClientErrors": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ApiName, OperationName, Region, RatelimitKey", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of calls with client side error (HTTP response code 4xx)." + }, + "ComputerVisionTransactions": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ApiName, FeatureName, UsageChannel, Region", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of Computer Vision Transactions" + }, + "ContentSafetyImageAnalyzeRequestCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ApiVersion", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of calls for image moderation." + }, + "ContentSafetyTextAnalyzeRequestCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ApiVersion", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of calls for text moderation." + }, + "ContextFeatureIdOccurrences": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "FeatureId, Mode, RunId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of times each context feature appears." + }, + "ContextFeaturesPerEvent": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Mode, RunId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of context features per event." + }, + "ContextNamespacesPerEvent": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Mode, RunId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of context namespaces per event." + }, + "CustomVisionTrainingTime": { + "Unit": "Seconds", + "Aggregation": "Total", + "Dimensions": "ApiName, FeatureName, UsageChannel, Region", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Custom Vision training time" + }, + "CustomVisionTransactions": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ApiName, FeatureName, UsageChannel, Region", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of Custom Vision prediction transactions" + }, + "DataIn": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "ApiName, OperationName, Region", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Size of incoming data in bytes." + }, + "DataOut": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "ApiName, OperationName, Region", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Size of outgoing data in bytes." + }, + "DocumentCharactersTranslated": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ApiName, FeatureName, UsageChannel, Region", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of characters in document translation request." + }, + "DocumentCustomCharactersTranslated": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ApiName, FeatureName, UsageChannel, Region", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of characters in custom document translation request." + }, + "FaceImagesTrained": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ApiName, FeatureName, UsageChannel, Region", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of images trained. 1,000 images trained per transaction." + }, + "FacesStored": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ApiName, FeatureName, UsageChannel, Region", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of faces stored, prorated daily. The number of faces stored is reported daily." + }, + "FaceTransactions": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ApiName, FeatureName, UsageChannel, Region", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of API calls made to Face service" + }, + "FeatureCardinality_Action": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "FeatureId, Mode, RunId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Feature Cardinality based on Action." + }, + "FeatureCardinality_Context": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "FeatureId, Mode, RunId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Feature Cardinality based on Context." + }, + "FeatureCardinality_Slot": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "FeatureId, Mode, RunId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Feature Cardinality based on Slot." + }, + "FineTunedTrainingHours": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ApiName, ModelDeploymentName, FeatureName, UsageChannel, Region", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of Training Hours Processed on an OpenAI FineTuned Model" + }, + "GeneratedTokens": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ApiName, ModelDeploymentName, FeatureName, UsageChannel, Region", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of Generated Tokens from an OpenAI Model" + }, + "ImagesStored": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ApiName, FeatureName, UsageChannel, Region", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of Custom Vision images stored." + }, + "Latency": { + "Unit": "MilliSeconds", + "Aggregation": "Average", + "Dimensions": "ApiName, OperationName, Region, RatelimitKey", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Latency in milliseconds." + }, + "LearnedEvents": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IsMatchBaseline, Mode, RunId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of Learned Events." + }, + "LUISSpeechRequests": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ApiName, FeatureName, UsageChannel, Region", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of LUIS speech to intent understanding requests" + }, + "LUISTextRequests": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ApiName, FeatureName, UsageChannel, Region", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of LUIS text requests" + }, + "MatchedRewards": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Mode, RunId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of Matched Rewards." + }, + "NonActivatedEvents": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Mode, RunId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of skipped events." + }, + "NumberOfSlots": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Mode, RunId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of slots per event." + }, + "NumberofSpeakerProfiles": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ApiName, FeatureName, UsageChannel, Region", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of speaker profiles enrolled. Prorated hourly." + }, + "ObservedRewards": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Mode, RunId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of Observed Rewards." + }, + "OnlineEstimatorOverallReward": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Mode, RunId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Online Estimator Overall Reward." + }, + "OnlineEstimatorSlotReward": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "SlotId, SlotIndex, Mode, RunId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Online Estimator Reward by slot." + }, + "OnlineEventCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Mode, RunId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Estimation for online event count." + }, + "OnlineReward": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Mode, RunId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Estimation for online reward." + }, + "ProcessedCharacters": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ApiName, FeatureName, UsageChannel, Region", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of Characters processed by Immersive Reader." + }, + "ProcessedHealthTextRecords": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ApiName, FeatureName, UsageChannel, Region", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of health text records processed" + }, + "ProcessedImages": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ApiName, FeatureName, UsageChannel, Region", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of images processed" + }, + "ProcessedPages": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ApiName, FeatureName, UsageChannel, Region", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of pages processed" + }, + "ProcessedPromptTokens": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ApiName, ModelDeploymentName, FeatureName, UsageChannel, Region", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of Prompt Tokens Processed on an OpenAI Model" + }, + "ProcessedTextRecords": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ApiName, FeatureName, UsageChannel, Region", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of Text Records." + }, + "QuestionAnsweringTextRecords": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ApiName, FeatureName, UsageChannel, Region", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of text records processed" + }, + "Ratelimit": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Region, RatelimitKey", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The current ratelimit of the ratelimit key." + }, + "Reward": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "BaselineAction, ChosenActionId, MatchesBaseline, NonDefaultReward, Mode, RunId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average reward per event." + }, + "ServerErrors": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ApiName, OperationName, Region, RatelimitKey", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of calls with service internal error (HTTP response code 5xx)." + }, + "SlotFeatureIdOccurrences": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "FeatureId, Mode, RunId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of times each slot feature appears." + }, + "SlotFeaturesPerEvent": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Mode, RunId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average number of slot features per event." + }, + "SlotIdOccurrences": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "SlotId, SlotIndex, Mode, RunId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of times each slot appears." + }, + "SlotNamespacesPerEvent": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Mode, RunId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average number of slot namespaces per event." + }, + "SlotReward": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "BaselineActionId, ChosenActionId, MatchesBaseline, NonDefaultReward, SlotId, SlotIndex, Mode, RunId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Reward per slot." + }, + "SpeakerRecognitionTransactions": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ApiName, FeatureName, UsageChannel, Region", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of speaker recognition transactions" + }, + "SpeechModelHostingHours": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ApiName, FeatureName, UsageChannel, Region", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of speech model hosting hours" + }, + "SpeechSessionDuration": { + "Unit": "Seconds", + "Aggregation": "Total", + "Dimensions": "ApiName, OperationName, Region", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total duration of speech session in seconds." + }, + "SuccessfulCalls": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ApiName, OperationName, Region, RatelimitKey", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of successful calls." + }, + "SuccessRate": { + "Unit": "Percent", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "ApiName, OperationName, Region, RatelimitKey", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Availability percentage with the following calculation: (Total Calls - Server Errors)/Total Calls. Server Errors include any HTTP responses >=500." + }, + "SynthesizedCharacters": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ApiName, FeatureName, UsageChannel, Region", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of Characters." + }, + "TextCharactersTranslated": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ApiName, FeatureName, UsageChannel, Region", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of characters in incoming text translation request." + }, + "TextCustomCharactersTranslated": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ApiName, FeatureName, UsageChannel, Region", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of characters in incoming custom text translation request." + }, + "TextTrainedCharacters": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ApiName, FeatureName, UsageChannel, Region", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of characters trained using text translation." + }, + "TokenTransaction": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ApiName, ModelDeploymentName, FeatureName, UsageChannel, Region", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of Inference Tokens Processed on an OpenAI Model" + }, + "TotalCalls": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ApiName, OperationName, Region, RatelimitKey", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of calls." + }, + "TotalErrors": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ApiName, OperationName, Region, RatelimitKey", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of calls with error response (HTTP response code 4xx or 5xx)." + }, + "TotalEvents": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Mode, RunId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of events." + }, + "TotalTokenCalls": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ApiName, OperationName, Region", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of token calls." + }, + "TotalTransactions": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of transactions." + }, + "UserBaselineEventCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Mode, RunId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Estimation for user defined baseline event count." + }, + "UserBaselineReward": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Mode, RunId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Estimation for user defined baseline reward." + }, + "VoiceModelHostingHours": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ApiName, FeatureName, UsageChannel, Region", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of Hours." + }, + "VoiceModelTrainingMinutes": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ApiName, FeatureName, UsageChannel, Region", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of Minutes." + } + }, + "microsoft.communication/communicationservices": { + "APIRequestAuthentication": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "Operation, StatusCode, StatusCodeClass", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Count of all requests against the Communication Services Authentication endpoint." + }, + "APIRequestCallAutomation": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "Operation, StatusCode, StatusCodeClass, ApiVersion", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of all requests against the Communication Call Automation endpoint." + }, + "APIRequestCallRecording": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "Operation, StatusCode, StatusCodeClass", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of all requests against the Communication Services Call Recording endpoint." + }, + "APIRequestChat": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "Operation, StatusCode, StatusCodeClass", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of all requests against the Communication Services Chat endpoint." + }, + "APIRequestNetworkTraversal": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "Operation, StatusCode, StatusCodeClass", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Count of all requests against the Communication Services Network Traversal endpoint." + }, + "ApiRequestRooms": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "Operation, StatusCode, StatusCodeClass", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of all requests against the Communication Services Rooms endpoint." + }, + "ApiRequestRouter": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "OperationName, StatusCode, StatusCodeSubClass, ApiVersion", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of all requests against the Communication Services Job Router endpoint." + }, + "ApiRequests": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "Operation, StatusCode, StatusCodeClass, StatusCodeReason", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Email Communication Services API request metric for the data-plane API surface." + }, + "APIRequestSMS": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "Operation, StatusCode, StatusCodeClass, ErrorCode, NumberType, Country, OptAction", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of all requests against the Communication Services SMS endpoint." + }, + "DeliveryStatusUpdate": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "MessageStatus, Result, SmtpStatusCode, EnhancedSmtpStatusCode, SenderDomain, IsHardBounce", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Email Communication Services message delivery results." + }, + "UserEngagement": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "EngagementType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Email Communication Services user engagement metrics." + } + }, + "microsoft.compute/cloudservices": { + "Available Memory Bytes": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "RoleInstanceId, RoleId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Amount of physical memory, in bytes, immediately available for allocation to a process or for system use in the Virtual Machine" + }, + "Disk Read Bytes": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "RoleInstanceId, RoleId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Bytes read from disk during monitoring period" + }, + "Disk Read Operations/Sec": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "RoleInstanceId, RoleId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Disk Read IOPS" + }, + "Disk Write Bytes": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "RoleInstanceId, RoleId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Bytes written to disk during monitoring period" + }, + "Disk Write Operations/Sec": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "RoleInstanceId, RoleId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Disk Write IOPS" + }, + "Network In Total": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "RoleInstanceId, RoleId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of bytes received on all network interfaces by the Virtual Machine(s) (Incoming Traffic)" + }, + "Network Out Total": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "RoleInstanceId, RoleId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of bytes out on all network interfaces by the Virtual Machine(s) (Outgoing Traffic)" + }, + "Percentage CPU": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "RoleInstanceId, RoleId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The percentage of allocated compute units that are currently in use by the Virtual Machine(s)" + } + }, + "microsoft.compute/cloudservices/roles": { + "Available Memory Bytes": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "RoleInstanceId, RoleId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Amount of physical memory, in bytes, immediately available for allocation to a process or for system use in the Virtual Machine" + }, + "Disk Read Bytes": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "RoleInstanceId, RoleId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Bytes read from disk during monitoring period" + }, + "Disk Read Operations/Sec": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "RoleInstanceId, RoleId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Disk Read IOPS" + }, + "Disk Write Bytes": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "RoleInstanceId, RoleId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Bytes written to disk during monitoring period" + }, + "Disk Write Operations/Sec": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "RoleInstanceId, RoleId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Disk Write IOPS" + }, + "Network In Total": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "RoleInstanceId, RoleId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of bytes received on all network interfaces by the Virtual Machine(s) (Incoming Traffic)" + }, + "Network Out Total": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "RoleInstanceId, RoleId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of bytes out on all network interfaces by the Virtual Machine(s) (Outgoing Traffic)" + }, + "Percentage CPU": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "RoleInstanceId, RoleId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The percentage of allocated compute units that are currently in use by the Virtual Machine(s)" + } + }, + "microsoft.compute/disks": { + "Composite Disk Read Bytes/sec": { + "Unit": "BytesPerSecond", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Bytes/sec read from disk during monitoring period, please note, this metric is in preview and is subject to change before becoming generally available" + }, + "Composite Disk Read Operations/sec": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of read IOs performed on a disk during monitoring period, please note, this metric is in preview and is subject to change before becoming generally available" + }, + "Composite Disk Write Bytes/sec": { + "Unit": "BytesPerSecond", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Bytes/sec written to disk during monitoring period, please note, this metric is in preview and is subject to change before becoming generally available" + }, + "Composite Disk Write Operations/sec": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of Write IOs performed on a disk during monitoring period, please note, this metric is in preview and is subject to change before becoming generally available" + }, + "DiskPaidBurstIOPS": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The accumulated operations of burst transactions used for disks with on-demand burst enabled. Emitted on an hour interval" + } + }, + "microsoft.compute/virtualmachines": { + "Available Memory Bytes": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Amount of physical memory, in bytes, immediately available for allocation to a process or for system use in the Virtual Machine" + }, + "CPU Credits Consumed": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of credits consumed by the Virtual Machine. Only available on B-series burstable VMs" + }, + "CPU Credits Remaining": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of credits available to burst. Only available on B-series burstable VMs" + }, + "Data Disk Bandwidth Consumed Percentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of data disk bandwidth consumed per minute. Only available on VM series that support premium storage." + }, + "Data Disk IOPS Consumed Percentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of data disk I/Os consumed per minute. Only available on VM series that support premium storage." + }, + "Data Disk Max Burst Bandwidth": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Maximum bytes per second throughput Data Disk can achieve with bursting" + }, + "Data Disk Max Burst IOPS": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Maximum IOPS Data Disk can achieve with bursting" + }, + "Data Disk Queue Depth": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Data Disk Queue Depth(or Queue Length)" + }, + "Data Disk Read Bytes/sec": { + "Unit": "BytesPerSecond", + "Aggregation": "Average", + "Dimensions": "LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Bytes/Sec read from a single disk during monitoring period" + }, + "Data Disk Read Operations/Sec": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Read IOPS from a single disk during monitoring period" + }, + "Data Disk Target Bandwidth": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Baseline bytes per second throughput Data Disk can achieve without bursting" + }, + "Data Disk Target IOPS": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Baseline IOPS Data Disk can achieve without bursting" + }, + "Data Disk Used Burst BPS Credits Percentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of Data Disk burst bandwidth credits used so far" + }, + "Data Disk Used Burst IO Credits Percentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of Data Disk burst I/O credits used so far" + }, + "Data Disk Write Bytes/sec": { + "Unit": "BytesPerSecond", + "Aggregation": "Average", + "Dimensions": "LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Bytes/Sec written to a single disk during monitoring period" + }, + "Data Disk Write Operations/Sec": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Write IOPS from a single disk during monitoring period" + }, + "Disk Read Bytes": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Bytes read from disk during monitoring period" + }, + "Disk Read Operations/Sec": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Disk Read IOPS" + }, + "Disk Write Bytes": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Bytes written to disk during monitoring period" + }, + "Disk Write Operations/Sec": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Disk Write IOPS" + }, + "Inbound Flows": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound Flows are number of current flows in the inbound direction (traffic going into the VM)" + }, + "Inbound Flows Maximum Creation Rate": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The maximum creation rate of inbound flows (traffic going into the VM)" + }, + "Network In": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of billable bytes received on all network interfaces by the Virtual Machine(s) (Incoming Traffic) (Deprecated)" + }, + "Network In Total": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of bytes received on all network interfaces by the Virtual Machine(s) (Incoming Traffic)" + }, + "Network Out": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of billable bytes out on all network interfaces by the Virtual Machine(s) (Outgoing Traffic) (Deprecated)" + }, + "Network Out Total": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of bytes out on all network interfaces by the Virtual Machine(s) (Outgoing Traffic)" + }, + "OS Disk Bandwidth Consumed Percentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of operating system disk bandwidth consumed per minute. Only available on VM series that support premium storage." + }, + "OS Disk IOPS Consumed Percentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of operating system disk I/Os consumed per minute. Only available on VM series that support premium storage." + }, + "OS Disk Max Burst Bandwidth": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Maximum bytes per second throughput OS Disk can achieve with bursting" + }, + "OS Disk Max Burst IOPS": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Maximum IOPS OS Disk can achieve with bursting" + }, + "OS Disk Queue Depth": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "OS Disk Queue Depth(or Queue Length)" + }, + "OS Disk Read Bytes/sec": { + "Unit": "BytesPerSecond", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Bytes/Sec read from a single disk during monitoring period for OS disk" + }, + "OS Disk Read Operations/Sec": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Read IOPS from a single disk during monitoring period for OS disk" + }, + "OS Disk Target Bandwidth": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Baseline bytes per second throughput OS Disk can achieve without bursting" + }, + "OS Disk Target IOPS": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Baseline IOPS OS Disk can achieve without bursting" + }, + "OS Disk Used Burst BPS Credits Percentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of OS Disk burst bandwidth credits used so far" + }, + "OS Disk Used Burst IO Credits Percentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of OS Disk burst I/O credits used so far" + }, + "OS Disk Write Bytes/sec": { + "Unit": "BytesPerSecond", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Bytes/Sec written to a single disk during monitoring period for OS disk" + }, + "OS Disk Write Operations/Sec": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Write IOPS from a single disk during monitoring period for OS disk" + }, + "Outbound Flows": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Outbound Flows are number of current flows in the outbound direction (traffic going out of the VM)" + }, + "Outbound Flows Maximum Creation Rate": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The maximum creation rate of outbound flows (traffic going out of the VM)" + }, + "Percentage CPU": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The percentage of allocated compute units that are currently in use by the Virtual Machine(s)" + }, + "Premium Data Disk Cache Read Hit": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Premium Data Disk Cache Read Hit" + }, + "Premium Data Disk Cache Read Miss": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Premium Data Disk Cache Read Miss" + }, + "Premium OS Disk Cache Read Hit": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Premium OS Disk Cache Read Hit" + }, + "Premium OS Disk Cache Read Miss": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Premium OS Disk Cache Read Miss" + }, + "VM Cached Bandwidth Consumed Percentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of cached disk bandwidth consumed by the VM. Only available on VM series that support premium storage." + }, + "VM Cached IOPS Consumed Percentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of cached disk IOPS consumed by the VM. Only available on VM series that support premium storage." + }, + "VM Local Used Burst BPS Credits Percentage": { + "Unit": "Percent", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of Cached Burst BPS Credits used by the VM." + }, + "VM Local Used Burst IO Credits Percentage": { + "Unit": "Percent", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of Cached Burst IO Credits used by the VM." + }, + "VM Remote Used Burst BPS Credits Percentage": { + "Unit": "Percent", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of Uncached Burst BPS Credits used by the VM." + }, + "VM Remote Used Burst IO Credits Percentage": { + "Unit": "Percent", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of Uncached Burst IO Credits used by the VM." + }, + "VM Uncached Bandwidth Consumed Percentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of uncached disk bandwidth consumed by the VM. Only available on VM series that support premium storage." + }, + "VM Uncached IOPS Consumed Percentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of uncached disk IOPS consumed by the VM. Only available on VM series that support premium storage." + }, + "VmAvailabilityMetric": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Measure of Availability of Virtual machines over time." + } + }, + "microsoft.compute/virtualmachinescalesets": { + "Available Memory Bytes": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Amount of physical memory, in bytes, immediately available for allocation to a process or for system use in the Virtual Machine" + }, + "CPU Credits Consumed": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of credits consumed by the Virtual Machine. Only available on B-series burstable VMs" + }, + "CPU Credits Remaining": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of credits available to burst. Only available on B-series burstable VMs" + }, + "Data Disk Bandwidth Consumed Percentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "LUN, VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of data disk bandwidth consumed per minute" + }, + "Data Disk IOPS Consumed Percentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "LUN, VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of data disk I/Os consumed per minute" + }, + "Data Disk Max Burst Bandwidth": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "LUN, VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Maximum bytes per second throughput Data Disk can achieve with bursting" + }, + "Data Disk Max Burst IOPS": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "LUN, VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Maximum IOPS Data Disk can achieve with bursting" + }, + "Data Disk Queue Depth": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "LUN, VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Data Disk Queue Depth(or Queue Length)" + }, + "Data Disk Read Bytes/sec": { + "Unit": "BytesPerSecond", + "Aggregation": "Average", + "Dimensions": "LUN, VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Bytes/Sec read from a single disk during monitoring period" + }, + "Data Disk Read Operations/Sec": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "LUN, VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Read IOPS from a single disk during monitoring period" + }, + "Data Disk Target Bandwidth": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "LUN, VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Baseline bytes per second throughput Data Disk can achieve without bursting" + }, + "Data Disk Target IOPS": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "LUN, VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Baseline IOPS Data Disk can achieve without bursting" + }, + "Data Disk Used Burst BPS Credits Percentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "LUN, VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of Data Disk burst bandwidth credits used so far" + }, + "Data Disk Used Burst IO Credits Percentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "LUN, VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of Data Disk burst I/O credits used so far" + }, + "Data Disk Write Bytes/sec": { + "Unit": "BytesPerSecond", + "Aggregation": "Average", + "Dimensions": "LUN, VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Bytes/Sec written to a single disk during monitoring period" + }, + "Data Disk Write Operations/Sec": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "LUN, VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Write IOPS from a single disk during monitoring period" + }, + "Disk Read Bytes": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Bytes read from disk during monitoring period" + }, + "Disk Read Operations/Sec": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Disk Read IOPS" + }, + "Disk Write Bytes": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Bytes written to disk during monitoring period" + }, + "Disk Write Operations/Sec": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Disk Write IOPS" + }, + "Inbound Flows": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound Flows are number of current flows in the inbound direction (traffic going into the VM)" + }, + "Inbound Flows Maximum Creation Rate": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The maximum creation rate of inbound flows (traffic going into the VM)" + }, + "Network In": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of billable bytes received on all network interfaces by the Virtual Machine(s) (Incoming Traffic) (Deprecated)" + }, + "Network In Total": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of bytes received on all network interfaces by the Virtual Machine(s) (Incoming Traffic)" + }, + "Network Out": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of billable bytes out on all network interfaces by the Virtual Machine(s) (Outgoing Traffic) (Deprecated)" + }, + "Network Out Total": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of bytes out on all network interfaces by the Virtual Machine(s) (Outgoing Traffic)" + }, + "OS Disk Bandwidth Consumed Percentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "LUN, VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of operating system disk bandwidth consumed per minute" + }, + "OS Disk IOPS Consumed Percentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "LUN, VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of operating system disk I/Os consumed per minute" + }, + "OS Disk Max Burst Bandwidth": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "LUN, VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Maximum bytes per second throughput OS Disk can achieve with bursting" + }, + "OS Disk Max Burst IOPS": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "LUN, VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Maximum IOPS OS Disk can achieve with bursting" + }, + "OS Disk Queue Depth": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "OS Disk Queue Depth(or Queue Length)" + }, + "OS Disk Read Bytes/sec": { + "Unit": "BytesPerSecond", + "Aggregation": "Average", + "Dimensions": "VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Bytes/Sec read from a single disk during monitoring period for OS disk" + }, + "OS Disk Read Operations/Sec": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Read IOPS from a single disk during monitoring period for OS disk" + }, + "OS Disk Target Bandwidth": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "LUN, VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Baseline bytes per second throughput OS Disk can achieve without bursting" + }, + "OS Disk Target IOPS": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "LUN, VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Baseline IOPS OS Disk can achieve without bursting" + }, + "OS Disk Used Burst BPS Credits Percentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "LUN, VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of OS Disk burst bandwidth credits used so far" + }, + "OS Disk Used Burst IO Credits Percentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "LUN, VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of OS Disk burst I/O credits used so far" + }, + "OS Disk Write Bytes/sec": { + "Unit": "BytesPerSecond", + "Aggregation": "Average", + "Dimensions": "VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Bytes/Sec written to a single disk during monitoring period for OS disk" + }, + "OS Disk Write Operations/Sec": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Write IOPS from a single disk during monitoring period for OS disk" + }, + "Outbound Flows": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Outbound Flows are number of current flows in the outbound direction (traffic going out of the VM)" + }, + "Outbound Flows Maximum Creation Rate": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The maximum creation rate of outbound flows (traffic going out of the VM)" + }, + "Percentage CPU": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The percentage of allocated compute units that are currently in use by the Virtual Machine(s)" + }, + "Premium Data Disk Cache Read Hit": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "LUN, VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Premium Data Disk Cache Read Hit" + }, + "Premium Data Disk Cache Read Miss": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "LUN, VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Premium Data Disk Cache Read Miss" + }, + "Premium OS Disk Cache Read Hit": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Premium OS Disk Cache Read Hit" + }, + "Premium OS Disk Cache Read Miss": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Premium OS Disk Cache Read Miss" + }, + "VM Cached Bandwidth Consumed Percentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of cached disk bandwidth consumed by the VM" + }, + "VM Cached IOPS Consumed Percentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of cached disk IOPS consumed by the VM" + }, + "VM Local Used Burst BPS Credits Percentage": { + "Unit": "Percent", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of Cached Burst BPS Credits used by the VM." + }, + "VM Local Used Burst IO Credits Percentage": { + "Unit": "Percent", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of Cached Burst IO Credits used by the VM." + }, + "VM Remote Used Burst BPS Credits Percentage": { + "Unit": "Percent", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of Uncached Burst BPS Credits used by the VM." + }, + "VM Remote Used Burst IO Credits Percentage": { + "Unit": "Percent", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of Uncached Burst IO Credits used by the VM." + }, + "VM Uncached Bandwidth Consumed Percentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of uncached disk bandwidth consumed by the VM" + }, + "VM Uncached IOPS Consumed Percentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of uncached disk IOPS consumed by the VM" + }, + "VmAvailabilityMetric": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "VMName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Measure of Availability of Virtual machines over time." + } + }, + "microsoft.compute/virtualmachinescalesets/virtualmachines": { + "Available Memory Bytes": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Amount of physical memory, in bytes, immediately available for allocation to a process or for system use in the Virtual Machine" + }, + "CPU Credits Consumed": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of credits consumed by the Virtual Machine. Only available on B-series burstable VMs" + }, + "CPU Credits Remaining": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of credits available to burst. Only available on B-series burstable VMs" + }, + "Data Disk Bandwidth Consumed Percentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of data disk bandwidth consumed per minute" + }, + "Data Disk IOPS Consumed Percentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of data disk I/Os consumed per minute" + }, + "Data Disk Max Burst Bandwidth": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Maximum bytes per second throughput Data Disk can achieve with bursting" + }, + "Data Disk Max Burst IOPS": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Maximum IOPS Data Disk can achieve with bursting" + }, + "Data Disk Queue Depth": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Data Disk Queue Depth(or Queue Length)" + }, + "Data Disk Read Bytes/sec": { + "Unit": "BytesPerSecond", + "Aggregation": "Average", + "Dimensions": "LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Bytes/Sec read from a single disk during monitoring period" + }, + "Data Disk Read Operations/Sec": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Read IOPS from a single disk during monitoring period" + }, + "Data Disk Target Bandwidth": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Baseline bytes per second throughput Data Disk can achieve without bursting" + }, + "Data Disk Target IOPS": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Baseline IOPS Data Disk can achieve without bursting" + }, + "Data Disk Used Burst BPS Credits Percentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of Data Disk burst bandwidth credits used so far" + }, + "Data Disk Used Burst IO Credits Percentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of Data Disk burst I/O credits used so far" + }, + "Data Disk Write Bytes/sec": { + "Unit": "BytesPerSecond", + "Aggregation": "Average", + "Dimensions": "LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Bytes/Sec written to a single disk during monitoring period" + }, + "Data Disk Write Operations/Sec": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Write IOPS from a single disk during monitoring period" + }, + "Disk Read Bytes": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Bytes read from disk during monitoring period" + }, + "Disk Read Operations/Sec": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Disk Read IOPS" + }, + "Disk Write Bytes": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Bytes written to disk during monitoring period" + }, + "Disk Write Operations/Sec": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Disk Write IOPS" + }, + "Inbound Flows": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound Flows are number of current flows in the inbound direction (traffic going into the VM)" + }, + "Inbound Flows Maximum Creation Rate": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The maximum creation rate of inbound flows (traffic going into the VM)" + }, + "Network In": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of billable bytes received on all network interfaces by the Virtual Machine(s) (Incoming Traffic) (Deprecated)" + }, + "Network In Total": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of bytes received on all network interfaces by the Virtual Machine(s) (Incoming Traffic)" + }, + "Network Out": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of billable bytes out on all network interfaces by the Virtual Machine(s) (Outgoing Traffic) (Deprecated)" + }, + "Network Out Total": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of bytes out on all network interfaces by the Virtual Machine(s) (Outgoing Traffic)" + }, + "OS Disk Bandwidth Consumed Percentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of operating system disk bandwidth consumed per minute" + }, + "OS Disk IOPS Consumed Percentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of operating system disk I/Os consumed per minute" + }, + "OS Disk Max Burst Bandwidth": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Maximum bytes per second throughput OS Disk can achieve with bursting" + }, + "OS Disk Max Burst IOPS": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Maximum IOPS OS Disk can achieve with bursting" + }, + "OS Disk Queue Depth": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "OS Disk Queue Depth(or Queue Length)" + }, + "OS Disk Read Bytes/sec": { + "Unit": "BytesPerSecond", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Bytes/Sec read from a single disk during monitoring period for OS disk" + }, + "OS Disk Read Operations/Sec": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Read IOPS from a single disk during monitoring period for OS disk" + }, + "OS Disk Target Bandwidth": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Baseline bytes per second throughput OS Disk can achieve without bursting" + }, + "OS Disk Target IOPS": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Baseline IOPS OS Disk can achieve without bursting" + }, + "OS Disk Used Burst BPS Credits Percentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of OS Disk burst bandwidth credits used so far" + }, + "OS Disk Used Burst IO Credits Percentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of OS Disk burst I/O credits used so far" + }, + "OS Disk Write Bytes/sec": { + "Unit": "BytesPerSecond", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Bytes/Sec written to a single disk during monitoring period for OS disk" + }, + "OS Disk Write Operations/Sec": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Write IOPS from a single disk during monitoring period for OS disk" + }, + "Outbound Flows": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Outbound Flows are number of current flows in the outbound direction (traffic going out of the VM)" + }, + "Outbound Flows Maximum Creation Rate": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The maximum creation rate of outbound flows (traffic going out of the VM)" + }, + "Percentage CPU": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The percentage of allocated compute units that are currently in use by the Virtual Machine(s)" + }, + "Premium Data Disk Cache Read Hit": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Premium Data Disk Cache Read Hit" + }, + "Premium Data Disk Cache Read Miss": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "LUN", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Premium Data Disk Cache Read Miss" + }, + "Premium OS Disk Cache Read Hit": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Premium OS Disk Cache Read Hit" + }, + "Premium OS Disk Cache Read Miss": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Premium OS Disk Cache Read Miss" + }, + "VM Cached Bandwidth Consumed Percentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of cached disk bandwidth consumed by the VM" + }, + "VM Cached IOPS Consumed Percentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of cached disk IOPS consumed by the VM" + }, + "VM Uncached Bandwidth Consumed Percentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of uncached disk bandwidth consumed by the VM" + }, + "VM Uncached IOPS Consumed Percentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of uncached disk IOPS consumed by the VM" + } + }, + "microsoft.connectedcache/cachenodes": { + "egressbps": { + "Unit": "BitsPerSecond", + "Aggregation": "Average", + "Dimensions": "cachenodeid", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Egress Throughput" + }, + "hitRatio": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "cachenodeid", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Cache Efficiency" + }, + "hits": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "cachenodeid", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of hits" + }, + "hitsbps": { + "Unit": "BitsPerSecond", + "Aggregation": "Average", + "Dimensions": "cachenodeid", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Hit Throughput" + }, + "misses": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "cachenodeid", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of misses" + }, + "missesbps": { + "Unit": "BitsPerSecond", + "Aggregation": "Average", + "Dimensions": "cachenodeid", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Miss Throughput" + } + }, + "microsoft.connectedcache/enterprisemcccustomers": { + "egressbps": { + "Unit": "BitsPerSecond", + "Aggregation": "Average", + "Dimensions": "cachenodeid", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Egress Throughput" + }, + "hitRatio": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "cachenodeid", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Cache hit ratio is a measurement of how many content requests a cache is able to fill successfully, compared to how many requests it receives." + }, + "hits": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "cachenodeid", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of hits" + }, + "hitsbps": { + "Unit": "BitsPerSecond", + "Aggregation": "Average", + "Dimensions": "cachenodeid", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Hit Throughput" + }, + "inboundbps": { + "Unit": "BitsPerSecond", + "Aggregation": "Average", + "Dimensions": "cachenodeid", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound Throughput" + }, + "misses": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "cachenodeid", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of misses" + }, + "missesbps": { + "Unit": "BitsPerSecond", + "Aggregation": "Average", + "Dimensions": "cachenodeid", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Miss Throughput" + }, + "outboundbps": { + "Unit": "BitsPerSecond", + "Aggregation": "Average", + "Dimensions": "cachenodeid", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Outbound Throughput" + } + }, + "microsoft.connectedcache/ispcustomers": { + "egressbps": { + "Unit": "BitsPerSecond", + "Aggregation": "Average", + "Dimensions": "cachenodeid", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Egress Throughput" + }, + "hitRatio": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "cachenodeid", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Cache hit ratio is a measurement of how many content requests a cache is able to fill successfully, compared to how many requests it receives." + }, + "hits": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "cachenodeid", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of hits" + }, + "hitsbps": { + "Unit": "BitsPerSecond", + "Aggregation": "Average", + "Dimensions": "cachenodeid", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Hit Throughput" + }, + "inboundbps": { + "Unit": "BitsPerSecond", + "Aggregation": "Average", + "Dimensions": "cachenodeid", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound Throughput" + }, + "misses": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "cachenodeid", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of misses" + }, + "missesbps": { + "Unit": "BitsPerSecond", + "Aggregation": "Average", + "Dimensions": "cachenodeid", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Miss Throughput" + }, + "outboundbps": { + "Unit": "BitsPerSecond", + "Aggregation": "Average", + "Dimensions": "cachenodeid", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Outbound Throughput" + } + }, + "microsoft.connectedvehicle/platformaccounts": { + "ClaimsProviderRequestLatency": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "IsSuccessful, FailureCategory", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average execution time of requests to the customer claims provider endpoint in milliseconds." + }, + "ClaimsProviderRequests": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IsSuccessful, FailureCategory", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of requests to claims provider" + }, + "ConnectionServiceRequestRuntime": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "IsSuccessful, FailureCategory", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Vehicle conneciton request execution time average in milliseconds" + }, + "ConnectionServiceRequests": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IsSuccessful, FailureCategory", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of vehicle connection requests" + }, + "DataPipelineMessageCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IsSuccessful, FailureCategory", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of messages sent to the MCVP data pipeline for storage." + }, + "ExtensionInvocationCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ExtensionName, IsSuccessful, FailureCategory", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of times an extension was called." + }, + "ExtensionInvocationRuntime": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "ExtensionName, IsSuccessful, FailureCategory", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average execution time spent inside an extension in milliseconds." + }, + "MessagesInCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IsSuccessful, FailureCategory", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of vehicle-sourced publishes." + }, + "MessagesOutCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IsSuccessful, FailureCategory", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of cloud-sourced publishes." + }, + "ProvisionerServiceRequestRuntime": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "IsSuccessful, FailureCategory", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average execution time of vehicle provision requests in milliseconds" + }, + "ProvisionerServiceRequests": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IsSuccessful, FailureCategory", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of vehicle provision requests" + }, + "StateStoreReadRequestLatency": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "ExtensionName, IsSuccessful, FailureCategory", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "State store read request execution time average in milliseconds." + }, + "StateStoreReadRequests": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ExtensionName, IsSuccessful, FailureCategory", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of read requests to state store" + }, + "StateStoreWriteRequestLatency": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "ExtensionName, IsSuccessful, FailureCategory", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "State store write request execution time average in milliseconds." + }, + "StateStoreWriteRequests": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ExtensionName, IsSuccessful, FailureCategory", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of write requests to state store" + } + }, + "microsoft.containerinstance/containergroups": { + "CpuUsage": { + "Unit": "Count", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "containerName", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H", + "DS Export": "Yes", + "Description": "CPU usage on all cores in millicores." + }, + "MemoryUsage": { + "Unit": "Bytes", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "containerName", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H", + "DS Export": "Yes", + "Description": "Total memory usage in byte." + }, + "NetworkBytesReceivedPerSecond": { + "Unit": "Bytes", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H", + "DS Export": "Yes", + "Description": "The network bytes received per second." + }, + "NetworkBytesTransmittedPerSecond": { + "Unit": "Bytes", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H", + "DS Export": "Yes", + "Description": "The network bytes transmitted per second." + } + }, + "microsoft.containerinstance/containerscalesets": { + "CpuPercentage": { + "Unit": "Percent", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average of the CPU percentages consumed by individual Container Groups in this Scale Set" + }, + "CpuUsage": { + "Unit": "MilliCores", + "Aggregation": "Total, Average, Minimum, Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average of the CPU utilizations in millicores consumed by Container Groups in this Scale Set" + }, + "MemoryPercentage": { + "Unit": "Percent", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average of the memory percentages consumed ((usedMemory/allocatedMemory) * 100) by Container Groups in this Scale Set" + }, + "MemoryUsage": { + "Unit": "Bytes", + "Aggregation": "Total, Average, Minimum, Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total memory used by all the Container Groups in this Scale Set" + } + }, + "microsoft.containerregistry/registries": { + "AgentPoolCPUTime": { + "Unit": "Seconds", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "AgentPool CPU Time in seconds" + }, + "RunDuration": { + "Unit": "MilliSeconds", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Run Duration in milliseconds" + }, + "StorageUsed": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "Geolocation", + "Time Grains": "PT1H", + "DS Export": "Yes", + "Description": "The amount of storage used by the container registry. For a registry account, it's the sum of capacity used by all the repositories within a registry. It's sum of capacity used by shared layers, manifest files, and replica copies in each of its repositories." + }, + "SuccessfulPullCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of successful image pulls" + }, + "SuccessfulPushCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of successful image pushes" + }, + "TotalPullCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of image pulls in total" + }, + "TotalPushCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of image pushes in total" + } + }, + "microsoft.containerservice/managedclusters": { + "apiserver_current_inflight_requests": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "requestKind", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H", + "DS Export": "No", + "Description": "Maximum number of currently used inflight requests on the apiserver per request kind in the last second" + }, + "cluster_autoscaler_cluster_safe_to_autoscale": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H", + "DS Export": "No", + "Description": "Determines whether or not cluster autoscaler will take action on the cluster" + }, + "cluster_autoscaler_scale_down_in_cooldown": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H", + "DS Export": "No", + "Description": "Determines if the scale down is in cooldown - No nodes will be removed during this timeframe" + }, + "cluster_autoscaler_unneeded_nodes_count": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H", + "DS Export": "No", + "Description": "Cluster auotscaler marks those nodes as candidates for deletion and are eventually deleted" + }, + "cluster_autoscaler_unschedulable_pods_count": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H", + "DS Export": "No", + "Description": "Number of pods that are currently unschedulable in the cluster" + }, + "kube_node_status_allocatable_cpu_cores": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H", + "DS Export": "No", + "Description": "Total number of available cpu cores in a managed cluster" + }, + "kube_node_status_allocatable_memory_bytes": { + "Unit": "Bytes", + "Aggregation": "Total, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H", + "DS Export": "No", + "Description": "Total amount of available memory in a managed cluster" + }, + "kube_node_status_condition": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "condition, status, status2, node", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H", + "DS Export": "No", + "Description": "Statuses for various node conditions" + }, + "kube_pod_status_phase": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "phase, namespace, pod", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H", + "DS Export": "No", + "Description": "Number of pods by phase" + }, + "kube_pod_status_ready": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "namespace, pod, condition", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H", + "DS Export": "No", + "Description": "Number of pods in Ready state" + }, + "node_cpu_usage_millicores": { + "Unit": "MilliCores", + "Aggregation": "Maximum, Average", + "Dimensions": "node, nodepool", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H", + "DS Export": "Yes", + "Description": "Aggregated measurement of CPU utilization in millicores across the cluster" + }, + "node_cpu_usage_percentage": { + "Unit": "Percent", + "Aggregation": "Maximum, Average", + "Dimensions": "node, nodepool", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H", + "DS Export": "Yes", + "Description": "Aggregated average CPU utilization measured in percentage across the cluster" + }, + "node_disk_usage_bytes": { + "Unit": "Bytes", + "Aggregation": "Maximum, Average", + "Dimensions": "node, nodepool, device", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H", + "DS Export": "Yes", + "Description": "Disk space used in bytes by device" + }, + "node_disk_usage_percentage": { + "Unit": "Percent", + "Aggregation": "Maximum, Average", + "Dimensions": "node, nodepool, device", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H", + "DS Export": "Yes", + "Description": "Disk space used in percent by device" + }, + "node_memory_rss_bytes": { + "Unit": "Bytes", + "Aggregation": "Maximum, Average", + "Dimensions": "node, nodepool", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H", + "DS Export": "Yes", + "Description": "Container RSS memory used in bytes" + }, + "node_memory_rss_percentage": { + "Unit": "Percent", + "Aggregation": "Maximum, Average", + "Dimensions": "node, nodepool", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H", + "DS Export": "Yes", + "Description": "Container RSS memory used in percent" + }, + "node_memory_working_set_bytes": { + "Unit": "Bytes", + "Aggregation": "Maximum, Average", + "Dimensions": "node, nodepool", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H", + "DS Export": "Yes", + "Description": "Container working set memory used in bytes" + }, + "node_memory_working_set_percentage": { + "Unit": "Percent", + "Aggregation": "Maximum, Average", + "Dimensions": "node, nodepool", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H", + "DS Export": "Yes", + "Description": "Container working set memory used in percent" + }, + "node_network_in_bytes": { + "Unit": "Bytes", + "Aggregation": "Maximum, Average", + "Dimensions": "node, nodepool", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H", + "DS Export": "Yes", + "Description": "Network received bytes" + }, + "node_network_out_bytes": { + "Unit": "Bytes", + "Aggregation": "Maximum, Average", + "Dimensions": "node, nodepool", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H", + "DS Export": "Yes", + "Description": "Network transmitted bytes" + } + }, + "microsoft.customproviders/resourceproviders": { + "FailedRequests": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "HttpMethod, CallPath, StatusCode", + "Time Grains": "PT15M, PT1H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Gets the available logs for Custom Resource Providers" + }, + "SuccessfullRequests": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "HttpMethod, CallPath, StatusCode", + "Time Grains": "PT15M, PT1H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Successful requests made by the custom provider" + } + }, + "microsoft.dashboard/grafana": { + "HttpRequestCount": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of HTTP requests to Azure Managed Grafana server" + } + }, + "microsoft.databoxedge/databoxedgedevices": { + "AvailableCapacity": { + "Unit": "Bytes", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT1H", + "DS Export": "Yes", + "Description": "The available capacity in bytes during the reporting period." + }, + "BytesUploadedToCloud": { + "Unit": "Bytes", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT1H", + "DS Export": "Yes", + "Description": "The total number of bytes that is uploaded to Azure from a device during the reporting period." + }, + "BytesUploadedToCloudPerShare": { + "Unit": "Bytes", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "Share", + "Time Grains": "PT1M, PT15M, PT1H", + "DS Export": "Yes", + "Description": "The total number of bytes that is uploaded to Azure from a share during the reporting period." + }, + "CloudReadThroughput": { + "Unit": "BytesPerSecond", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT1H", + "DS Export": "Yes", + "Description": "The cloud download throughput to Azure during the reporting period." + }, + "CloudReadThroughputPerShare": { + "Unit": "BytesPerSecond", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "Share", + "Time Grains": "PT1M, PT15M, PT1H", + "DS Export": "Yes", + "Description": "The download throughput to Azure from a share during the reporting period." + }, + "CloudUploadThroughput": { + "Unit": "BytesPerSecond", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT1H", + "DS Export": "Yes", + "Description": "The cloud upload throughput to Azure during the reporting period." + }, + "CloudUploadThroughputPerShare": { + "Unit": "BytesPerSecond", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "Share", + "Time Grains": "PT1M, PT15M, PT1H", + "DS Export": "Yes", + "Description": "The upload throughput to Azure from a share during the reporting period." + }, + "HyperVMemoryUtilization": { + "Unit": "Percent", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "InstanceName", + "Time Grains": "PT1M, PT15M, PT1H", + "DS Export": "Yes", + "Description": "Amount of RAM in Use" + }, + "HyperVVirtualProcessorUtilization": { + "Unit": "Percent", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "InstanceName", + "Time Grains": "PT1M, PT15M, PT1H", + "DS Export": "Yes", + "Description": "Percent CPU Usage" + }, + "NICReadThroughput": { + "Unit": "BytesPerSecond", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "InstanceName", + "Time Grains": "PT1M, PT15M, PT1H", + "DS Export": "Yes", + "Description": "The read throughput of the network interface on the device in the reporting period for all volumes in the gateway." + }, + "NICWriteThroughput": { + "Unit": "BytesPerSecond", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "InstanceName", + "Time Grains": "PT1M, PT15M, PT1H", + "DS Export": "Yes", + "Description": "The write throughput of the network interface on the device in the reporting period for all volumes in the gateway." + }, + "TotalCapacity": { + "Unit": "Bytes", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT1H", + "DS Export": "Yes", + "Description": "The total capacity of the device in bytes during the reporting period." + } + }, + "microsoft.datacollaboration/workspaces": { + "ComputationCount": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "ComputationName", + "Time Grains": "P1D", + "DS Export": "Yes", + "Description": "Number of created computations" + }, + "DataAssetCount": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "DataAssetName", + "Time Grains": "P1D", + "DS Export": "Yes", + "Description": "Number of created data assets" + }, + "PipelineCount": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "PipelineName", + "Time Grains": "P1D", + "DS Export": "Yes", + "Description": "Number of created pipelines" + }, + "ProposalCount": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "ProposalName", + "Time Grains": "P1D", + "DS Export": "Yes", + "Description": "Number of created proposals" + }, + "ScriptCount": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "ScriptName", + "Time Grains": "P1D", + "DS Export": "Yes", + "Description": "Number of created scripts" + } + }, + "microsoft.datafactory/datafactories": { + "FailedRuns": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "pipelineName, activityName", + "Time Grains": "PT1H", + "DS Export": "Yes", + "Description": "Failed Runs" + }, + "SuccessfulRuns": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "pipelineName, activityName", + "Time Grains": "PT1H", + "DS Export": "Yes", + "Description": "Successful Runs" + } + }, + "microsoft.datafactory/factories": { + "ActivityCancelledRuns": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ActivityType, PipelineName, FailureType, Name", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Cancelled activity runs metrics" + }, + "ActivityFailedRuns": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ActivityType, PipelineName, FailureType, Name", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Failed activity runs metrics" + }, + "ActivitySucceededRuns": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ActivityType, PipelineName, FailureType, Name", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Succeeded activity runs metrics" + }, + "AirflowIntegrationRuntimeCeleryTaskTimeoutError": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime Celery Task Timeout Error" + }, + "AirflowIntegrationRuntimeCollectDBDags": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime Collect DB Dags" + }, + "AirflowIntegrationRuntimeCpuPercentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "IntegrationRuntimeName, ContainerName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime Cpu Percentage" + }, + "AirflowIntegrationRuntimeCpuUsage": { + "Unit": "Millicores", + "Aggregation": "Average", + "Dimensions": "IntegrationRuntimeName, ContainerName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Airflow Integration Runtime Memory Usage" + }, + "AirflowIntegrationRuntimeDagBagSize": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime Dag Bag Size" + }, + "AirflowIntegrationRuntimeDagCallbackExceptions": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime Dag Callback Exceptions" + }, + "AirflowIntegrationRuntimeDAGFileRefreshError": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime DAG File Refresh Error" + }, + "AirflowIntegrationRuntimeDAGProcessingImportErrors": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime DAG Processing Import Errors" + }, + "AirflowIntegrationRuntimeDAGProcessingLastDuration": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "IntegrationRuntimeName, DagFile", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime DAG Processing Last Duration" + }, + "AirflowIntegrationRuntimeDAGProcessingLastRunSecondsAgo": { + "Unit": "Seconds", + "Aggregation": "Average", + "Dimensions": "IntegrationRuntimeName, DagFile", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime DAG Processing Last Run Seconds Ago" + }, + "AirflowIntegrationRuntimeDAGProcessingManagerStalls": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime DAG ProcessingManager Stalls" + }, + "AirflowIntegrationRuntimeDAGProcessingProcesses": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime DAG Processing Processes" + }, + "AirflowIntegrationRuntimeDAGProcessingProcessorTimeouts": { + "Unit": "Seconds", + "Aggregation": "Average", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime DAG Processing Processor Timeouts" + }, + "AirflowIntegrationRuntimeDAGProcessingTotalParseTime": { + "Unit": "Seconds", + "Aggregation": "Average", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime DAG Processing Total Parse Time" + }, + "AirflowIntegrationRuntimeDAGRunDependencyCheck": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "IntegrationRuntimeName, DagId", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime DAG Run Dependency Check" + }, + "AirflowIntegrationRuntimeDAGRunDurationFailed": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "IntegrationRuntimeName, DagId", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime DAG Run Duration Failed" + }, + "AirflowIntegrationRuntimeDAGRunDurationSuccess": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "IntegrationRuntimeName, DagId", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime DAG Run Duration Success" + }, + "AirflowIntegrationRuntimeDAGRunFirstTaskSchedulingDelay": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "IntegrationRuntimeName, DagId", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime DAG Run First Task Scheduling Delay" + }, + "AirflowIntegrationRuntimeDAGRunScheduleDelay": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "IntegrationRuntimeName, DagId", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime DAG Run Schedule Delay" + }, + "AirflowIntegrationRuntimeExecutorOpenSlots": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime Executor Open Slots" + }, + "AirflowIntegrationRuntimeExecutorQueuedTasks": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime Executor Queued Tasks" + }, + "AirflowIntegrationRuntimeExecutorRunningTasks": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime Executor Running Tasks" + }, + "AirflowIntegrationRuntimeJobEnd": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName, Job", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime Job End" + }, + "AirflowIntegrationRuntimeJobHeartbeatFailure": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName, Job", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime Heartbeat Failure" + }, + "AirflowIntegrationRuntimeJobStart": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName, Job", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime Job Start" + }, + "AirflowIntegrationRuntimeMemoryPercentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "IntegrationRuntimeName, ContainerName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Airflow Integration Runtime Memory Percentage" + }, + "AirflowIntegrationRuntimeNodeCount": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "IntegrationRuntimeName, ComputeNodeSize", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Airflow Integration Runtime Node Count" + }, + "AirflowIntegrationRuntimeOperatorFailures": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName, Operator", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime Operator Failures" + }, + "AirflowIntegrationRuntimeOperatorSuccesses": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName, Operator", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime Operator Successes" + }, + "AirflowIntegrationRuntimePoolOpenSlots": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName, Pool", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime Pool Open Slots" + }, + "AirflowIntegrationRuntimePoolQueuedSlots": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName, Pool", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime Pool Queued Slots" + }, + "AirflowIntegrationRuntimePoolRunningSlots": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName, Pool", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime Pool Running Slots" + }, + "AirflowIntegrationRuntimePoolStarvingTasks": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName, Pool", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime Pool Starving Tasks" + }, + "AirflowIntegrationRuntimeSchedulerCriticalSectionBusy": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime Scheduler Critical Section Busy" + }, + "AirflowIntegrationRuntimeSchedulerCriticalSectionDuration": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime Scheduler Critical Section Duration" + }, + "AirflowIntegrationRuntimeSchedulerFailedSLAEmailAttempts": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime Scheduler Failed SLA Email Attempts" + }, + "AirflowIntegrationRuntimeSchedulerHeartbeat": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime Scheduler Heartbeats" + }, + "AirflowIntegrationRuntimeSchedulerOrphanedTasksAdopted": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime Scheduler Orphaned Tasks Adopted" + }, + "AirflowIntegrationRuntimeSchedulerOrphanedTasksCleared": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime Scheduler Orphaned Tasks Cleared" + }, + "AirflowIntegrationRuntimeSchedulerTasksExecutable": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime Scheduler Tasks Executable" + }, + "AirflowIntegrationRuntimeSchedulerTasksKilledExternally": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime Scheduler Tasks Killed Externally" + }, + "AirflowIntegrationRuntimeSchedulerTasksRunning": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime Scheduler Tasks Running" + }, + "AirflowIntegrationRuntimeSchedulerTasksStarving": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime Scheduler Tasks Starving" + }, + "AirflowIntegrationRuntimeStartedTaskInstances": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName, DagId, TaskId", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime Started Task Instances" + }, + "AirflowIntegrationRuntimeTaskInstanceCreatedUsingOperator": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName, Operator", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime Task Instance Created Using Operator" + }, + "AirflowIntegrationRuntimeTaskInstanceDuration": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "IntegrationRuntimeName, DagId, TaskID", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime Task Instance Duration" + }, + "AirflowIntegrationRuntimeTaskInstanceFailures": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime Task Instance Failures" + }, + "AirflowIntegrationRuntimeTaskInstanceFinished": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName, DagId, TaskId, State", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime Task Instance Finished" + }, + "AirflowIntegrationRuntimeTaskInstancePreviouslySucceeded": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime Task Instance Previously Succeeded" + }, + "AirflowIntegrationRuntimeTaskInstanceSuccesses": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime Task Instance Successes" + }, + "AirflowIntegrationRuntimeTaskRemovedFromDAG": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName, DagId", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime Task Removed From DAG" + }, + "AirflowIntegrationRuntimeTaskRestoredToDAG": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName, DagId", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime Task Restored To DAG" + }, + "AirflowIntegrationRuntimeTriggersBlockedMainThread": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime Triggers Blocked Main Thread" + }, + "AirflowIntegrationRuntimeTriggersFailed": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime Triggers Failed" + }, + "AirflowIntegrationRuntimeTriggersRunning": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime Triggers Running" + }, + "AirflowIntegrationRuntimeTriggersSucceeded": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime Triggers Succeeded" + }, + "AirflowIntegrationRuntimeZombiesKilled": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Airflow Integration Runtime Zombie Tasks Killed" + }, + "FactorySizeInGbUnits": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total factory size (GB unit)" + }, + "IntegrationRuntimeAvailableMemory": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "IntegrationRuntimeName, NodeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Integration runtime available memory" + }, + "IntegrationRuntimeAvailableNodeNumber": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Integration runtime available node count" + }, + "IntegrationRuntimeAverageTaskPickupDelay": { + "Unit": "Seconds", + "Aggregation": "Average", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Integration runtime queue duration" + }, + "IntegrationRuntimeCpuPercentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "IntegrationRuntimeName, NodeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Integration runtime CPU utilization" + }, + "IntegrationRuntimeQueueLength": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Integration runtime queue length" + }, + "MaxAllowedFactorySizeInGbUnits": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Maximum allowed factory size (GB unit)" + }, + "MaxAllowedResourceCount": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Maximum allowed entities count" + }, + "MVNetIRCopyAvailableCapacityPCT": { + "Unit": "Percent", + "Aggregation": "Maximum", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Copy available capacity percentage of MVNet integration runtime" + }, + "MVNetIRCopyCapacityUtilization": { + "Unit": "Percent", + "Aggregation": "Maximum", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Copy capacity utilization of MVNet integration runtime" + }, + "MVNetIRCopyWaitingQueueLength": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Copy waiting queue length of MVNet integration runtime" + }, + "MVNetIRExternalAvailableCapacityPCT": { + "Unit": "Percent", + "Aggregation": "Maximum", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "External available capacity percentage of MVNet integration runtime" + }, + "MVNetIRExternalCapacityUtilization": { + "Unit": "Percent", + "Aggregation": "Maximum", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "External capacity utilization of MVNet integration runtime" + }, + "MVNetIRExternalWaitingQueueLength": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "External waiting queue length of MVNet integration runtime" + }, + "MVNetIRPipelineAvailableCapacityPCT": { + "Unit": "Percent", + "Aggregation": "Maximum", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Pipeline available capacity percentage of MVNet integration runtime" + }, + "MVNetIRPipelineCapacityUtilization": { + "Unit": "Percent", + "Aggregation": "Maximum", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Pipeline capacity utilization of MVNet integration runtime" + }, + "MVNetIRPipelineWaitingQueueLength": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Pipeline waiting queue length of MVNet integration runtime" + }, + "PipelineCancelledRuns": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "FailureType, CancelledBy, Name", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Cancelled pipeline runs metrics" + }, + "PipelineElapsedTimeRuns": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "RunId, Name", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Elapsed Time Pipeline Runs Metrics" + }, + "PipelineFailedRuns": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "FailureType, Name", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Failed pipeline runs metrics" + }, + "PipelineSucceededRuns": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "FailureType, Name", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Succeeded pipeline runs metrics" + }, + "ResourceCount": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total entities count" + }, + "SSISIntegrationRuntimeStartCancel": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Cancelled SSIS integration runtime start metrics" + }, + "SSISIntegrationRuntimeStartFailed": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Failed SSIS integration runtime start metrics" + }, + "SSISIntegrationRuntimeStartSucceeded": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Succeeded SSIS integration runtime start metrics" + }, + "SSISIntegrationRuntimeStopStuck": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Stuck SSIS integration runtime stop metrics" + }, + "SSISIntegrationRuntimeStopSucceeded": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Succeeded SSIS integration runtime stop metrics" + }, + "SSISPackageExecutionCancel": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Cancelled SSIS package execution metrics" + }, + "SSISPackageExecutionFailed": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Failed SSIS package execution metrics" + }, + "SSISPackageExecutionSucceeded": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IntegrationRuntimeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Succeeded SSIS package execution metrics" + }, + "TriggerCancelledRuns": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Name, FailureType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Cancelled trigger runs metrics" + }, + "TriggerFailedRuns": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Name, FailureType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Failed trigger runs metrics" + }, + "TriggerSucceededRuns": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Name, FailureType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Succeeded trigger runs metrics" + } + }, + "microsoft.datalakeanalytics/accounts": { + "JobAUEndedCancelled": { + "Unit": "Seconds", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total AU time for cancelled jobs." + }, + "JobAUEndedFailure": { + "Unit": "Seconds", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total AU time for failed jobs." + }, + "JobAUEndedSuccess": { + "Unit": "Seconds", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total AU time for successful jobs." + }, + "JobEndedCancelled": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of cancelled jobs." + }, + "JobEndedFailure": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of failed jobs." + }, + "JobEndedSuccess": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of successful jobs." + }, + "JobStage": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of jobs in each stage." + } + }, + "microsoft.datalakestore/accounts": { + "DataRead": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M, PT1H", + "DS Export": "Yes", + "Description": "Total amount of data read from the account." + }, + "DataWritten": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M, PT1H", + "DS Export": "Yes", + "Description": "Total amount of data written to the account." + }, + "ReadRequests": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M, PT1H", + "DS Export": "Yes", + "Description": "Count of data read requests to the account." + }, + "TotalStorage": { + "Unit": "Bytes", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M, PT1H", + "DS Export": "Yes", + "Description": "Total amount of data stored in the account." + }, + "WriteRequests": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M, PT1H", + "DS Export": "Yes", + "Description": "Count of data write requests to the account." + } + }, + "microsoft.dataprotection/backupvaults": { + "BackupHealthEvent": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "dataSourceURL, backupInstanceUrl, dataSourceType, healthStatus, backupInstanceName", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The count of health events pertaining to backup job health" + }, + "RestoreHealthEvent": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "dataSourceURL, backupInstanceUrl, dataSourceType, healthStatus, backupInstanceName", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The count of health events pertaining to restore job health" + } + }, + "microsoft.datashare/accounts": { + "FailedShareSubscriptionSynchronizations": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "No Dimensions", + "Time Grains": "PT1D", + "DS Export": "Yes", + "Description": "Number of received share failed snapshots in the account" + }, + "FailedShareSynchronizations": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "No Dimensions", + "Time Grains": "PT1D", + "DS Export": "Yes", + "Description": "Number of sent share failed snapshots in the account" + }, + "ShareCount": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "ShareName", + "Time Grains": "PT1D", + "DS Export": "Yes", + "Description": "Number of sent shares in the account" + }, + "ShareSubscriptionCount": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "ShareSubscriptionName", + "Time Grains": "PT1D", + "DS Export": "Yes", + "Description": "Number of received shares in the account" + }, + "SucceededShareSubscriptionSynchronizations": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "No Dimensions", + "Time Grains": "PT1D", + "DS Export": "Yes", + "Description": "Number of received share succeeded snapshots in the account" + }, + "SucceededShareSynchronizations": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "No Dimensions", + "Time Grains": "PT1D", + "DS Export": "Yes", + "Description": "Number of sent share succeeded snapshots in the account" + } + }, + "microsoft.dbformariadb/servers": { + "active_connections": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Active Connections" + }, + "backup_storage_used": { + "Unit": "Bytes", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Backup Storage used" + }, + "connections_failed": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Failed Connections" + }, + "cpu_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "CPU percent" + }, + "io_consumption_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "IO percent" + }, + "memory_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Memory percent" + }, + "network_bytes_egress": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Network Out across active connections" + }, + "network_bytes_ingress": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Network In across active connections" + }, + "seconds_behind_master": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Replication lag in seconds" + }, + "serverlog_storage_limit": { + "Unit": "Bytes", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Server Log storage limit" + }, + "serverlog_storage_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Server Log storage percent" + }, + "serverlog_storage_usage": { + "Unit": "Bytes", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Server Log storage used" + }, + "storage_limit": { + "Unit": "Bytes", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Storage limit" + }, + "storage_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Storage percent" + }, + "storage_used": { + "Unit": "Bytes", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Storage used" + } + }, + "microsoft.dbformysql/flexibleservers": { + "aborted_connections": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Aborted Connections" + }, + "active_connections": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Active Connections" + }, + "available_memory_bytes": { + "Unit": "Bytes", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Amount of physical memory, in bytes." + }, + "backup_storage_used": { + "Unit": "Bytes", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Backup Storage Used" + }, + "binlog_storage_used": { + "Unit": "Bytes", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Storage used by Binlog files." + }, + "Com_alter_table": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of times ALTER TABLE statement has been executed." + }, + "Com_create_db": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of times CREATE DB statement has been executed." + }, + "Com_create_table": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of times CREATE TABLE statement has been executed." + }, + "Com_delete": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of times DELETE statement has been executed." + }, + "Com_drop_db": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of times DROP DB statement has been executed." + }, + "Com_drop_table": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of times DROP TABLE statement has been executed." + }, + "Com_insert": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of times INSERT statement has been executed." + }, + "Com_select": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of times SELECT statement has been executed." + }, + "Com_update": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of times UPDATE statement has been executed." + }, + "cpu_credits_consumed": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "CPU Credits Consumed" + }, + "cpu_credits_remaining": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "CPU Credits Remaining" + }, + "cpu_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Host CPU Percent" + }, + "data_storage_used": { + "Unit": "Bytes", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Storage used by data files." + }, + "HA_IO_status": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Status for replication IO thread running" + }, + "HA_replication_lag": { + "Unit": "Seconds", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "HA Replication lag in seconds" + }, + "HA_SQL_status": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Status for replication SQL thread running" + }, + "ibdata1_storage_used": { + "Unit": "Bytes", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Storage used by ibdata1 files." + }, + "Innodb_buffer_pool_pages_data": { + "Unit": "Count", + "Aggregation": "Total, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of pages in the InnoDB buffer pool containing data." + }, + "Innodb_buffer_pool_pages_dirty": { + "Unit": "Count", + "Aggregation": "Total, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The current number of dirty pages in the InnoDB buffer pool." + }, + "Innodb_buffer_pool_pages_flushed": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of requests to flush pages from the InnoDB buffer pool." + }, + "Innodb_buffer_pool_pages_free": { + "Unit": "Count", + "Aggregation": "Total, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of free pages in the InnoDB buffer pool." + }, + "Innodb_buffer_pool_read_requests": { + "Unit": "Count", + "Aggregation": "Total, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of logical read requests." + }, + "Innodb_buffer_pool_reads": { + "Unit": "Count", + "Aggregation": "Total, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of logical reads that InnoDB could not satisfy from the buffer pool, and had to read directly from disk." + }, + "Innodb_data_writes": { + "Unit": "Count", + "Aggregation": "Total, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of data writes." + }, + "Innodb_row_lock_time": { + "Unit": "Milliseconds", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total time spent in acquiring row locks for InnoDB tables, in milliseconds." + }, + "Innodb_row_lock_waits": { + "Unit": "Count", + "Aggregation": "Total, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of times operations on InnoDB tables had to wait for a row lock." + }, + "io_consumption_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Storage I/O consumption percent" + }, + "memory_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Host Memory Percent" + }, + "network_bytes_egress": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Host Network egress in bytes" + }, + "network_bytes_ingress": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Host Network ingress in bytes" + }, + "others_storage_used": { + "Unit": "Bytes", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Storage used by other files." + }, + "Queries": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Queries" + }, + "Replica_IO_Running": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Status for replication IO thread running" + }, + "Replica_SQL_Running": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Status for replication SQL thread running" + }, + "replication_lag": { + "Unit": "Seconds", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Replication lag in seconds" + }, + "serverlog_storage_limit": { + "Unit": "Bytes", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Serverlog Storage Limit" + }, + "serverlog_storage_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Serverlog Storage Percent" + }, + "serverlog_storage_usage": { + "Unit": "Bytes", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Serverlog Storage Used" + }, + "Slow_queries": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of queries that have taken more than long_query_time seconds." + }, + "storage_io_count": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The number of storage I/O consumed." + }, + "storage_limit": { + "Unit": "Bytes", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Storage Limit" + }, + "storage_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Storage Percent" + }, + "storage_throttle_count": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Storage IO requests throttled in the selected time range. Deprecated, please check Storage IO Percent for throttling." + }, + "storage_used": { + "Unit": "Bytes", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Storage Used" + }, + "Threads_running": { + "Unit": "Count", + "Aggregation": "Total, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of threads that are not sleeping." + }, + "total_connections": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total Connections" + } + }, + "microsoft.dbformysql/servers": { + "active_connections": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Active Connections" + }, + "backup_storage_used": { + "Unit": "Bytes", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Backup Storage used" + }, + "connections_failed": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Failed Connections" + }, + "cpu_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "CPU percent" + }, + "io_consumption_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "IO percent" + }, + "memory_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Memory percent" + }, + "network_bytes_egress": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Network Out across active connections" + }, + "network_bytes_ingress": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Network In across active connections" + }, + "seconds_behind_master": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Replication lag in seconds" + }, + "serverlog_storage_limit": { + "Unit": "Bytes", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Server Log storage limit" + }, + "serverlog_storage_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Server Log storage percent" + }, + "serverlog_storage_usage": { + "Unit": "Bytes", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Server Log storage used" + }, + "storage_limit": { + "Unit": "Bytes", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Storage limit" + }, + "storage_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Storage percent" + }, + "storage_used": { + "Unit": "Bytes", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Storage used" + } + }, + "microsoft.dbforpostgresql/flexibleservers": { + "active_connections": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Active Connections" + }, + "analyze_count_user_tables": { + "Unit": "Count", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "DatabaseName", + "Time Grains": "PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Number of times user only tables have been manually analyzed in this database" + }, + "autoanalyze_count_user_tables": { + "Unit": "Count", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "DatabaseName", + "Time Grains": "PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Number of times user only tables have been analyzed by the autovacuum daemon in this database" + }, + "autovacuum_count_user_tables": { + "Unit": "Count", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "DatabaseName", + "Time Grains": "PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Number of times user only tables have been vacuumed by the autovacuum daemon in this database" + }, + "backup_storage_used": { + "Unit": "Bytes", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Backup Storage Used" + }, + "blks_hit": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "DatabaseName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of times disk blocks were found already in the buffer cache, so that a read was not necessary" + }, + "blks_read": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "DatabaseName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of disk blocks read in this database" + }, + "bloat_percent": { + "Unit": "Percent", + "Aggregation": "Maximum", + "Dimensions": "DatabaseName", + "Time Grains": "PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Estimated bloat percentage for user only tables in this database" + }, + "client_connections_active": { + "Unit": "Count", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "DatabaseName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Connections from clients which are associated with a PostgreSQL connection" + }, + "client_connections_waiting": { + "Unit": "Count", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "DatabaseName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Connections from clients that are waiting for a PostgreSQL connection to service them" + }, + "connections_failed": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Failed Connections" + }, + "connections_succeeded": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Succeeded Connections" + }, + "cpu_credits_consumed": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of credits consumed by the database server" + }, + "cpu_credits_remaining": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of credits available to burst" + }, + "cpu_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "CPU percent" + }, + "deadlocks": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "DatabaseName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of deadlocks detected in this database" + }, + "disk_bandwidth_consumed_percentage": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of disk bandwidth consumed per minute" + }, + "disk_iops_consumed_percentage": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of disk I/Os consumed per minute" + }, + "disk_queue_depth": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of outstanding I/O operations to the data disk" + }, + "iops": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "IO Operations per second" + }, + "is_db_alive": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Indicates if the database is up or not" + }, + "logical_replication_delay_in_bytes": { + "Unit": "Bytes", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Maximum lag across all logical replication slots" + }, + "longest_query_time_sec": { + "Unit": "Seconds", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The age in seconds of the longest query that is currently running" + }, + "longest_transaction_time_sec": { + "Unit": "Seconds", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The age in seconds of the longest transaction (including idle transactions)" + }, + "max_connections": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Max connections" + }, + "maximum_used_transactionIDs": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Maximum Used Transaction IDs" + }, + "memory_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Memory percent" + }, + "n_dead_tup_user_tables": { + "Unit": "Count", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "DatabaseName", + "Time Grains": "PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Estimated number of dead rows for user only tables in this database" + }, + "n_live_tup_user_tables": { + "Unit": "Count", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "DatabaseName", + "Time Grains": "PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Estimated number of live rows for user only tables in this database" + }, + "n_mod_since_analyze_user_tables": { + "Unit": "Count", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "DatabaseName", + "Time Grains": "PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Estimated number of rows modified since user only tables were last analyzed" + }, + "network_bytes_egress": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Network Out across active connections" + }, + "network_bytes_ingress": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Network In across active connections" + }, + "num_pools": { + "Unit": "Count", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "DatabaseName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of connection pools" + }, + "numbackends": { + "Unit": "Count", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "DatabaseName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of backends connected to this database" + }, + "oldest_backend_time_sec": { + "Unit": "Seconds", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The age in seconds of the oldest backend (irrespective of the state)" + }, + "oldest_backend_xmin": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The actual value of the oldest xmin." + }, + "oldest_backend_xmin_age": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Age in units of the oldest xmin. It indicated how many transactions passed since oldest xmin" + }, + "physical_replication_delay_in_bytes": { + "Unit": "Bytes", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Maximum lag across all asynchronous physical replication slots" + }, + "physical_replication_delay_in_seconds": { + "Unit": "Seconds", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Read Replica lag in seconds" + }, + "read_iops": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of data disk I/O read operations per second" + }, + "read_throughput": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Bytes read per second from the data disk during monitoring period" + }, + "server_connections_active": { + "Unit": "Count", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "DatabaseName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Connections to PostgreSQL that are in use by a client connection" + }, + "server_connections_idle": { + "Unit": "Count", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "DatabaseName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Connections to PostgreSQL that are idle, ready to service a new client connection" + }, + "sessions_by_state": { + "Unit": "Count", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "State", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Overall state of the backends" + }, + "sessions_by_wait_event_type": { + "Unit": "Count", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "WaitEventType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Sessions by the type of event for which the backend is waiting" + }, + "storage_free": { + "Unit": "Bytes", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Storage Free" + }, + "storage_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Storage percent" + }, + "storage_used": { + "Unit": "Bytes", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Storage used" + }, + "tables_analyzed_user_tables": { + "Unit": "Count", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "DatabaseName", + "Time Grains": "PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Number of user only tables that have been analyzed in this database" + }, + "tables_autoanalyzed_user_tables": { + "Unit": "Count", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "DatabaseName", + "Time Grains": "PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Number of user only tables that have been analyzed by the autovacuum daemon in this database" + }, + "tables_autovacuumed_user_tables": { + "Unit": "Count", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "DatabaseName", + "Time Grains": "PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Number of user only tables that have been vacuumed by the autovacuum daemon in this database" + }, + "tables_counter_user_tables": { + "Unit": "Count", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "DatabaseName", + "Time Grains": "PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Number of user only tables in this database" + }, + "tables_vacuumed_user_tables": { + "Unit": "Count", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "DatabaseName", + "Time Grains": "PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Number of user only tables that have been vacuumed in this database" + }, + "temp_bytes": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "DatabaseName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total amount of data written to temporary files by queries in this database" + }, + "temp_files": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "DatabaseName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of temporary files created by queries in this database" + }, + "total_pooled_connections": { + "Unit": "Count", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "DatabaseName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Current number of pooled connections" + }, + "tps": { + "Unit": "Count", + "Aggregation": "Minimum, Maximum, Total", + "Dimensions": "DatabaseName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of transactions executed within a second" + }, + "tup_deleted": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "DatabaseName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of rows deleted by queries in this database" + }, + "tup_fetched": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "DatabaseName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of rows fetched by queries in this database" + }, + "tup_inserted": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "DatabaseName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of rows inserted by queries in this database" + }, + "tup_returned": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "DatabaseName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of rows returned by queries in this database" + }, + "tup_updated": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "DatabaseName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of rows updated by queries in this database" + }, + "txlogs_storage_used": { + "Unit": "Bytes", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Transaction Log Storage Used" + }, + "vacuum_count_user_tables": { + "Unit": "Count", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "DatabaseName", + "Time Grains": "PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Number of times user only tables have been manually vacuumed in this database (not counting VACUUM FULL)" + }, + "write_iops": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of data disk I/O write operations per second" + }, + "write_throughput": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Bytes written per second to the data disk during monitoring period" + }, + "xact_commit": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "DatabaseName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of transactions in this database that have been committed" + }, + "xact_rollback": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "DatabaseName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of transactions in this database that have been rolled back" + }, + "xact_total": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "DatabaseName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of total transactions executed in this database" + } + }, + "microsoft.dbforpostgresql/servergroupsv2": { + "active_connections": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "ServerName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Active Connections" + }, + "apps_reserved_memory_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "ServerName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of Commit Memory Limit Reserved by Applications" + }, + "cpu_credits_consumed": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "ServerName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of credits consumed by the node. Only available when burstable compute is provisioned on the node." + }, + "cpu_credits_remaining": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "ServerName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of credits available to burst. Only available when burstable compute is provisioned on the node." + }, + "cpu_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "ServerName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "CPU percent" + }, + "iops": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "ServerName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "IO operations per second" + }, + "memory_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "ServerName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Memory percent" + }, + "network_bytes_egress": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "ServerName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Network Out across active connections" + }, + "network_bytes_ingress": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "ServerName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Network In across active connections" + }, + "replication_lag": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "ServerName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Allows to see how much read replica nodes are behind their counterparts in the primary cluster" + }, + "storage_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "ServerName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Storage percent" + }, + "storage_used": { + "Unit": "Bytes", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "ServerName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Storage used" + }, + "vm_cached_bandwidth_percent": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "ServerName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of cached disk bandwidth consumed by the VM" + }, + "vm_cached_iops_percent": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "ServerName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of cached disk IOPS consumed by the VM" + }, + "vm_uncached_bandwidth_percent": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "ServerName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of uncached disk bandwidth consumed by the VM" + }, + "vm_uncached_iops_percent": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "ServerName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of uncached disk IOPS consumed by the VM" + } + }, + "microsoft.dbforpostgresql/servers": { + "active_connections": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Active Connections" + }, + "backup_storage_used": { + "Unit": "Bytes", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Backup Storage Used" + }, + "connections_failed": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Failed Connections" + }, + "cpu_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "CPU percent" + }, + "io_consumption_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "IO percent" + }, + "memory_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Memory percent" + }, + "network_bytes_egress": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Network Out across active connections" + }, + "network_bytes_ingress": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Network In across active connections" + }, + "pg_replica_log_delay_in_bytes": { + "Unit": "Bytes", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Lag in bytes of the most lagging replica" + }, + "pg_replica_log_delay_in_seconds": { + "Unit": "Seconds", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Replica lag in seconds" + }, + "serverlog_storage_limit": { + "Unit": "Bytes", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Server Log storage limit" + }, + "serverlog_storage_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Server Log storage percent" + }, + "serverlog_storage_usage": { + "Unit": "Bytes", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Server Log storage used" + }, + "storage_limit": { + "Unit": "Bytes", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Storage limit" + }, + "storage_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Storage percent" + }, + "storage_used": { + "Unit": "Bytes", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Storage used" + } + }, + "microsoft.dbforpostgresql/serversv2": { + "active_connections": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Active Connections" + }, + "cpu_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "CPU percent" + }, + "iops": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "IO Operations per second" + }, + "memory_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Memory percent" + }, + "network_bytes_egress": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Network Out across active connections" + }, + "network_bytes_ingress": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Network In across active connections" + }, + "storage_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Storage percent" + }, + "storage_used": { + "Unit": "Bytes", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Storage used" + } + }, + "microsoft.devices/iothubs": { + "c2d.commands.egress.abandon.success": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of cloud-to-device messages abandoned by the device" + }, + "c2d.commands.egress.complete.success": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of cloud-to-device message deliveries completed successfully by the device" + }, + "c2d.commands.egress.reject.success": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of cloud-to-device messages rejected by the device" + }, + "c2d.methods.failure": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of all failed direct method calls." + }, + "c2d.methods.requestSize": { + "Unit": "Bytes", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average, min, and max of all successful direct method requests." + }, + "c2d.methods.responseSize": { + "Unit": "Bytes", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average, min, and max of all successful direct method responses." + }, + "c2d.methods.success": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of all successful direct method calls." + }, + "c2d.twin.read.failure": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of all failed back-end-initiated twin reads." + }, + "c2d.twin.read.size": { + "Unit": "Bytes", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average, min, and max of all successful back-end-initiated twin reads." + }, + "c2d.twin.read.success": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of all successful back-end-initiated twin reads." + }, + "c2d.twin.update.failure": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of all failed back-end-initiated twin updates." + }, + "c2d.twin.update.size": { + "Unit": "Bytes", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average, min, and max size of all successful back-end-initiated twin updates." + }, + "c2d.twin.update.success": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of all successful back-end-initiated twin updates." + }, + "C2DMessagesExpired": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of expired cloud-to-device messages" + }, + "configurations": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Metrics for Configuration Operations" + }, + "connectedDeviceCount": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of devices connected to your IoT hub" + }, + "d2c.endpoints.egress.builtIn.events": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of times IoT Hub routing successfully delivered messages to the built-in endpoint (messages/events)." + }, + "d2c.endpoints.egress.eventHubs": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of times IoT Hub routing successfully delivered messages to Event Hub endpoints." + }, + "d2c.endpoints.egress.serviceBusQueues": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of times IoT Hub routing successfully delivered messages to Service Bus queue endpoints." + }, + "d2c.endpoints.egress.serviceBusTopics": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of times IoT Hub routing successfully delivered messages to Service Bus topic endpoints." + }, + "d2c.endpoints.egress.storage": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of times IoT Hub routing successfully delivered messages to storage endpoints." + }, + "d2c.endpoints.egress.storage.blobs": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of times IoT Hub routing delivered blobs to storage endpoints." + }, + "d2c.endpoints.egress.storage.bytes": { + "Unit": "Bytes", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of data (bytes) IoT Hub routing delivered to storage endpoints." + }, + "d2c.endpoints.latency.builtIn.events": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average latency (milliseconds) between message ingress to IoT Hub and telemetry message ingress into the built-in endpoint (messages/events)." + }, + "d2c.endpoints.latency.eventHubs": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average latency (milliseconds) between message ingress to IoT Hub and message ingress into an Event Hub endpoint." + }, + "d2c.endpoints.latency.serviceBusQueues": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average latency (milliseconds) between message ingress to IoT Hub and telemetry message ingress into a Service Bus queue endpoint." + }, + "d2c.endpoints.latency.serviceBusTopics": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average latency (milliseconds) between message ingress to IoT Hub and telemetry message ingress into a Service Bus topic endpoint." + }, + "d2c.endpoints.latency.storage": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average latency (milliseconds) between message ingress to IoT Hub and telemetry message ingress into a storage endpoint." + }, + "d2c.telemetry.egress.dropped": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of times messages were dropped by IoT Hub routing due to dead endpoints. This value does not count messages delivered to fallback route as dropped messages are not delivered there." + }, + "d2c.telemetry.egress.fallback": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of times IoT Hub routing delivered messages to the endpoint associated with the fallback route." + }, + "d2c.telemetry.egress.invalid": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of times IoT Hub routing failed to deliver messages due to an incompatibility with the endpoint. This value does not include retries." + }, + "d2c.telemetry.egress.orphaned": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of times messages were orphaned by IoT Hub routing because they didn't match any routing rules (including the fallback rule)." + }, + "d2c.telemetry.egress.success": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of times messages were successfully delivered to all endpoints using IoT Hub routing. If a message is routed to multiple endpoints, this value increases by one for each successful delivery. If a message is delivered to the same endpoint multiple times, this value increases by one for each successful delivery." + }, + "d2c.telemetry.ingress.allProtocol": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of device-to-cloud telemetry messages attempted to be sent to your IoT hub" + }, + "d2c.telemetry.ingress.sendThrottle": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of throttling errors due to device throughput throttles" + }, + "d2c.telemetry.ingress.success": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of device-to-cloud telemetry messages sent successfully to your IoT hub" + }, + "d2c.twin.read.failure": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of all failed device-initiated twin reads." + }, + "d2c.twin.read.size": { + "Unit": "Bytes", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average, min, and max of all successful device-initiated twin reads." + }, + "d2c.twin.read.success": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of all successful device-initiated twin reads." + }, + "d2c.twin.update.failure": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of all failed device-initiated twin updates." + }, + "d2c.twin.update.size": { + "Unit": "Bytes", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average, min, and max size of all successful device-initiated twin updates." + }, + "d2c.twin.update.success": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of all successful device-initiated twin updates." + }, + "dailyMessageQuotaUsed": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of total messages used today" + }, + "deviceDataUsage": { + "Unit": "Bytes", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Bytes transferred to and from any devices connected to IotHub" + }, + "deviceDataUsageV2": { + "Unit": "Bytes", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Bytes transferred to and from any devices connected to IotHub" + }, + "devices.connectedDevices.allProtocol": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of devices connected to your IoT hub" + }, + "devices.totalDevices": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of devices registered to your IoT hub" + }, + "EventGridDeliveries": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "Result, EventType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of IoT Hub events published to Event Grid. Use the Result dimension for the number of successful and failed requests. EventType dimension shows the type of event (https://aka.ms/ioteventgrid)." + }, + "EventGridLatency": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "EventType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average latency (milliseconds) from when the Iot Hub event was generated to when the event was published to Event Grid. This number is an average between all event types. Use the EventType dimension to see latency of a specific type of event." + }, + "jobs.cancelJob.failure": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of all failed calls to cancel a job." + }, + "jobs.cancelJob.success": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of all successful calls to cancel a job." + }, + "jobs.completed": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of all completed jobs." + }, + "jobs.createDirectMethodJob.failure": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of all failed creation of direct method invocation jobs." + }, + "jobs.createDirectMethodJob.success": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of all successful creation of direct method invocation jobs." + }, + "jobs.createTwinUpdateJob.failure": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of all failed creation of twin update jobs." + }, + "jobs.createTwinUpdateJob.success": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of all successful creation of twin update jobs." + }, + "jobs.failed": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of all failed jobs." + }, + "jobs.listJobs.failure": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of all failed calls to list jobs." + }, + "jobs.listJobs.success": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of all successful calls to list jobs." + }, + "jobs.queryJobs.failure": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of all failed calls to query jobs." + }, + "jobs.queryJobs.success": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of all successful calls to query jobs." + }, + "RoutingDataSizeInBytesDelivered": { + "Unit": "Bytes", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "EndpointType, EndpointName, RoutingSource", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total size in bytes of messages delivered by IoT hub to an endpoint. You can use the EndpointName and EndpointType dimensions to view the size of the messages in bytes delivered to your different endpoints. The metric value increases for every message delivered, including if the message is delivered to multiple endpoints or if the message is delivered to the same endpoint multiple times." + }, + "RoutingDeliveries": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "EndpointType, EndpointName, FailureReasonCategory, Result, RoutingSource", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of times IoT Hub attempted to deliver messages to all endpoints using routing. To see the number of successful or failed attempts, use the Result dimension. To see the reason of failure, like invalid, dropped, or orphaned, use the FailureReasonCategory dimension. You can also use the EndpointName and EndpointType dimensions to understand how many messages were delivered to your different endpoints. The metric value increases by one for each delivery attempt, including if the message is delivered to multiple endpoints or if the message is delivered to the same endpoint multiple times." + }, + "RoutingDeliveryLatency": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "EndpointType, EndpointName, RoutingSource", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average latency (milliseconds) between message ingress to IoT Hub and telemetry message ingress into an endpoint. You can use the EndpointName and EndpointType dimensions to understand the latency to your different endpoints." + }, + "totalDeviceCount": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of devices registered to your IoT hub" + }, + "twinQueries.failure": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of all failed twin queries." + }, + "twinQueries.resultSize": { + "Unit": "Bytes", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average, min, and max of the result size of all successful twin queries." + }, + "twinQueries.success": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of all successful twin queries." + } + }, + "microsoft.devices/provisioningservices": { + "AttestationAttempts": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ProvisioningServiceName, Status, Protocol", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of device attestations attempted" + }, + "DeviceAssignments": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ProvisioningServiceName, IotHubName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of devices assigned to an IoT hub" + }, + "RegistrationAttempts": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ProvisioningServiceName, IotHubName, Status", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of device registrations attempted" + } + }, + "microsoft.digitaltwins/digitaltwinsinstances": { + "ApiRequests": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Operation, Authentication, Protocol, StatusCode, StatusCodeClass, StatusText", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of API requests made for Digital Twins read, write, delete and query operations." + }, + "ApiRequestsFailureRate": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "Operation, Authentication, Protocol", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The percentage of API requests that the service receives for your instance that return an internal error (500) response code for Digital Twins read, write, delete and query operations." + }, + "ApiRequestsLatency": { + "Unit": "Milliseconds", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "Operation, Authentication, Protocol, StatusCode, StatusCodeClass, StatusText", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The response time for API requests, i.e. from when the request is received by Azure Digital Twins until the service sends a success/fail result for Digital Twins read, write, delete and query operations." + }, + "BillingApiOperations": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "MeterId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Billing metric for the count of all API requests made against the Azure Digital Twins service." + }, + "BillingMessagesProcessed": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "MeterId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Billing metric for the number of messages sent out from Azure Digital Twins to external endpoints." + }, + "BillingQueryUnits": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "MeterId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of Query Units, an internally computed measure of service resource usage, consumed to execute queries." + }, + "DataHistoryRouting": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "EndpointType, Result", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of messages routed to a time series database." + }, + "DataHistoryRoutingFailureRate": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "EndpointType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The percentage of events that result in an error as they are routed from Azure Digital Twins to a time series database." + }, + "DataHistoryRoutingLatency": { + "Unit": "Milliseconds", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "EndpointType, Result", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Time elapsed between an event getting routed from Azure Digital Twins to when it is posted to a time series database." + }, + "ImportJobEntityCount": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "Operation, Result", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of twins, models, or relationships processed by an import job." + }, + "ImportJobLatency": { + "Unit": "Milliseconds", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "Operation, Authentication, Protocol", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total time taken for an import job to complete." + }, + "IngressEvents": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Result", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of incoming telemetry events into Azure Digital Twins." + }, + "IngressEventsFailureRate": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The percentage of incoming telemetry events for which the service returns an internal error (500) response code." + }, + "IngressEventsLatency": { + "Unit": "Milliseconds", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "Result", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The time from when an event arrives to when it is ready to be egressed by Azure Digital Twins, at which point the service sends a success/fail result." + }, + "ModelCount": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of models in the Azure Digital Twins instance. Use this metric to determine if you are approaching the service limit for max number of models allowed per instance." + }, + "Routing": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "EndpointType, Result", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of messages routed to an endpoint Azure service such as Event Hub, Service Bus or Event Grid." + }, + "RoutingFailureRate": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "EndpointType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The percentage of events that result in an error as they are routed from Azure Digital Twins to an endpoint Azure service such as Event Hub, Service Bus or Event Grid." + }, + "RoutingLatency": { + "Unit": "Milliseconds", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "EndpointType, Result", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Time elapsed between an event getting routed from Azure Digital Twins to when it is posted to the endpoint Azure service such as Event Hub, Service Bus or Event Grid." + }, + "TwinCount": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of twins in the Azure Digital Twins instance. Use this metric to determine if you are approaching the service limit for max number of twins allowed per instance." + } + }, + "microsoft.documentdb/cassandraclusters": { + "cassandra_cache_capacity": { + "Unit": "Bytes", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node, cache_name", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Cache capacity (bytes)." + }, + "cassandra_cache_entries": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node, cache_name", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total number of cache entries." + }, + "cassandra_cache_hit_rate": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "cassandra_datacenter, cassandra_node, cache_name", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "All time cache hit rate." + }, + "cassandra_cache_hits": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node, cache_name", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of cache hits." + }, + "cassandra_cache_miss_latency_histogram": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "cassandra_datacenter, cassandra_node, quantile", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Average cache miss latency (microseconds)." + }, + "cassandra_cache_miss_latency_p99": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "cassandra_datacenter, cassandra_node, cache_name", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "p99 latency of misses." + }, + "cassandra_cache_requests": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node, cache_name", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of cache requests." + }, + "cassandra_cache_size": { + "Unit": "Bytes", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node, cache_name", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Size of occupied cache (bytes)." + }, + "cassandra_client_auth_failure": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "cassandra_datacenter, cassandra_node", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of failed client authentication requests." + }, + "cassandra_client_auth_failure2": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "cassandra_datacenter, cassandra_node", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of failed client authentication requests." + }, + "cassandra_client_auth_failure3": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of failed client authentication requests." + }, + "cassandra_client_auth_success": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of successful client authentication requests." + }, + "cassandra_client_connected_native_clients": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of connected native clients." + }, + "cassandra_client_request_condition_not_met": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node, request_type", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Cumulative number of transaction preconditions did not match current values." + }, + "cassandra_client_request_contention_histogram": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "cassandra_datacenter, cassandra_node, request_type", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "How many contended reads/writes were encountered in average." + }, + "cassandra_client_request_contention_histogram_p99": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "cassandra_datacenter, cassandra_node, request_type", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "p99 how many contended writes were encountered." + }, + "cassandra_client_request_failures": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "cassandra_datacenter, cassandra_node, request_type", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of transaction failures encountered." + }, + "cassandra_client_request_failures2": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "cassandra_datacenter, cassandra_node, request_type", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of transaction failures encountered." + }, + "cassandra_client_request_failures3": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node, request_type", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Cumulative number of transaction failures encountered." + }, + "cassandra_client_request_latency_histogram": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "cassandra_datacenter, cassandra_node, quantile, request_type", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Average client request latency (microseconds)." + }, + "cassandra_client_request_latency_max": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "ClusterResourceName, DataCenterResourceName, Address, request_type", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Maximum client request latency (microseconds)." + }, + "cassandra_client_request_latency_p99": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "cassandra_datacenter, cassandra_node, request_type", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "p99 client request latency (microseconds)." + }, + "cassandra_client_request_timeouts": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "cassandra_datacenter, cassandra_node, request_type", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of timeouts encountered." + }, + "cassandra_client_request_timeouts2": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "cassandra_datacenter, cassandra_node, request_type", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of timeouts encountered." + }, + "cassandra_client_request_timeouts3": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node, request_type", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Cumulative number of timeouts encountered in client requests." + }, + "cassandra_client_request_unfinished_commit": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node, request_type", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Cumulative number of transactions that were committed on write." + }, + "cassandra_commit_log_waiting_on_commit_latency_histogram": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "cassandra_datacenter, cassandra_node, quantile", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Average time spent waiting on CL fsync (microseconds); for Periodic this is only occurs when the sync is lagging its sync interval." + }, + "cassandra_cql_prepared_statements_executed": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total number of prepared statements executed." + }, + "cassandra_cql_regular_statements_executed": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total number of non prepared statements executed." + }, + "cassandra_dropped_message_cross_node_latency": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node, message_type", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Average dropped latency across nodes." + }, + "cassandra_dropped_message_internal_latency": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node, message_type", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Average dropped latency within node." + }, + "cassandra_dropped_message_rate": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node, message_type", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Rate of dropped messages." + }, + "cassandra_hints_failed_rate": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Rate of the hints that failed deliver." + }, + "cassandra_hints_succeeded_rate": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Rate of the hints successfully delivered." + }, + "cassandra_hints_timed_out_rate": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Rate of the hints that timed out." + }, + "cassandra_jvm_gc_count": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total number of collections that have occurred." + }, + "cassandra_jvm_gc_time": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Approximate accumulated collection elapsed time." + }, + "cassandra_table_all_memtables_live_data_size": { + "Unit": "Bytes", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total amount of live data stored in the memtables (2i and pending flush memtables included) that resides off-heap, excluding any data structure overhead." + }, + "cassandra_table_all_memtables_off_heap_size": { + "Unit": "Bytes", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total amount of data stored in the memtables (2i and pending flush memtables included) that resides off-heap." + }, + "cassandra_table_bloom_filter_disk_space_used": { + "Unit": "Bytes", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Disk space used by bloom filter (bytes)." + }, + "cassandra_table_bloom_filter_false_positives": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of false positives on table's bloom filter." + }, + "cassandra_table_bloom_filter_false_ratio": { + "Unit": "Percent", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "False positive ratio of table's bloom filter." + }, + "cassandra_table_bloom_filter_off_heap_memory_used": { + "Unit": "Bytes", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Off-heap memory used by bloom filter." + }, + "cassandra_table_bytes_flushed": { + "Unit": "Bytes", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total number of bytes flushed since server [re]start." + }, + "cassandra_table_cas_commit": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Average latency of paxos commit round." + }, + "cassandra_table_cas_commit_p99": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "p99 latency of paxos commit round." + }, + "cassandra_table_cas_prepare": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Average latency of paxos prepare round." + }, + "cassandra_table_cas_prepare_p99": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "p99 latency of paxos prepare round." + }, + "cassandra_table_cas_propose": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Average latency of paxos propose round." + }, + "cassandra_table_cas_propose_p99": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "p99 latency of paxos propose round." + }, + "cassandra_table_col_update_time_delta_histogram": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Average column update time delta on this table." + }, + "cassandra_table_col_update_time_delta_histogram_p99": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "p99 column update time delta on this table." + }, + "cassandra_table_compaction_bytes_written": { + "Unit": "Bytes", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total number of bytes written by compaction since server [re]start." + }, + "cassandra_table_compression_metadata_off_heap_memory_used": { + "Unit": "Bytes", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Off-heap memory used by compression metadata." + }, + "cassandra_table_compression_ratio": { + "Unit": "Percent", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Current compression ratio for all SSTables." + }, + "cassandra_table_coordinator_read_latency": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Average coordinator read latency for this table." + }, + "cassandra_table_coordinator_read_latency_p99": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "p99 coordinator read latency for this table." + }, + "cassandra_table_coordinator_scan_latency": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Average coordinator range scan latency for this table." + }, + "cassandra_table_coordinator_scan_latency_p99": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "p99 coordinator range scan latency for this table." + }, + "cassandra_table_dropped_mutations": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of dropped mutations on this table." + }, + "cassandra_table_dropped_mutations2": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of dropped mutations on this table." + }, + "cassandra_table_dropped_mutations3": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total number of dropped mutations on this table." + }, + "cassandra_table_estimated_column_count_histogram": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Estimated number of columns in average." + }, + "cassandra_table_estimated_column_count_histogram_p99": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "p99 estimated number of columns." + }, + "cassandra_table_estimated_partition_count": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Approximate number of keys in table." + }, + "cassandra_table_estimated_partition_size_histogram": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "cassandra_datacenter, cassandra_node, quantile, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Estimated partition size in average." + }, + "cassandra_table_estimated_partition_size_histogram_p99": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "p99 estimated partition size (bytes)." + }, + "cassandra_table_index_summary_off_heap_memory_used": { + "Unit": "Bytes", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Off-heap memory used by index summary." + }, + "cassandra_table_key_cache_hit_rate": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Key cache hit rate for this table." + }, + "cassandra_table_live_disk_space_used": { + "Unit": "Bytes", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Disk space used by SSTables belonging to this table (bytes)." + }, + "cassandra_table_live_scanned_histogram": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Average live cells scanned in queries on this table." + }, + "cassandra_table_live_scanned_histogram_p99": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "p99 live cells scanned in queries on this table." + }, + "cassandra_table_live_sstable_count": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of SSTables on disk for this table." + }, + "cassandra_table_max_partition_size": { + "Unit": "Bytes", + "Aggregation": "Maximum", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Size of the largest compacted partition (bytes)." + }, + "cassandra_table_mean_partition_size": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Size of the average compacted partition (bytes)." + }, + "cassandra_table_memtable_columns_count": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total number of columns present in the memtable." + }, + "cassandra_table_memtable_off_heap_size": { + "Unit": "Bytes", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total amount of data stored in the memtable that resides off-heap, including column related overhead and partitions overwritten." + }, + "cassandra_table_memtable_on_heap_size": { + "Unit": "Bytes", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total amount of data stored in the memtable that resides on-heap, including column related overhead and partitions overwritten." + }, + "cassandra_table_memtable_switch_count": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of times flush has resulted in the memtable being switched out." + }, + "cassandra_table_min_partition_size": { + "Unit": "Bytes", + "Aggregation": "Minimum", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Size of the smallest compacted partition (bytes)." + }, + "cassandra_table_pending_compactions": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Estimate of number of pending compactions for this table." + }, + "cassandra_table_pending_compactions2": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Estimate of number of pending compactions for this table." + }, + "cassandra_table_pending_compactions3": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Estimate of number of pending compactions for this table." + }, + "cassandra_table_pending_flushes": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Estimated number of flush tasks pending for this table." + }, + "cassandra_table_pending_flushes2": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Estimated number of flush tasks pending for this table." + }, + "cassandra_table_pending_flushes3": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Estimated number of flush tasks pending for this table." + }, + "cassandra_table_percent_repaired": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Percent of table data that is repaired on disk." + }, + "cassandra_table_range_latency": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Average local range scan latency for this table." + }, + "cassandra_table_range_latency_p99": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "p99 local range scan latency for this table." + }, + "cassandra_table_read_latency": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Average local read latency for this table." + }, + "cassandra_table_read_latency_p99": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "p99 local read latency for this table." + }, + "cassandra_table_row_cache_hit": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of table row cache hits." + }, + "cassandra_table_row_cache_hit_out_of_range": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of table row cache hits that do not satisfy the query filter, thus went to disk." + }, + "cassandra_table_row_cache_miss": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of table row cache misses." + }, + "cassandra_table_speculative_retries": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of times speculative retries were sent for this table." + }, + "cassandra_table_sstables_per_read_histogram": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Average number of sstable data files accessed per single partition read. SSTables skipped due to Bloom Filters, min-max key or partition index lookup are not taken into account." + }, + "cassandra_table_sstables_per_read_histogram_p99": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "p99 number of sstable data files accessed per single partition read. SSTables skipped due to Bloom Filters, min-max key or partition index lookup are not taken into account." + }, + "cassandra_table_tombstone_scanned_histogram": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Average tombstones scanned in queries on this table." + }, + "cassandra_table_tombstone_scanned_histogram_p99": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "p99 tombstones scanned in queries on this table." + }, + "cassandra_table_total_disk_space_used": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "Total disk space used by SSTables belonging to this table, including obsolete ones waiting to be GC'd." + }, + "cassandra_table_total_disk_space_used2": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "Total disk space used by SSTables belonging to this table, including obsolete ones waiting to be GC'd." + }, + "cassandra_table_total_disk_space_used3": { + "Unit": "Bytes", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total disk space used by SSTables belonging to this table, including obsolete ones waiting to be GC'd." + }, + "cassandra_table_view_lock_acquire_time": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Average time taken acquiring a partition lock for materialized view updates on this table." + }, + "cassandra_table_view_lock_acquire_time_p99": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "p99 time taken acquiring a partition lock for materialized view updates on this table." + }, + "cassandra_table_view_read_time": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Average time taken during the local read of a materialized view update." + }, + "cassandra_table_view_read_time_p99": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "p99 time taken during the local read of a materialized view update." + }, + "cassandra_table_waiting_on_free_memtable_space": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Average time spent waiting for free memtable space, either on- or off-heap." + }, + "cassandra_table_waiting_on_free_memtable_space_p99": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "p99 time spent waiting for free memtable space, either on- or off-heap." + }, + "cassandra_table_write_latency": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Average local write latency for this table." + }, + "cassandra_table_write_latency_p99": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "cassandra_datacenter, cassandra_node, table, keyspace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "p99 local write latency for this table." + }, + "cassandra_thread_pools_active_tasks": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node, pool_name, pool_type", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of tasks being actively worked on by this pool." + }, + "cassandra_thread_pools_currently_blocked_tasks": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "cassandra_datacenter, cassandra_node, pool_name, pool_type", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked." + }, + "cassandra_thread_pools_currently_blocked_tasks2": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "cassandra_datacenter, cassandra_node, pool_name, pool_type", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked." + }, + "cassandra_thread_pools_currently_blocked_tasks3": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node, pool_name, pool_type", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked." + }, + "cassandra_thread_pools_max_pool_size": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "cassandra_datacenter, cassandra_node, pool_name, pool_type", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Maximum number of threads in this pool." + }, + "cassandra_thread_pools_pending_tasks": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node, pool_name, pool_type", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of queued tasks queued up on this pool." + }, + "cassandra_thread_pools_total_blocked_tasks": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "cassandra_datacenter, cassandra_node, pool_name, pool_type", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total number of tasks that were blocked due to queue saturation." + }, + "cpu": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "ClusterResourceName, DataCenterResourceName, Address, Kind, CPU", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "CPU usage (active)." + }, + "disk_utilization": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "ClusterResourceName, DataCenterResourceName, Address", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Disk utilization rate." + }, + "diskio_merged_reads": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "ClusterResourceName, DataCenterResourceName, Address, Kind", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Cumulative disk I/O merged reads." + }, + "diskio_merged_writes": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "ClusterResourceName, DataCenterResourceName, Address, Kind", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Cumulative disk I/O merged writes." + }, + "diskio_read_bytes": { + "Unit": "Bytes", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "ClusterResourceName, DataCenterResourceName, Address, Kind", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Cumulative disk I/O read bytes." + }, + "diskio_read_time": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "ClusterResourceName, DataCenterResourceName, Address, Kind", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Cumulative disk I/O read time (milliseconds)." + }, + "diskio_reads": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "ClusterResourceName, DataCenterResourceName, Address, Kind", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Cumulative disk I/O read counts." + }, + "diskio_write_bytes": { + "Unit": "Bytes", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "ClusterResourceName, DataCenterResourceName, Address, Kind", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Cumulative disk I/O write bytes." + }, + "diskio_write_time": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "ClusterResourceName, DataCenterResourceName, Address, Kind", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Cumulative disk I/O write time (milliseconds)." + }, + "diskio_writes": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "ClusterResourceName, DataCenterResourceName, Address, Kind", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Cumulative disk I/O write counts." + }, + "ethtool_rx_bytes": { + "Unit": "Bytes", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "ClusterResourceName, DataCenterResourceName, Address, Kind", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Cumulative network received bytes." + }, + "ethtool_rx_packets": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "ClusterResourceName, DataCenterResourceName, Address, Kind", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Cumulative network received packets." + }, + "ethtool_tx_bytes": { + "Unit": "Bytes", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "ClusterResourceName, DataCenterResourceName, Address, Kind", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Cumulative network transmitted bytes." + }, + "ethtool_tx_packets": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "ClusterResourceName, DataCenterResourceName, Address, Kind", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Cumulative network transmitted packets." + }, + "percent_mem": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "ClusterResourceName, DataCenterResourceName, Address", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Memory utilization rate." + } + }, + "microsoft.documentdb/databaseaccounts": { + "AddRegion": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "Region", + "Time Grains": "PT5M", + "DS Export": "Yes", + "Description": "Region Added" + }, + "AutoscaleMaxThroughput": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "DatabaseName, CollectionName", + "Time Grains": "PT5M, PT1H", + "DS Export": "No", + "Description": "Autoscale Max Throughput" + }, + "AvailableStorage": { + "Unit": "Bytes", + "Aggregation": "Total, Average", + "Dimensions": "CollectionName, DatabaseName, Region", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "\"Available Storage\"will be removed from Azure Monitor at the end of September 2023. Cosmos DB collection storage size is now unlimited. The only restriction is that the storage size for each logical partition key is 20GB. You can enable PartitionKeyStatistics in Diagnostic Log to know the storage consumption for top partition keys. For more info about Cosmos DB storage quota, please check this doc https://docs.microsoft.com/azure/cosmos-db/concepts-limits. After deprecation, the remaining alert rules still defined on the deprecated metric will be automatically disabled post the deprecation date." + }, + "CassandraConnectionClosures": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "APIType, Region, ClosureReason", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of Cassandra connections that were closed, reported at a 1 minute granularity" + }, + "CassandraConnectorAvgReplicationLatency": { + "Unit": "MilliSeconds", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "Cassandra Connector Average ReplicationLatency" + }, + "CassandraConnectorReplicationHealthStatus": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "NotStarted, ReplicationInProgress, Error", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "Cassandra Connector Replication Health Status" + }, + "CassandraKeyspaceCreate": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "ResourceName, ApiKind, ApiKindResourceType, IsThroughputRequest, OperationType", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "Cassandra Keyspace Created" + }, + "CassandraKeyspaceDelete": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "ResourceName, ApiKind, ApiKindResourceType, OperationType", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "Cassandra Keyspace Deleted" + }, + "CassandraKeyspaceThroughputUpdate": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "ResourceName, ApiKind, ApiKindResourceType, IsThroughputRequest", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "Cassandra Keyspace Throughput Updated" + }, + "CassandraKeyspaceUpdate": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "ResourceName, ApiKind, ApiKindResourceType, IsThroughputRequest, OperationType", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "Cassandra Keyspace Updated" + }, + "CassandraRequestCharges": { + "Unit": "Count", + "Aggregation": "Total, Average, Minimum, Maximum", + "Dimensions": "APIType, DatabaseName, CollectionName, Region, OperationType, ResourceType", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "RUs consumed for Cassandra requests made" + }, + "CassandraRequests": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "APIType, DatabaseName, CollectionName, Region, OperationType, ResourceType, ErrorCode", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of Cassandra requests made" + }, + "CassandraTableCreate": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "ResourceName, ChildResourceName, ApiKind, ApiKindResourceType, IsThroughputRequest, OperationType", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "Cassandra Table Created" + }, + "CassandraTableDelete": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "ResourceName, ChildResourceName, ApiKind, ApiKindResourceType, OperationType", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "Cassandra Table Deleted" + }, + "CassandraTableThroughputUpdate": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "ResourceName, ChildResourceName, ApiKind, ApiKindResourceType, IsThroughputRequest", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "Cassandra Table Throughput Updated" + }, + "CassandraTableUpdate": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "ResourceName, ChildResourceName, ApiKind, ApiKindResourceType, IsThroughputRequest, OperationType", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "Cassandra Table Updated" + }, + "CreateAccount": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M", + "DS Export": "Yes", + "Description": "Account Created" + }, + "DataUsage": { + "Unit": "Bytes", + "Aggregation": "Total, Average, Maximum, Minimum", + "Dimensions": "CollectionName, DatabaseName, Region", + "Time Grains": "PT5M, PT15M, PT30M, PT1H", + "DS Export": "No", + "Description": "Total data usage reported at 5 minutes granularity" + }, + "DedicatedGatewayAverageCPUUsage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "Region, MetricType", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "Average CPU usage across dedicated gateway instances" + }, + "DedicatedGatewayAverageMemoryUsage": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "Region", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "Average memory usage across dedicated gateway instances, which is used for both routing requests and caching data" + }, + "DedicatedGatewayCPUUsage": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "Region, ApplicationType", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "CPU usage across dedicated gateway instances" + }, + "DedicatedGatewayMaximumCPUUsage": { + "Unit": "Percent", + "Aggregation": "Average, Maximum", + "Dimensions": "Region, MetricType", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "Average Maximum CPU usage across dedicated gateway instances" + }, + "DedicatedGatewayMemoryUsage": { + "Unit": "Bytes", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "Region, ApplicationType", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Memory usage across dedicated gateway instances" + }, + "DedicatedGatewayRequests": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "DatabaseName, CollectionName, CacheExercised, OperationName, Region, CacheHit", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Requests at the dedicated gateway" + }, + "DeleteAccount": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M", + "DS Export": "Yes", + "Description": "Account Deleted" + }, + "DocumentCount": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "CollectionName, DatabaseName, Region", + "Time Grains": "PT5M, PT1H, P1D", + "DS Export": "No", + "Description": "Total document count reported at 5 minutes, 1 hour and 1 day granularity" + }, + "DocumentQuota": { + "Unit": "Bytes", + "Aggregation": "Total, Average", + "Dimensions": "CollectionName, DatabaseName, Region", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "Total storage quota reported at 5 minutes granularity" + }, + "GremlinDatabaseCreate": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "ResourceName, ApiKind, ApiKindResourceType, IsThroughputRequest, OperationType", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "Gremlin Database Created" + }, + "GremlinDatabaseDelete": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "ResourceName, ApiKind, ApiKindResourceType, OperationType", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "Gremlin Database Deleted" + }, + "GremlinDatabaseThroughputUpdate": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "ResourceName, ApiKind, ApiKindResourceType, IsThroughputRequest", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "Gremlin Database Throughput Updated" + }, + "GremlinDatabaseUpdate": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "ResourceName, ApiKind, ApiKindResourceType, IsThroughputRequest, OperationType", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "Gremlin Database Updated" + }, + "GremlinGraphCreate": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "ResourceName, ChildResourceName, ApiKind, ApiKindResourceType, IsThroughputRequest, OperationType", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "Gremlin Graph Created" + }, + "GremlinGraphDelete": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "ResourceName, ChildResourceName, ApiKind, ApiKindResourceType, OperationType", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "Gremlin Graph Deleted" + }, + "GremlinGraphThroughputUpdate": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "ResourceName, ChildResourceName, ApiKind, ApiKindResourceType, IsThroughputRequest", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "Gremlin Graph Throughput Updated" + }, + "GremlinGraphUpdate": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "ResourceName, ChildResourceName, ApiKind, ApiKindResourceType, IsThroughputRequest, OperationType", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "Gremlin Graph Updated" + }, + "GremlinRequestCharges": { + "Unit": "Count", + "Aggregation": "Total, Average, Minimum, Maximum", + "Dimensions": "APIType, DatabaseName, CollectionName, Region", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Request Units consumed for Gremlin requests made" + }, + "GremlinRequests": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "APIType, DatabaseName, CollectionName, Region, ErrorCode", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of Gremlin requests made" + }, + "IndexUsage": { + "Unit": "Bytes", + "Aggregation": "Total, Average, Maximum, Minimum", + "Dimensions": "CollectionName, DatabaseName, Region", + "Time Grains": "PT5M, PT15M, PT30M, PT1H", + "DS Export": "No", + "Description": "Total index usage reported at 5 minutes granularity" + }, + "IntegratedCacheEvictedEntriesSize": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "Region", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "Size of the entries evicted from the integrated cache" + }, + "IntegratedCacheItemExpirationCount": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Region, CacheEntryType", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "Number of items evicted from the integrated cache due to TTL expiration" + }, + "IntegratedCacheItemHitRate": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "Region, CacheEntryType", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "Number of point reads that used the integrated cache divided by number of point reads routed through the dedicated gateway with eventual consistency" + }, + "IntegratedCacheQueryExpirationCount": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Region, CacheEntryType", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "Number of queries evicted from the integrated cache due to TTL expiration" + }, + "IntegratedCacheQueryHitRate": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "Region, CacheEntryType", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "Number of queries that used the integrated cache divided by number of queries routed through the dedicated gateway with eventual consistency" + }, + "MaterializedViewCatchupGapInMinutes": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "Region, TargetContainerName, BuildType", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Maximum time difference in minutes between data in source container and data propagated to materialized view" + }, + "MaterializedViewsBuilderAverageCPUUsage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "Region, MetricType", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "Average CPU usage across materialized view builder instances, which are used for populating data in materialized views" + }, + "MaterializedViewsBuilderAverageMemoryUsage": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "Region", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "Average memory usage across materialized view builder instances, which are used for populating data in materialized views" + }, + "MaterializedViewsBuilderMaximumCPUUsage": { + "Unit": "Percent", + "Aggregation": "Average, Maximum", + "Dimensions": "Region, MetricType", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "Average Maximum CPU usage across materialized view builder instances, which are used for populating data in materialized views" + }, + "MetadataRequests": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "DatabaseName, CollectionName, Region, StatusCode, Role", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Count of metadata requests. Cosmos DB maintains system metadata collection for each account, that allows you to enumerate collections, databases, etc, and their configurations, free of charge." + }, + "MongoCollectionCreate": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "ResourceName, ChildResourceName, ApiKind, ApiKindResourceType, IsThroughputRequest, OperationType", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "Mongo Collection Created" + }, + "MongoCollectionDelete": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "ResourceName, ChildResourceName, ApiKind, ApiKindResourceType, OperationType", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "Mongo Collection Deleted" + }, + "MongoCollectionThroughputUpdate": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "ResourceName, ChildResourceName, ApiKind, ApiKindResourceType, IsThroughputRequest", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "Mongo Collection Throughput Updated" + }, + "MongoCollectionUpdate": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "ResourceName, ChildResourceName, ApiKind, ApiKindResourceType, IsThroughputRequest, OperationType", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "Mongo Collection Updated" + }, + "MongoDatabaseDelete": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "ResourceName, ApiKind, ApiKindResourceType, OperationType", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "Mongo Database Deleted" + }, + "MongoDatabaseThroughputUpdate": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "ResourceName, ApiKind, ApiKindResourceType, IsThroughputRequest", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "Mongo Database Throughput Updated" + }, + "MongoDBDatabaseCreate": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "ResourceName, ApiKind, ApiKindResourceType, IsThroughputRequest, OperationType", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "Mongo Database Created" + }, + "MongoDBDatabaseUpdate": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "ResourceName, ApiKind, ApiKindResourceType, IsThroughputRequest, OperationType", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "Mongo Database Updated" + }, + "MongoRequestCharge": { + "Unit": "Count", + "Aggregation": "Total, Average, Maximum", + "Dimensions": "DatabaseName, CollectionName, Region, CommandName, ErrorCode, Status", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Mongo Request Units Consumed" + }, + "MongoRequests": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "DatabaseName, CollectionName, Region, CommandName, ErrorCode, Status", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of Mongo Requests Made" + }, + "NormalizedRUConsumption": { + "Unit": "Percent", + "Aggregation": "Maximum, Average", + "Dimensions": "CollectionName, DatabaseName, Region, PartitionKeyRangeId, CollectionRid, PhysicalPartitionId", + "Time Grains": "PT1M, PT5M, PT1H, P1D", + "DS Export": "No", + "Description": "Max RU consumption percentage per minute" + }, + "OfflineRegion": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "Region, StatusCode, Role, OperationName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Region Offlined" + }, + "OnlineRegion": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "Region, StatusCode, Role, OperationName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Region Onlined" + }, + "PhysicalPartitionSizeInfo": { + "Unit": "Bytes", + "Aggregation": "Maximum, Average", + "Dimensions": "CollectionName, DatabaseName, PhysicalPartitionId, OfferOwnerRid, Region", + "Time Grains": "PT1M, PT5M, PT1H, P1D", + "DS Export": "No", + "Description": "Physical Partition Size in bytes" + }, + "PhysicalPartitionThroughputInfo": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "CollectionName, DatabaseName, PhysicalPartitionId, OfferOwnerRid, Region", + "Time Grains": "PT1M, PT5M, PT1H, P1D", + "DS Export": "No", + "Description": "Physical Partition Throughput" + }, + "ProvisionedThroughput": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "DatabaseName, CollectionName, AllowWrite", + "Time Grains": "PT5M, PT1H, P1D", + "DS Export": "No", + "Description": "Provisioned Throughput" + }, + "RegionFailover": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M", + "DS Export": "Yes", + "Description": "Region Failed Over" + }, + "RemoveRegion": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "Region", + "Time Grains": "PT5M", + "DS Export": "Yes", + "Description": "Region Removed" + }, + "ReplicationLatency": { + "Unit": "MilliSeconds", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "SourceRegion, TargetRegion", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "P99 Replication Latency across source and target regions for geo-enabled account" + }, + "ServerSideLatency": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "DatabaseName, CollectionName, Region, ConnectionMode, OperationType, PublicAPIType", + "Time Grains": "PT1M, PT5M, PT1H, P1D", + "DS Export": "No", + "Description": "Server Side Latency" + }, + "ServerSideLatencyDirect": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Minimum, Maximum, Total, Percentile", + "Dimensions": "DatabaseName, CollectionName, Region, ConnectionMode, OperationType, PublicAPIType, APIType", + "Time Grains": "PT1M, PT5M, PT1H, P1D", + "DS Export": "No", + "Description": "Server Side Latency in Direct Connection Mode" + }, + "ServerSideLatencyGateway": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Minimum, Maximum, Total, Percentile", + "Dimensions": "DatabaseName, CollectionName, Region, ConnectionMode, OperationType, PublicAPIType, APIType", + "Time Grains": "PT1M, PT5M, PT1H, P1D", + "DS Export": "No", + "Description": "Server Side Latency in Gateway Connection Mode" + }, + "ServiceAvailability": { + "Unit": "Percent", + "Aggregation": "Minimum, Average, Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1H", + "DS Export": "No", + "Description": "Account requests availability at one hour, day or month granularity" + }, + "SqlContainerCreate": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "ResourceName, ChildResourceName, ApiKind, ApiKindResourceType, IsThroughputRequest, OperationType", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "Sql Container Created" + }, + "SqlContainerDelete": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "ResourceName, ChildResourceName, ApiKind, ApiKindResourceType, OperationType", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "Sql Container Deleted" + }, + "SqlContainerThroughputUpdate": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "ResourceName, ChildResourceName, ApiKind, ApiKindResourceType, IsThroughputRequest", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "Sql Container Throughput Updated" + }, + "SqlContainerUpdate": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "ResourceName, ChildResourceName, ApiKind, ApiKindResourceType, IsThroughputRequest, OperationType", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "Sql Container Updated" + }, + "SqlDatabaseCreate": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "ResourceName, ApiKind, ApiKindResourceType, IsThroughputRequest, OperationType", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "Sql Database Created" + }, + "SqlDatabaseDelete": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "ResourceName, ApiKind, ApiKindResourceType, OperationType", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "Sql Database Deleted" + }, + "SqlDatabaseThroughputUpdate": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "ResourceName, ApiKind, ApiKindResourceType, IsThroughputRequest", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "Sql Database Throughput Updated" + }, + "SqlDatabaseUpdate": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "ResourceName, ApiKind, ApiKindResourceType, IsThroughputRequest, OperationType", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "Sql Database Updated" + }, + "TableTableCreate": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "ResourceName, ApiKind, ApiKindResourceType, IsThroughputRequest, OperationType", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "AzureTable Table Created" + }, + "TableTableDelete": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "ResourceName, ApiKind, ApiKindResourceType, OperationType", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "AzureTable Table Deleted" + }, + "TableTableThroughputUpdate": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "ResourceName, ApiKind, ApiKindResourceType, IsThroughputRequest", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "AzureTable Table Throughput Updated" + }, + "TableTableUpdate": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "ResourceName, ApiKind, ApiKindResourceType, IsThroughputRequest, OperationType", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "AzureTable Table Updated" + }, + "TotalRequests": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "DatabaseName, CollectionName, Region, StatusCode, OperationType, Status, CapacityType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of requests made" + }, + "TotalRequestsPreview": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "DatabaseName, CollectionName, Region, StatusCode, OperationType, Status, IsExternal", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of SQL requests" + }, + "TotalRequestUnits": { + "Unit": "Count", + "Aggregation": "Total, Average, Maximum", + "Dimensions": "DatabaseName, CollectionName, Region, StatusCode, OperationType, Status, CapacityType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "SQL Request Units consumed" + }, + "TotalRequestUnitsPreview": { + "Unit": "Count", + "Aggregation": "Total, Average, Maximum", + "Dimensions": "DatabaseName, CollectionName, Region, StatusCode, OperationType, Status, CapacityType, PriorityLevel", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Request Units consumed with CapacityType" + }, + "UpdateAccountKeys": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "KeyType", + "Time Grains": "PT5M", + "DS Export": "Yes", + "Description": "Account Keys Updated" + }, + "UpdateAccountNetworkSettings": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M", + "DS Export": "Yes", + "Description": "Account Network Settings Updated" + }, + "UpdateAccountReplicationSettings": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M", + "DS Export": "Yes", + "Description": "Account Replication Settings Updated" + }, + "UpdateDiagnosticsSettings": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "DiagnosticSettingsName, ResourceGroupName", + "Time Grains": "PT5M", + "DS Export": "No", + "Description": "Account Diagnostic Settings Updated" + } + }, + "microsoft.documentdb/mongoclusters": { + "CommittedMemoryPercent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "ServerName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Percentage of Commit Memory Limit allocated by applications on node" + }, + "CpuPercent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "ServerName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Percent CPU utilization on node" + }, + "IOPS": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "ServerName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Disk IO operations per second on node" + }, + "MemoryPercent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "ServerName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Percent memory utilization on node" + }, + "StoragePercent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "ServerName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Percent of available storage used on node" + }, + "StorageUsed": { + "Unit": "Bytes", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "ServerName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Quantity of available storage used on node" + } + }, + "microsoft.edgezones/edgezones": { + "DiskStorageIOPSUsage": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The total IOPS generated by Managed Disks in Azure Edge Zone Enterprise site." + }, + "DiskStorageUsedSizeUsage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1H", + "DS Export": "Yes", + "Description": "The utilization of the Managed Disk capacity in Azure Edge Zone Enterprise site." + }, + "RegionSiteConnectivity": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The status of an Edge Zone Enterprise link connection to its Azure region" + }, + "TotalDiskStorageSizeCapacity": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1H", + "DS Export": "Yes", + "Description": "The total capacity of Managed Disk in Azure Edge Zone Enterprise site." + }, + "TotalVcoreCapacity": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total capacity of the General-Purpose Compute vcore in Edge Zone Enterprise site." + }, + "VcoresUsage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The utilization of the General-Purpose Compute vcores in Edge Zone Enterprise site" + } + }, + "microsoft.eventgrid/domains": { + "AdvancedFilterEvaluationCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Topic, EventSubscriptionName, DomainEventSubscriptionName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total advanced filters evaluated across event subscriptions for this topic." + }, + "DeadLetteredCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Topic, EventSubscriptionName, DomainEventSubscriptionName, DeadLetterReason", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total dead lettered events matching to this event subscription" + }, + "DeliveryAttemptFailCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Topic, EventSubscriptionName, DomainEventSubscriptionName, Error, ErrorType", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total events failed to deliver to this event subscription" + }, + "DeliverySuccessCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Topic, EventSubscriptionName, DomainEventSubscriptionName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total events delivered to this event subscription" + }, + "DestinationProcessingDurationInMs": { + "Unit": "MilliSeconds", + "Aggregation": "Average", + "Dimensions": "Topic, EventSubscriptionName, DomainEventSubscriptionName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Destination processing duration in milliseconds" + }, + "DroppedEventCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Topic, EventSubscriptionName, DomainEventSubscriptionName, DropReason", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total dropped events matching to this event subscription" + }, + "MatchedEventCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Topic, EventSubscriptionName, DomainEventSubscriptionName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total events matched to this event subscription" + }, + "PublishFailCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Topic, ErrorType, Error", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total events failed to publish to this topic" + }, + "PublishSuccessCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Topic", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total events published to this topic" + }, + "PublishSuccessLatencyInMs": { + "Unit": "MilliSeconds", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Publish success latency in milliseconds" + } + }, + "microsoft.eventgrid/eventsubscriptions": { + "DeadLetteredCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "DeadLetterReason", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total dead lettered events matching to this event subscription" + }, + "DeliveryAttemptFailCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Error, ErrorType", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total events failed to deliver to this event subscription" + }, + "DeliverySuccessCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total events delivered to this event subscription" + }, + "DestinationProcessingDurationInMs": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Destination processing duration in milliseconds" + }, + "DroppedEventCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "DropReason", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total dropped events matching to this event subscription" + }, + "MatchedEventCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total events matched to this event subscription" + } + }, + "microsoft.eventgrid/extensiontopics": { + "PublishFailCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ErrorType, Error", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total events failed to publish to this topic" + }, + "PublishSuccessCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total events published to this topic" + }, + "PublishSuccessLatencyInMs": { + "Unit": "Milliseconds", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Publish success latency in milliseconds" + }, + "UnmatchedEventCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total events not matching any of the event subscriptions for this topic" + } + }, + "microsoft.eventgrid/namespaces": { + "AcknowledgeLatencyInMilliseconds": { + "Unit": "Milliseconds", + "Aggregation": "Total", + "Dimensions": "Topic, EventSubscriptionName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The observed latency in milliseconds for acknowledge events operation." + }, + "FailedAcknowledgedEvents": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Topic, EventSubscriptionName, Error, ErrorType", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The number of events for which acknowledgements from clients failed." + }, + "FailedPublishedEvents": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Topic, Error, ErrorType", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The number of events that weren't accepted by Event Grid. This count excludes events that were published but failed to reach Event Grid due to a network issue, for example." + }, + "FailedReceivedEvents": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Topic, EventSubscriptionName, Error, ErrorType", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The number of events that were requested by clients but weren't delivered successfully by Event Grid." + }, + "FailedReleasedEvents": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Topic, EventSubscriptionName, Error, ErrorType", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The number of events for which release failed." + }, + "Mqtt.Connections": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Protocol", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of active connections in the namespace." + }, + "Mqtt.DroppedSessions": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "DropReason", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of dropped sessions by the namespace." + }, + "Mqtt.FailedPublishedMessages": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "QoS, Protocol, Error", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of MQTT messages that failed to be published into the namespace." + }, + "Mqtt.FailedRoutedMessages": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Error", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of failed routed messages by the namespace." + }, + "Mqtt.FailedSubscriptionOperations": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Protocol, OperationType, Error", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of failed subscription operations (Subscribe, Unsubscribe). This metric is incremented for every topic filter within a subscription request." + }, + "Mqtt.RequestCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "OperationType, Protocol, Error, Result", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of MQTT requests." + }, + "Mqtt.SuccessfulDeliveredMessages": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "QoS, Protocol", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of messages delivered by the namespace. There are no failures for this operation." + }, + "Mqtt.SuccessfulPublishedMessages": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "QoS, Protocol", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of MQTT messages that were published successfully into the namespace." + }, + "Mqtt.SuccessfulRoutedMessages": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of successful routed messages by the namespace." + }, + "Mqtt.SuccessfulSubscriptionOperations": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Protocol, OperationType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of successful subscription operations (Subscribe, Unsubscribe). This metric is incremented for every topic filter within a subscription request." + }, + "Mqtt.Throughput": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "Direction", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of bytes published to or delivered by the namespace." + }, + "PublishLatencyInMilliseconds": { + "Unit": "Milliseconds", + "Aggregation": "Total", + "Dimensions": "Topic", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The observed latency in milliseconds for publish events operation." + }, + "ReceiveLatencyInMilliseconds": { + "Unit": "Milliseconds", + "Aggregation": "Total", + "Dimensions": "Topic, EventSubscriptionName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The observed latency in milliseconds for receive events operation." + }, + "RejectLatencyInMilliseconds": { + "Unit": "Milliseconds", + "Aggregation": "Total", + "Dimensions": "Topic, EventSubscriptionName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The observed latency in milliseconds for reject events operation." + }, + "SuccessfulAcknowledgedEvents": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Topic, EventSubscriptionName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The number of events for which delivery was successfully acknowledged by clients." + }, + "SuccessfulPublishedEvents": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Topic", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The number of events published successfully to a topic or topic space within a namespace." + }, + "SuccessfulReceivedEvents": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Topic, EventSubscriptionName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The total number of events that were successfully returned to (received by) clients by Event Grid." + }, + "SuccessfulReleasedEvents": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Topic, EventSubscriptionName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The number of events that were released successfully by queue subscriber clients." + } + }, + "microsoft.eventgrid/partnernamespaces": { + "PublishFailCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ErrorType, Error", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total events failed to publish to this partner namespace" + }, + "PublishSuccessCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total events published to this partner namespace" + }, + "PublishSuccessLatencyInMs": { + "Unit": "MilliSeconds", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Publish success latency in milliseconds" + }, + "UnmatchedEventCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total events not matching any of the partner topics" + } + }, + "microsoft.eventgrid/partnertopics": { + "AdvancedFilterEvaluationCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "EventSubscriptionName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total advanced filters evaluated across event subscriptions for this partner topic." + }, + "DeadLetteredCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "DeadLetterReason, EventSubscriptionName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total dead lettered events matching to this event subscription" + }, + "DeliveryAttemptFailCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Error, ErrorType, EventSubscriptionName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total events failed to deliver to this event subscription" + }, + "DeliverySuccessCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "EventSubscriptionName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total events delivered to this event subscription" + }, + "DestinationProcessingDurationInMs": { + "Unit": "MilliSeconds", + "Aggregation": "Average", + "Dimensions": "EventSubscriptionName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Destination processing duration in milliseconds" + }, + "DroppedEventCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "DropReason, EventSubscriptionName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total dropped events matching to this event subscription" + }, + "MatchedEventCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "EventSubscriptionName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total events matched to this event subscription" + }, + "PublishSuccessCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total events published to this partner topic" + }, + "UnmatchedEventCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total events not matching any of the event subscriptions for this partner topic" + } + }, + "microsoft.eventgrid/systemtopics": { + "AdvancedFilterEvaluationCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "EventSubscriptionName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total advanced filters evaluated across event subscriptions for this topic." + }, + "DeadLetteredCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "DeadLetterReason, EventSubscriptionName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total dead lettered events matching to this event subscription" + }, + "DeliveryAttemptFailCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Error, ErrorType, EventSubscriptionName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total events failed to deliver to this event subscription" + }, + "DeliverySuccessCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "EventSubscriptionName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total events delivered to this event subscription" + }, + "DestinationProcessingDurationInMs": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "EventSubscriptionName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Destination processing duration in milliseconds" + }, + "DroppedEventCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "DropReason, EventSubscriptionName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total dropped events matching to this event subscription" + }, + "MatchedEventCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "EventSubscriptionName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total events matched to this event subscription" + }, + "PublishFailCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ErrorType, Error", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total events failed to publish to this topic" + }, + "PublishSuccessCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total events published to this topic" + }, + "PublishSuccessLatencyInMs": { + "Unit": "Milliseconds", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Publish success latency in milliseconds" + }, + "ServerDeliverySuccessRate": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "EventSubscriptionName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Success rate of events delivered to this event subscription where failure is caused due to server errors" + }, + "UnmatchedEventCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total events not matching any of the event subscriptions for this topic" + } + }, + "microsoft.eventgrid/topics": { + "AdvancedFilterEvaluationCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "EventSubscriptionName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total advanced filters evaluated across event subscriptions for this topic." + }, + "DeadLetteredCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "DeadLetterReason, EventSubscriptionName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total dead lettered events matching to this event subscription" + }, + "DeliveryAttemptFailCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Error, ErrorType, EventSubscriptionName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total events failed to deliver to this event subscription" + }, + "DeliverySuccessCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "EventSubscriptionName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total events delivered to this event subscription" + }, + "DestinationProcessingDurationInMs": { + "Unit": "MilliSeconds", + "Aggregation": "Average", + "Dimensions": "EventSubscriptionName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Destination processing duration in milliseconds" + }, + "DroppedEventCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "DropReason, EventSubscriptionName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total dropped events matching to this event subscription" + }, + "MatchedEventCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "EventSubscriptionName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total events matched to this event subscription" + }, + "PublishFailCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ErrorType, Error", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total events failed to publish to this topic" + }, + "PublishSuccessCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total events published to this topic" + }, + "PublishSuccessLatencyInMs": { + "Unit": "MilliSeconds", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Publish success latency in milliseconds" + }, + "UnmatchedEventCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total events not matching any of the event subscriptions for this topic" + } + }, + "microsoft.eventhub/clusters": { + "ActiveConnections": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total Active Connections for Microsoft.EventHub." + }, + "AvailableMemory": { + "Unit": "Percent", + "Aggregation": "Maximum", + "Dimensions": "Role", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Available memory for the Event Hub Cluster as a percentage of total memory." + }, + "CaptureBacklog": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Capture Backlog for Microsoft.EventHub." + }, + "CapturedBytes": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Captured Bytes for Microsoft.EventHub." + }, + "CapturedMessages": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Captured Messages for Microsoft.EventHub." + }, + "ConnectionsClosed": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Connections Closed for Microsoft.EventHub." + }, + "ConnectionsOpened": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Connections Opened for Microsoft.EventHub." + }, + "CPU": { + "Unit": "Percent", + "Aggregation": "Maximum", + "Dimensions": "Role", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "CPU utilization for the Event Hub Cluster as a percentage" + }, + "IncomingBytes": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Incoming Bytes for Microsoft.EventHub." + }, + "IncomingMessages": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Incoming Messages for Microsoft.EventHub." + }, + "IncomingRequests": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Incoming Requests for Microsoft.EventHub." + }, + "OutgoingBytes": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Outgoing Bytes for Microsoft.EventHub." + }, + "OutgoingMessages": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Outgoing Messages for Microsoft.EventHub." + }, + "QuotaExceededErrors": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "OperationResult", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Quota Exceeded Errors for Microsoft.EventHub." + }, + "ServerErrors": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "OperationResult", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Server Errors for Microsoft.EventHub." + }, + "Size": { + "Unit": "Bytes", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "Role", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Size of an EventHub in Bytes." + }, + "SuccessfulRequests": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "OperationResult", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Successful Requests for Microsoft.EventHub." + }, + "ThrottledRequests": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "OperationResult", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Throttled Requests for Microsoft.EventHub." + }, + "UserErrors": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "OperationResult", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "User Errors for Microsoft.EventHub." + } + }, + "microsoft.eventhub/namespaces": { + "ActiveConnections": { + "Unit": "Count", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total Active Connections for Microsoft.EventHub." + }, + "CaptureBacklog": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "EntityName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Capture Backlog for Microsoft.EventHub." + }, + "CapturedBytes": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "EntityName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Captured Bytes for Microsoft.EventHub." + }, + "CapturedMessages": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "EntityName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Captured Messages for Microsoft.EventHub." + }, + "ConnectionsClosed": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "EntityName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Connections Closed for Microsoft.EventHub." + }, + "ConnectionsOpened": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "EntityName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Connections Opened for Microsoft.EventHub." + }, + "EHABL": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Event Hub archive messages in backlog for a namespace (Deprecated)" + }, + "EHAMBS": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Event Hub archived message throughput in a namespace (Deprecated)" + }, + "EHAMSGS": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Event Hub archived messages in a namespace (Deprecated)" + }, + "EHINBYTES": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Event Hub incoming message throughput for a namespace (Deprecated)" + }, + "EHINMBS": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Event Hub incoming message throughput for a namespace. This metric is deprecated. Please use Incoming bytes metric instead (Deprecated)" + }, + "EHINMSGS": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total incoming messages for a namespace (Deprecated)" + }, + "EHOUTBYTES": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Event Hub outgoing message throughput for a namespace (Deprecated)" + }, + "EHOUTMBS": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Event Hub outgoing message throughput for a namespace. This metric is deprecated. Please use Outgoing bytes metric instead (Deprecated)" + }, + "EHOUTMSGS": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total outgoing messages for a namespace (Deprecated)" + }, + "FAILREQ": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total failed requests for a namespace (Deprecated)" + }, + "IncomingBytes": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "EntityName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Incoming Bytes for Microsoft.EventHub." + }, + "IncomingMessages": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "EntityName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Incoming Messages for Microsoft.EventHub." + }, + "IncomingRequests": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "EntityName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Incoming Requests for Microsoft.EventHub." + }, + "INMSGS": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total incoming messages for a namespace. This metric is deprecated. Please use Incoming Messages metric instead (Deprecated)" + }, + "INREQS": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total incoming send requests for a namespace (Deprecated)" + }, + "INTERR": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total internal server errors for a namespace (Deprecated)" + }, + "MISCERR": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total failed requests for a namespace (Deprecated)" + }, + "NamespaceCpuUsage": { + "Unit": "Percent", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "Replica", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "CPU usage metric for Premium SKU namespaces." + }, + "NamespaceMemoryUsage": { + "Unit": "Percent", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "Replica", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Memory usage metric for Premium SKU namespaces." + }, + "OutgoingBytes": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "EntityName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Outgoing Bytes for Microsoft.EventHub." + }, + "OutgoingMessages": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "EntityName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Outgoing Messages for Microsoft.EventHub." + }, + "OUTMSGS": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total outgoing messages for a namespace. This metric is deprecated. Please use Outgoing Messages metric instead (Deprecated)" + }, + "QuotaExceededErrors": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "EntityName, OperationResult", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Quota Exceeded Errors for Microsoft.EventHub." + }, + "ServerErrors": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "EntityName, OperationResult", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Server Errors for Microsoft.EventHub." + }, + "Size": { + "Unit": "Bytes", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "EntityName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Size of an EventHub in Bytes." + }, + "SuccessfulRequests": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "EntityName, OperationResult", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Successful Requests for Microsoft.EventHub." + }, + "SUCCREQ": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total successful requests for a namespace (Deprecated)" + }, + "SVRBSY": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total server busy errors for a namespace (Deprecated)" + }, + "ThrottledRequests": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "EntityName, OperationResult", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Throttled Requests for Microsoft.EventHub." + }, + "UserErrors": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "EntityName, OperationResult", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "User Errors for Microsoft.EventHub." + } + }, + "microsoft.hdinsight/clusters": { + "CategorizedGatewayRequests": { + "Unit": "Count", + "Aggregation": "Count, Total", + "Dimensions": "HttpStatus", + "Time Grains": "PT1M, PT1H, P1D", + "DS Export": "Yes", + "Description": "Number of gateway requests by categories (1xx/2xx/3xx/4xx/5xx)" + }, + "GatewayRequests": { + "Unit": "Count", + "Aggregation": "Count, Total", + "Dimensions": "HttpStatus", + "Time Grains": "PT1M, PT1H, P1D", + "DS Export": "Yes", + "Description": "Number of gateway requests" + }, + "KafkaRestProxy.ConsumerRequest.m1_delta": { + "Unit": "CountPerSecond", + "Aggregation": "Total", + "Dimensions": "Machine, Topic", + "Time Grains": "PT1M, PT1H, P1D", + "DS Export": "Yes", + "Description": "Number of consumer requests to Kafka REST proxy" + }, + "KafkaRestProxy.ConsumerRequestFail.m1_delta": { + "Unit": "CountPerSecond", + "Aggregation": "Total", + "Dimensions": "Machine, Topic", + "Time Grains": "PT1M, PT1H, P1D", + "DS Export": "Yes", + "Description": "Consumer request exceptions" + }, + "KafkaRestProxy.ConsumerRequestTime.p95": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "Machine, Topic", + "Time Grains": "PT1M, PT1H, P1D", + "DS Export": "Yes", + "Description": "Message latency in a consumer request through Kafka REST proxy" + }, + "KafkaRestProxy.ConsumerRequestWaitingInQueueTime.p95": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "Machine, Topic", + "Time Grains": "PT1M, PT1H, P1D", + "DS Export": "Yes", + "Description": "Consumer REST proxy queue length" + }, + "KafkaRestProxy.MessagesIn.m1_delta": { + "Unit": "CountPerSecond", + "Aggregation": "Total", + "Dimensions": "Machine, Topic", + "Time Grains": "PT1M, PT1H, P1D", + "DS Export": "Yes", + "Description": "Number of producer messages through Kafka REST proxy" + }, + "KafkaRestProxy.MessagesOut.m1_delta": { + "Unit": "CountPerSecond", + "Aggregation": "Total", + "Dimensions": "Machine, Topic", + "Time Grains": "PT1M, PT1H, P1D", + "DS Export": "Yes", + "Description": "Number of consumer messages through Kafka REST proxy" + }, + "KafkaRestProxy.OpenConnections": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Machine, Topic", + "Time Grains": "PT1M, PT1H, P1D", + "DS Export": "Yes", + "Description": "Number of concurrent connections through Kafka REST proxy" + }, + "KafkaRestProxy.ProducerRequest.m1_delta": { + "Unit": "CountPerSecond", + "Aggregation": "Total", + "Dimensions": "Machine, Topic", + "Time Grains": "PT1M, PT1H, P1D", + "DS Export": "Yes", + "Description": "Number of producer requests to Kafka REST proxy" + }, + "KafkaRestProxy.ProducerRequestFail.m1_delta": { + "Unit": "CountPerSecond", + "Aggregation": "Total", + "Dimensions": "Machine, Topic", + "Time Grains": "PT1M, PT1H, P1D", + "DS Export": "Yes", + "Description": "Producer request exceptions" + }, + "KafkaRestProxy.ProducerRequestTime.p95": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "Machine, Topic", + "Time Grains": "PT1M, PT1H, P1D", + "DS Export": "Yes", + "Description": "Message latency in a producer request through Kafka REST proxy" + }, + "KafkaRestProxy.ProducerRequestWaitingInQueueTime.p95": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "Machine, Topic", + "Time Grains": "PT1M, PT1H, P1D", + "DS Export": "Yes", + "Description": "Producer REST proxy queue length" + }, + "NumActiveWorkers": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "MetricName", + "Time Grains": "PT1M, PT1H, P1D", + "DS Export": "Yes", + "Description": "Number of Active Workers" + }, + "PendingCPU": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M, PT1H, P1D", + "DS Export": "Yes", + "Description": "Pending CPU Requests in YARN" + }, + "PendingMemory": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M, PT1H, P1D", + "DS Export": "Yes", + "Description": "Pending Memory Requests in YARN" + } + }, + "microsoft.healthcareapis/services": { + "Availability": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The availability rate of the service." + }, + "CosmosDbCollectionSize": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The size of the backing Cosmos DB collection, in bytes." + }, + "CosmosDbIndexSize": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The size of the backing Cosmos DB collection's index, in bytes." + }, + "CosmosDbRequestCharge": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Operation, ResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The RU usage of requests to the service's backing Cosmos DB." + }, + "CosmosDbRequests": { + "Unit": "Count", + "Aggregation": "Sum", + "Dimensions": "Operation, ResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of requests made to a service's backing Cosmos DB." + }, + "CosmosDbThrottleRate": { + "Unit": "Count", + "Aggregation": "Sum", + "Dimensions": "Operation, ResourceType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of 429 responses from a service's backing Cosmos DB." + }, + "IoTConnectorDeviceEvent": { + "Unit": "Count", + "Aggregation": "Sum", + "Dimensions": "Operation, ConnectorName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of messages received by the Azure IoT Connector for FHIR prior to any normalization." + }, + "IoTConnectorDeviceEventProcessingLatencyMs": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "Operation, ConnectorName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average time between an event's ingestion time and the time the event is processed for normalization." + }, + "IoTConnectorMeasurement": { + "Unit": "Count", + "Aggregation": "Sum", + "Dimensions": "Operation, ConnectorName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of normalized value readings received by the FHIR conversion stage of the Azure IoT Connector for FHIR." + }, + "IoTConnectorMeasurementGroup": { + "Unit": "Count", + "Aggregation": "Sum", + "Dimensions": "Operation, ConnectorName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of unique groupings of measurements across type, device, patient, and configured time period generated by the FHIR conversion stage." + }, + "IoTConnectorMeasurementIngestionLatencyMs": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "Operation, ConnectorName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The time period between when the IoT Connector received the device data and when the data is processed by the FHIR conversion stage." + }, + "IoTConnectorNormalizedEvent": { + "Unit": "Count", + "Aggregation": "Sum", + "Dimensions": "Operation, ConnectorName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of mapped normalized values outputted from the normalization stage of the the Azure IoT Connector for FHIR." + }, + "IoTConnectorTotalErrors": { + "Unit": "Count", + "Aggregation": "Sum", + "Dimensions": "Name, Operation, ErrorType, ErrorSeverity, ConnectorName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of errors logged by the Azure IoT Connector for FHIR" + }, + "TotalErrors": { + "Unit": "Count", + "Aggregation": "Sum", + "Dimensions": "Protocol, StatusCode, StatusCodeClass, StatusCodeText", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of internal server errors encountered by the service." + }, + "TotalLatency": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "Protocol", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The response latency of the service." + }, + "TotalRequests": { + "Unit": "Count", + "Aggregation": "Sum", + "Dimensions": "Protocol", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of requests received by the service." + } + }, + "microsoft.healthcareapis/workspaces/analyticsconnectors": { + "AnalyticsConnectorHealthStatus": { + "Unit": "Count", + "Aggregation": "Sum", + "Dimensions": "Operation, Component", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The health status of analytics connector" + }, + "AnalyticsConnectorResourceLatency": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The response latency of the service." + }, + "AnalyticsConnectorSuccessfulDataSize": { + "Unit": "Count", + "Aggregation": "Sum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The size of data successfully processed by the analytics connector" + }, + "AnalyticsConnectorSuccessfulResourceCount": { + "Unit": "Count", + "Aggregation": "Sum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of data successfully processed by the analytics connector" + }, + "AnalyticsConnectorTotalError": { + "Unit": "Count", + "Aggregation": "Sum", + "Dimensions": "ErrorType, Operation", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of errors logged by the analytics connector" + } + }, + "microsoft.healthcareapis/workspaces/dicomservices": { + "ImportsProcessed": { + "Unit": "Count", + "Aggregation": "Sum", + "Dimensions": "Status, ResourceName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of DICOM files processed by an import." + } + }, + "microsoft.healthcareapis/workspaces/fhirservices": { + "Availability": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The availability rate of the service." + }, + "TotalDataSize": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total size of the data in the backing database, in bytes." + }, + "TotalErrors": { + "Unit": "Count", + "Aggregation": "Sum", + "Dimensions": "Protocol, StatusCode, StatusCodeClass, StatusCodeText", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of internal server errors encountered by the service." + }, + "TotalLatency": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "Protocol", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The response latency of the service." + }, + "TotalRequests": { + "Unit": "Count", + "Aggregation": "Sum", + "Dimensions": "Protocol", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of requests received by the service." + } + }, + "microsoft.healthcareapis/workspaces/iotconnectors": { + "DeviceEvent": { + "Unit": "Count", + "Aggregation": "Sum", + "Dimensions": "Operation, ResourceName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of messages received by the MedTech service prior to any normalization" + }, + "DeviceEventProcessingLatencyMs": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "Operation, ResourceName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average time between an event's ingestion time and the time the event is processed for normalization." + }, + "DroppedEvent": { + "Unit": "Count", + "Aggregation": "Sum", + "Dimensions": "Operation, ResourceName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of input device events with no normalized events" + }, + "FhirResourceSaved": { + "Unit": "Count", + "Aggregation": "Sum", + "Dimensions": "Operation, ResourceName, Name", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of FHIR resources saved by the MedTech service" + }, + "IotConnectorStatus": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "Operation, ResourceName, HealthCheckName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Health checks which indicate the overall health of the MedTech service" + }, + "Measurement": { + "Unit": "Count", + "Aggregation": "Sum", + "Dimensions": "Operation, ResourceName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of normalized value readings received by the FHIR conversion stage of the MedTech service" + }, + "MeasurementGroup": { + "Unit": "Count", + "Aggregation": "Sum", + "Dimensions": "Operation, ResourceName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of unique groupings of measurements across type, device, patient, and configured time period generated by the FHIR conversion stage." + }, + "MeasurementIngestionLatencyMs": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "Operation, ResourceName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The time period between when the MedTech service received the device data and when the data is processed by the FHIR conversion stage." + }, + "NormalizedEvent": { + "Unit": "Count", + "Aggregation": "Sum", + "Dimensions": "Operation, ResourceName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of mapped normalized values outputted from the normalization stage of the MedTech service" + }, + "TotalErrors": { + "Unit": "Count", + "Aggregation": "Sum", + "Dimensions": "Name, Operation, ErrorType, ErrorSeverity, ResourceName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of errors logged by the MedTech service" + } + }, + "microsoft.healthmodel/healthmodels": { + "ExecutionDuration": { + "Unit": "Milliseconds", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Overall duration of executing all configured queries in parallel and calculating the model health state." + }, + "NodeHealthScore": { + "Unit": "Percent", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "NodeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Health score per node in the model. Dimension splitting should be applied. Can be a value between 0 and 100 percent. Update frequency depends on the refreshInterval of the health model. Does not include the root node." + }, + "OverallHealthScore": { + "Unit": "Percent", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The health score of the root node represents the overall health of the model. Can be a value between 0 and 100 percent. Update frequency depends on the refreshInterval of the health model." + } + }, + "microsoft.hybridcontainerservice/provisionedclusters": { + "capacity_cpu_cores": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of cpu cores in a provisioned cluster" + } + }, + "microsoft.hybridnetwork/networkfunctions": { + "HyperVVirtualProcessorUtilization": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "InstanceName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total average percentage of virtual CPU utilization at one minute interval. The total number of virtual CPU is based on user configured value in SKU definition. Further filter can be applied based on RoleName defined in SKU." + } + }, + "microsoft.hybridnetwork/virtualnetworkfunctions": { + "HyperVVirtualProcessorUtilization": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "InstanceName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total average percentage of virtual CPU utilization at one minute interval. The total number of virtual CPU is based on user configured value in SKU definition. Further filter can be applied based on RoleName defined in SKU." + } + }, + "microsoft.insights/autoscalesettings": { + "MetricThreshold": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "MetricTriggerRule", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The configured autoscale threshold when autoscale ran." + }, + "ObservedCapacity": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The capacity reported to autoscale when it executed." + }, + "ObservedMetricValue": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "MetricTriggerSource", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The value computed by autoscale when executed" + }, + "ScaleActionsInitiated": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ScaleDirection", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The direction of the scale operation." + } + }, + "microsoft.insights/components": { + "availabilityResults/availabilityPercentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "availabilityResult/name, availabilityResult/location", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of successfully completed availability tests" + }, + "availabilityResults/count": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "availabilityResult/name, availabilityResult/location, availabilityResult/success", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Count of availability tests" + }, + "availabilityResults/duration": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "availabilityResult/name, availabilityResult/location, availabilityResult/success", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Availability test duration" + }, + "browserTimings/networkDuration": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Time between user request and network connection. Includes DNS lookup and transport connection." + }, + "browserTimings/processingDuration": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Time between receiving the last byte of a document until the DOM is loaded. Async requests may still be processing." + }, + "browserTimings/receiveDuration": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Time between the first and last bytes, or until disconnection." + }, + "browserTimings/sendDuration": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Time between network connection and receiving the first byte." + }, + "browserTimings/totalDuration": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Time from user request until DOM, stylesheets, scripts and images are loaded." + }, + "dependencies/count": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "dependency/type, dependency/performanceBucket, dependency/success, dependency/target, dependency/resultCode, operation/synthetic, cloud/roleInstance, cloud/roleName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Count of calls made by the application to external resources." + }, + "dependencies/duration": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "dependency/type, dependency/performanceBucket, dependency/success, dependency/target, dependency/resultCode, operation/synthetic, cloud/roleInstance, cloud/roleName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Duration of calls made by the application to external resources." + }, + "dependencies/failed": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "dependency/type, dependency/performanceBucket, dependency/success, dependency/target, dependency/resultCode, operation/synthetic, cloud/roleInstance, cloud/roleName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Count of failed dependency calls made by the application to external resources." + }, + "exceptions/browser": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "client/isServer, cloud/roleName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Count of uncaught exceptions thrown in the browser." + }, + "exceptions/count": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "cloud/roleName, cloud/roleInstance, client/type", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Combined count of all uncaught exceptions." + }, + "exceptions/server": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "client/isServer, cloud/roleName, cloud/roleInstance", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Count of uncaught exceptions thrown in the server application." + }, + "pageViews/count": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "operation/synthetic, cloud/roleName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of page views." + }, + "pageViews/duration": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "operation/synthetic, cloud/roleName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Page view load time" + }, + "performanceCounters/exceptionsPerSecond": { + "Unit": "CountPerSecond", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "cloud/roleInstance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of handled and unhandled exceptions reported to windows, including .NET exceptions and unmanaged exceptions that are converted into .NET exceptions." + }, + "performanceCounters/memoryAvailableBytes": { + "Unit": "Bytes", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "cloud/roleInstance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Physical memory immediately available for allocation to a process or for system use." + }, + "performanceCounters/processCpuPercentage": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "cloud/roleInstance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The percentage of elapsed time that all process threads used the processor to execute instructions. This can vary between 0 to 100. This metric indicates the performance of w3wp process alone." + }, + "performanceCounters/processIOBytesPerSecond": { + "Unit": "BytesPerSecond", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "cloud/roleInstance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total bytes per second read and written to files, network and devices." + }, + "performanceCounters/processorCpuPercentage": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "cloud/roleInstance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The percentage of time that the processor spends in non-idle threads." + }, + "performanceCounters/processPrivateBytes": { + "Unit": "Bytes", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "cloud/roleInstance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Memory exclusively assigned to the monitored application's processes." + }, + "performanceCounters/requestExecutionTime": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "cloud/roleInstance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Execution time of the most recent request." + }, + "performanceCounters/requestsInQueue": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "cloud/roleInstance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Length of the application request queue." + }, + "performanceCounters/requestsPerSecond": { + "Unit": "CountPerSecond", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "cloud/roleInstance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Rate of all requests to the application per second from ASP.NET." + }, + "requests/count": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "request/performanceBucket, request/resultCode, operation/synthetic, cloud/roleInstance, request/success, cloud/roleName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Count of HTTP requests completed." + }, + "requests/duration": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "request/performanceBucket, request/resultCode, operation/synthetic, cloud/roleInstance, request/success, cloud/roleName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Time between receiving an HTTP request and finishing sending the response." + }, + "requests/failed": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "request/performanceBucket, request/resultCode, request/success, operation/synthetic, cloud/roleInstance, cloud/roleName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Count of HTTP requests marked as failed. In most cases these are requests with a response code >= 400 and not equal to 401." + }, + "requests/rate": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "request/performanceBucket, request/resultCode, operation/synthetic, cloud/roleInstance, request/success, cloud/roleName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Rate of server requests per second" + }, + "traces/count": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "trace/severityLevel, operation/synthetic, cloud/roleName, cloud/roleInstance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Trace document count" + } + }, + "microsoft.iotcentral/iotapps": { + "c2d.commands.failure": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The count of all failed command requests initiated from IoT Central" + }, + "c2d.commands.requestSize": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Request size of all command requests initiated from IoT Central" + }, + "c2d.commands.responseSize": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Response size of all command responses initiated from IoT Central" + }, + "c2d.commands.success": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The count of all successful command requests initiated from IoT Central" + }, + "c2d.property.read.failure": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The count of all failed property reads initiated from IoT Central" + }, + "c2d.property.read.success": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The count of all successful property reads initiated from IoT Central" + }, + "c2d.property.update.failure": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The count of all failed property updates initiated from IoT Central" + }, + "c2d.property.update.success": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The count of all successful property updates initiated from IoT Central" + }, + "connectedDeviceCount": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "Number of devices connected to IoT Central" + }, + "d2c.property.read.failure": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The count of all failed property reads initiated from devices" + }, + "d2c.property.read.success": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The count of all successful property reads initiated from devices" + }, + "d2c.property.update.failure": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The count of all failed property updates initiated from devices" + }, + "d2c.property.update.success": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The count of all successful property updates initiated from devices" + }, + "d2c.telemetry.ingress.allProtocol": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Number of device-to-cloud telemetry messages attempted to be sent to the IoT Central application" + }, + "d2c.telemetry.ingress.success": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Number of device-to-cloud telemetry messages successfully sent to the IoT Central application" + }, + "dataExport.error": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "exportId, exportDisplayName, destinationId, destinationDisplayName", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Number of errors encountered for data export" + }, + "dataExport.messages.filtered": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "exportId, exportDisplayName, destinationId, destinationDisplayName", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Number of messages that have passed through filters in data export" + }, + "dataExport.messages.received": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "exportId, exportDisplayName, destinationId, destinationDisplayName", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Number of messages incoming to data export, before filtering and enrichment processing" + }, + "dataExport.messages.written": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "exportId, exportDisplayName, destinationId, destinationDisplayName", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Number of messages written to a destination" + }, + "dataExport.statusChange": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "exportId, exportDisplayName, destinationId, destinationDisplayName, status", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Number of status changes" + }, + "deviceDataUsage": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Bytes transferred to and from any devices connected to IoT Central application" + }, + "provisionedDeviceCount": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "Number of devices provisioned in IoT Central application" + } + }, + "microsoft.keyvault/managedhsms": { + "Availability": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "ActivityType, ActivityName, StatusCode, StatusCodeClass", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Service requests availability" + }, + "ServiceApiHit": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "ActivityType, ActivityName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of total service api hits" + }, + "ServiceApiLatency": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "ActivityType, ActivityName, StatusCode, StatusCodeClass", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Overall latency of service api requests" + } + }, + "microsoft.keyvault/vaults": { + "Availability": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "ActivityType, ActivityName, StatusCode, StatusCodeClass", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Vault requests availability" + }, + "SaturationShoebox": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "ActivityType, ActivityName, TransactionType", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Vault capacity used" + }, + "ServiceApiHit": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "ActivityType, ActivityName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of total service api hits" + }, + "ServiceApiLatency": { + "Unit": "MilliSeconds", + "Aggregation": "Average", + "Dimensions": "ActivityType, ActivityName, StatusCode, StatusCodeClass", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Overall latency of service api requests" + }, + "ServiceApiResult": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "ActivityType, ActivityName, StatusCode, StatusCodeClass", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of total service api results" + } + }, + "microsoft.kubernetes/connectedclusters": { + "capacity_cpu_cores": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of cpu cores in a connected cluster" + } + }, + "microsoft.kubernetesconfiguration/extensions": { + "ActiveSessionCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, PccpId, SiteId", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of Active PDU Sessions" + }, + "AuthAttempt": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, PccpId, SiteId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Authentication attempts rate (per minute)" + }, + "AuthFailure": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, PccpId, SiteId, Result", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Authentication failure rate (per minute)" + }, + "AuthSuccess": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, PccpId, SiteId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Authentication success rate (per minute)" + }, + "ConnectedNodebs": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, PccpId, SiteId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of connected gNodeBs or eNodeBs" + }, + "DeRegistrationAttempt": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, PccpId, SiteId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "UE deregistration attempts rate (per minute)" + }, + "DeRegistrationSuccess": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, PccpId, SiteId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "UE deregistration success rate (per minute)" + }, + "PagingAttempt": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, PccpId, SiteId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Paging attempts rate (per minute)" + }, + "PagingFailure": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, PccpId, SiteId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Paging failure rate (per minute)" + }, + "ProvisionedSubscribers": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "PccpId, SiteId", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of provisioned subscribers" + }, + "RanSetupFailure": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, PccpId, SiteId, Cause", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "RAN setup failure rate (per minute)" + }, + "RanSetupRequest": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, PccpId, SiteId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "RAN setup reuests rate (per minute)" + }, + "RanSetupResponse": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, PccpId, SiteId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "RAN setup response rate (per minute)" + }, + "RegisteredSubscribers": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, PccpId, SiteId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of registered subscribers" + }, + "RegisteredSubscribersConnected": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, PccpId, SiteId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of registered and connected subscribers" + }, + "RegisteredSubscribersIdle": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, PccpId, SiteId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of registered and idle subscribers" + }, + "RegistrationAttempt": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, PccpId, SiteId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Registration attempts rate (per minute)" + }, + "RegistrationFailure": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, PccpId, SiteId, Result", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Registration failure rate (per minute)" + }, + "RegistrationSuccess": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, PccpId, SiteId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Registration success rate (per minute)" + }, + "ServiceRequestAttempt": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, PccpId, SiteId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Service request attempts rate (per minute)" + }, + "ServiceRequestFailure": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, PccpId, SiteId, Result, Tai", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Service request failure rate (per minute)" + }, + "ServiceRequestSuccess": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, PccpId, SiteId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Service request success rate (per minute)" + }, + "SessionEstablishmentAttempt": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, PccpId, SiteId, Dnn", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "PDU session establishment attempts rate (per minute)" + }, + "SessionEstablishmentFailure": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, PccpId, SiteId, Dnn", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "PDU session establishment failure rate (per minute)" + }, + "SessionEstablishmentSuccess": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, PccpId, SiteId, Dnn", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "PDU session establishment success rate (per minute)" + }, + "SessionRelease": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, PccpId, SiteId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Session release rate (per minute)" + }, + "UeContextReleaseCommand": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, PccpId, SiteId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "UE context release command message rate (per minute)" + }, + "UeContextReleaseComplete": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, PccpId, SiteId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "UE context release complete message rate (per minute)" + }, + "UeContextReleaseRequest": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, PccpId, SiteId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "UE context release request message rate (per minute)" + }, + "UserPlaneBandwidth": { + "Unit": "BitsPerSecond", + "Aggregation": "Total", + "Dimensions": "PcdpId, SiteId, Direction, Interface", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "User plane bandwidth in bits/second." + }, + "UserPlanePacketDropRate": { + "Unit": "CountPerSecond", + "Aggregation": "Total", + "Dimensions": "PcdpId, SiteId, Cause, Direction, Interface", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "User plane packet drop rate (packets/sec)" + }, + "UserPlanePacketRate": { + "Unit": "CountPerSecond", + "Aggregation": "Total", + "Dimensions": "PcdpId, SiteId, Direction, Interface", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "User plane packet rate (packets/sec)" + }, + "XnHandoverAttempt": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, PccpId, SiteId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Handover attempts rate (per minute)" + }, + "XnHandoverFailure": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, PccpId, SiteId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Handover failure rate (per minute)" + }, + "XnHandoverSuccess": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, PccpId, SiteId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Handover success rate (per minute)" + } + }, + "microsoft.kusto/clusters": { + "BatchBlobCount": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "Database", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of data sources in an aggregated batch for ingestion." + }, + "BatchDuration": { + "Unit": "Seconds", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "Database", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The duration of the aggregation phase in the ingestion flow." + }, + "BatchesProcessed": { + "Unit": "Count", + "Aggregation": "Total, Average, Maximum, Minimum", + "Dimensions": "Database, SealReason", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of batches aggregated for ingestion. Batching Type: whether the batch reached batching time, data size or number of files limit set by batching policy" + }, + "BatchSize": { + "Unit": "Bytes", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "Database", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Uncompressed expected data size in an aggregated batch for ingestion." + }, + "BlobsDropped": { + "Unit": "Count", + "Aggregation": "Total, Average, Minimum, Maximum", + "Dimensions": "Database, ComponentType, ComponentName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of blobs permanently rejected by a component." + }, + "BlobsProcessed": { + "Unit": "Count", + "Aggregation": "Total, Average, Minimum, Maximum", + "Dimensions": "Database, ComponentType, ComponentName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of blobs processed by a component." + }, + "BlobsReceived": { + "Unit": "Count", + "Aggregation": "Total, Average, Minimum, Maximum", + "Dimensions": "Database, ComponentType, ComponentName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of blobs received from input stream by a component." + }, + "CacheUtilization": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Utilization level in the cluster scope. The metric is deprecated and presented for backward compatibility only, you should use the 'Cache utilization factor' metric instead." + }, + "CacheUtilizationFactor": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of utilized disk space dedicated for hot cache in the cluster. 100% means that the disk space assigned to hot data is optimally utilized. No action is needed in terms of the cache size. More than 100% means that the cluster's disk space is not large enough to accommodate the hot data, as defined by your caching policies. To ensure that sufficient space is available for all the hot data, the amount of hot data needs to be reduced or the cluster needs to be scaled out. Enabling auto scale is recommended." + }, + "ContinuousExportMaxLatenessMinutes": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The lateness (in minutes) reported by the continuous export jobs in the cluster" + }, + "ContinuousExportNumOfRecordsExported": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ContinuousExportName, Database", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of records exported, fired for every storage artifact written during the export operation" + }, + "ContinuousExportPendingCount": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of pending continuous export jobs ready for execution" + }, + "ContinuousExportResult": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "ContinuousExportName, Result, Database", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Indicates whether Continuous Export succeeded or failed" + }, + "CPU": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "CPU utilization level" + }, + "DiscoveryLatency": { + "Unit": "Seconds", + "Aggregation": "Average", + "Dimensions": "ComponentType, ComponentName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Reported by data connections (if exist). Time in seconds from when a message is enqueued or event is created until it is discovered by data connection. This time is not included in the Azure Data Explorer total ingestion duration." + }, + "EventsDropped": { + "Unit": "Count", + "Aggregation": "Total, Average, Minimum, Maximum", + "Dimensions": "ComponentType, ComponentName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of events dropped permanently by data connection. An Ingestion result metric with a failure reason will be sent." + }, + "EventsProcessed": { + "Unit": "Count", + "Aggregation": "Total, Average, Minimum, Maximum", + "Dimensions": "ComponentType, ComponentName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of events processed by the cluster" + }, + "EventsProcessedForEventHubs": { + "Unit": "Count", + "Aggregation": "Maximum, Minimum, Total", + "Dimensions": "EventStatus", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of events processed by the cluster when ingesting from Event/IoT Hub" + }, + "EventsReceived": { + "Unit": "Count", + "Aggregation": "Total, Average, Minimum, Maximum", + "Dimensions": "ComponentType, ComponentName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of events received by data connection." + }, + "ExportUtilization": { + "Unit": "Percent", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Export utilization" + }, + "FollowerLatency": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "State, RoleInstance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The follower databases synchronize changes in the leader databases. Because of the synchronization, there's a data lag of a few seconds to a few minutes in data availability.This metric measures the length of the time lag. The time lag depends on the overall size of the leader database metadata.This is a cluster level metrics: the followers catch metadata of all databases that are followed. This metric represents the latency of the process." + }, + "IngestionLatencyInSeconds": { + "Unit": "Seconds", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Latency of data ingested, from the time the data was received in the cluster until it's ready for query. The ingestion latency period depends on the ingestion scenario." + }, + "IngestionResult": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IngestionResultDetails, FailureKind", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of sources that either failed or succeeded to be ingested. Splitting the metric by status, you can get detailed information about the status of the ingestion operations." + }, + "IngestionUtilization": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Ratio of used ingestion slots in the cluster" + }, + "IngestionVolumeInMB": { + "Unit": "Bytes", + "Aggregation": "Total, Maximum", + "Dimensions": "Database", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Overall volume of ingested data to the cluster" + }, + "InstanceCount": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum, Count, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total instance count" + }, + "KeepAlive": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Sanity check indicates the cluster responds to queries" + }, + "MaterializedViewAgeMinutes": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Database, MaterializedViewName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The materialized view age in minutes" + }, + "MaterializedViewAgeSeconds": { + "Unit": "Seconds", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "Database, MaterializedViewName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The materialized view age in seconds" + }, + "MaterializedViewDataLoss": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "Database, MaterializedViewName, Kind", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Indicates potential data loss in materialized view" + }, + "MaterializedViewExtentsRebuild": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Database, MaterializedViewName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of extents rebuild" + }, + "MaterializedViewHealth": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Database, MaterializedViewName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The health of the materialized view (1 for healthy, 0 for non-healthy)" + }, + "MaterializedViewRecordsInDelta": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Database, MaterializedViewName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of records in the non-materialized part of the view" + }, + "MaterializedViewResult": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Database, MaterializedViewName, Result", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The result of the materialization process" + }, + "QueryDuration": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Maximum, Minimum, Total", + "Dimensions": "QueryStatus", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Queries duration in seconds" + }, + "QueryResult": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "QueryStatus", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total number of queries." + }, + "QueueLength": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "ComponentType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of pending messages in a component's queue." + }, + "QueueOldestMessage": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "ComponentType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Time in seconds from when the oldest message in queue was inserted." + }, + "ReceivedDataSizeBytes": { + "Unit": "Bytes", + "Aggregation": "Average, Total", + "Dimensions": "ComponentType, ComponentName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Size of data received by data connection. This is the size of the data stream, or of raw data size if provided." + }, + "StageLatency": { + "Unit": "Seconds", + "Aggregation": "Average", + "Dimensions": "Database, ComponentType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Cumulative time from when a message is discovered until it is received by the reporting component for processing (discovery time is set when message is enqueued for ingestion queue, or when discovered by data connection)." + }, + "StreamingIngestDataRate": { + "Unit": "Bytes", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Streaming ingest data rate" + }, + "StreamingIngestDuration": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Streaming ingest duration in milliseconds" + }, + "StreamingIngestResults": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "Result", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Streaming ingest result" + }, + "TotalNumberOfConcurrentQueries": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of concurrent queries" + }, + "TotalNumberOfExtents": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of data extents" + }, + "TotalNumberOfThrottledCommands": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum, Total", + "Dimensions": "CommandType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of throttled commands" + }, + "TotalNumberOfThrottledQueries": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of throttled queries" + }, + "WeakConsistencyLatency": { + "Unit": "Seconds", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "Database, RoleInstance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The max latency between the previous metadata sync and the next one (in DB/node scope)" + } + }, + "microsoft.logic/integrationserviceenvironments": { + "ActionLatency": { + "Unit": "Seconds", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Latency of completed workflow actions." + }, + "ActionsCompleted": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of workflow actions completed." + }, + "ActionsFailed": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of workflow actions failed." + }, + "ActionsSkipped": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of workflow actions skipped." + }, + "ActionsStarted": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of workflow actions started." + }, + "ActionsSucceeded": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of workflow actions succeeded." + }, + "ActionSuccessLatency": { + "Unit": "Seconds", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Latency of succeeded workflow actions." + }, + "IntegrationServiceEnvironmentConnectorMemoryUsage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Connector memory usage for integration service environment." + }, + "IntegrationServiceEnvironmentConnectorProcessorUsage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Connector processor usage for integration service environment." + }, + "IntegrationServiceEnvironmentWorkflowMemoryUsage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Workflow memory usage for integration service environment." + }, + "IntegrationServiceEnvironmentWorkflowProcessorUsage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Workflow processor usage for integration service environment." + }, + "RunLatency": { + "Unit": "Seconds", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Latency of completed workflow runs." + }, + "RunsCancelled": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of workflow runs cancelled." + }, + "RunsCompleted": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of workflow runs completed." + }, + "RunsFailed": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of workflow runs failed." + }, + "RunsStarted": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of workflow runs started." + }, + "RunsSucceeded": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of workflow runs succeeded." + }, + "RunSuccessLatency": { + "Unit": "Seconds", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Latency of succeeded workflow runs." + }, + "TriggerFireLatency": { + "Unit": "Seconds", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Latency of fired workflow triggers." + }, + "TriggerLatency": { + "Unit": "Seconds", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Latency of completed workflow triggers." + }, + "TriggersCompleted": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of workflow triggers completed." + }, + "TriggersFailed": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of workflow triggers failed." + }, + "TriggersFired": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of workflow triggers fired." + }, + "TriggersSkipped": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of workflow triggers skipped." + }, + "TriggersStarted": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of workflow triggers started." + }, + "TriggersSucceeded": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of workflow triggers succeeded." + }, + "TriggerSuccessLatency": { + "Unit": "Seconds", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Latency of succeeded workflow triggers." + } + }, + "microsoft.logic/workflows": { + "ActionLatency": { + "Unit": "Seconds", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Latency of completed workflow actions." + }, + "ActionsCompleted": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of workflow actions completed." + }, + "ActionsFailed": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of workflow actions failed." + }, + "ActionsSkipped": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of workflow actions skipped." + }, + "ActionsStarted": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of workflow actions started." + }, + "ActionsSucceeded": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of workflow actions succeeded." + }, + "ActionSuccessLatency": { + "Unit": "Seconds", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Latency of succeeded workflow actions." + }, + "ActionThrottledEvents": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of workflow action throttled events.." + }, + "BillableActionExecutions": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of workflow action executions getting billed." + }, + "BillableTriggerExecutions": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of workflow trigger executions getting billed." + }, + "BillingUsageNativeOperation": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of native operation executions getting billed." + }, + "BillingUsageStandardConnector": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of standard connector executions getting billed." + }, + "BillingUsageStorageConsumption": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of storage consumption executions getting billed." + }, + "RunFailurePercentage": { + "Unit": "Percent", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of workflow runs failed." + }, + "RunLatency": { + "Unit": "Seconds", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Latency of completed workflow runs." + }, + "RunsCancelled": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of workflow runs cancelled." + }, + "RunsCompleted": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of workflow runs completed." + }, + "RunsFailed": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of workflow runs failed." + }, + "RunsStarted": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of workflow runs started." + }, + "RunsSucceeded": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of workflow runs succeeded." + }, + "RunStartThrottledEvents": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of workflow run start throttled events." + }, + "RunSuccessLatency": { + "Unit": "Seconds", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Latency of succeeded workflow runs." + }, + "RunThrottledEvents": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of workflow action or trigger throttled events." + }, + "TotalBillableExecutions": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of workflow executions getting billed." + }, + "TriggerFireLatency": { + "Unit": "Seconds", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Latency of fired workflow triggers." + }, + "TriggerLatency": { + "Unit": "Seconds", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Latency of completed workflow triggers." + }, + "TriggersCompleted": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of workflow triggers completed." + }, + "TriggersFailed": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of workflow triggers failed." + }, + "TriggersFired": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of workflow triggers fired." + }, + "TriggersSkipped": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of workflow triggers skipped." + }, + "TriggersStarted": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of workflow triggers started." + }, + "TriggersSucceeded": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of workflow triggers succeeded." + }, + "TriggerSuccessLatency": { + "Unit": "Seconds", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Latency of succeeded workflow triggers." + }, + "TriggerThrottledEvents": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of workflow trigger throttled events." + } + }, + "microsoft.machinelearningservices/workspaces": { + "Active Cores": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum, Total", + "Dimensions": "Scenario, ClusterName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of active cores" + }, + "Active Nodes": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum, Total", + "Dimensions": "Scenario, ClusterName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of Acitve nodes. These are the nodes which are actively running a job." + }, + "Cancel Requested Runs": { + "Unit": "Count", + "Aggregation": "Total, Average, Minimum, Maximum, Count", + "Dimensions": "Scenario, RunType, PublishedPipelineId, ComputeType, PipelineStepType, ExperimentName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of runs where cancel was requested for this workspace. Count is updated when cancellation request has been received for a run." + }, + "Cancelled Runs": { + "Unit": "Count", + "Aggregation": "Total, Average, Minimum, Maximum, Count", + "Dimensions": "Scenario, RunType, PublishedPipelineId, ComputeType, PipelineStepType, ExperimentName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of runs cancelled for this workspace. Count is updated when a run is successfully cancelled." + }, + "Completed Runs": { + "Unit": "Count", + "Aggregation": "Total, Average, Minimum, Maximum, Count", + "Dimensions": "Scenario, RunType, PublishedPipelineId, ComputeType, PipelineStepType, ExperimentName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of runs completed successfully for this workspace. Count is updated when a run has completed and output has been collected." + }, + "CpuCapacityMillicores": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum, Total", + "Dimensions": "RunId, InstanceId, ComputeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Maximum capacity of a CPU node in millicores. Capacity is aggregated in one minute intervals." + }, + "CpuMemoryCapacityMegabytes": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum, Total", + "Dimensions": "RunId, InstanceId, ComputeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Maximum memory utilization of a CPU node in megabytes. Utilization is aggregated in one minute intervals." + }, + "CpuMemoryUtilizationMegabytes": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum, Total", + "Dimensions": "RunId, InstanceId, ComputeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Memory utilization of a CPU node in megabytes. Utilization is aggregated in one minute intervals." + }, + "CpuMemoryUtilizationPercentage": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum, Total", + "Dimensions": "RunId, InstanceId, ComputeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Memory utilization percentage of a CPU node. Utilization is aggregated in one minute intervals." + }, + "CpuUtilization": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum, Total", + "Dimensions": "Scenario, runId, NodeId, ClusterName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of utilization on a CPU node. Utilization is reported at one minute intervals." + }, + "CpuUtilizationMillicores": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum, Total", + "Dimensions": "RunId, InstanceId, ComputeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Utilization of a CPU node in millicores. Utilization is aggregated in one minute intervals." + }, + "CpuUtilizationPercentage": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum, Total", + "Dimensions": "RunId, InstanceId, ComputeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Utilization percentage of a CPU node. Utilization is aggregated in one minute intervals." + }, + "DiskAvailMegabytes": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum, Total", + "Dimensions": "RunId, InstanceId, ComputeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Available disk space in megabytes. Metrics are aggregated in one minute intervals." + }, + "DiskReadMegabytes": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum, Total", + "Dimensions": "RunId, InstanceId, ComputeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Data read from disk in megabytes. Metrics are aggregated in one minute intervals." + }, + "DiskUsedMegabytes": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum, Total", + "Dimensions": "RunId, InstanceId, ComputeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Used disk space in megabytes. Metrics are aggregated in one minute intervals." + }, + "DiskWriteMegabytes": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum, Total", + "Dimensions": "RunId, InstanceId, ComputeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Data written into disk in megabytes. Metrics are aggregated in one minute intervals." + }, + "Errors": { + "Unit": "Count", + "Aggregation": "Total, Average, Minimum, Maximum, Count", + "Dimensions": "Scenario", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of run errors in this workspace. Count is updated whenever run encounters an error." + }, + "Failed Runs": { + "Unit": "Count", + "Aggregation": "Total, Average, Minimum, Maximum, Count", + "Dimensions": "Scenario, RunType, PublishedPipelineId, ComputeType, PipelineStepType, ExperimentName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of runs failed for this workspace. Count is updated when a run fails." + }, + "Finalizing Runs": { + "Unit": "Count", + "Aggregation": "Total, Average, Minimum, Maximum, Count", + "Dimensions": "Scenario, RunType, PublishedPipelineId, ComputeType, PipelineStepType, ExperimentName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of runs entered finalizing state for this workspace. Count is updated when a run has completed but output collection still in progress." + }, + "GpuCapacityMilliGPUs": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum, Total", + "Dimensions": "RunId, InstanceId, DeviceId, ComputeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Maximum capacity of a GPU device in milli-GPUs. Capacity is aggregated in one minute intervals." + }, + "GpuEnergyJoules": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum, Total", + "Dimensions": "Scenario, runId, rootRunId, InstanceId, DeviceId, ComputeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Interval energy in Joules on a GPU node. Energy is reported at one minute intervals." + }, + "GpuMemoryCapacityMegabytes": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum, Total", + "Dimensions": "RunId, InstanceId, DeviceId, ComputeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Maximum memory capacity of a GPU device in megabytes. Capacity aggregated in at one minute intervals." + }, + "GpuMemoryUtilization": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum, Total", + "Dimensions": "Scenario, runId, NodeId, DeviceId, ClusterName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of memory utilization on a GPU node. Utilization is reported at one minute intervals." + }, + "GpuMemoryUtilizationMegabytes": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum, Total", + "Dimensions": "RunId, InstanceId, DeviceId, ComputeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Memory utilization of a GPU device in megabytes. Utilization aggregated in at one minute intervals." + }, + "GpuMemoryUtilizationPercentage": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum, Total", + "Dimensions": "RunId, InstanceId, DeviceId, ComputeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Memory utilization percentage of a GPU device. Utilization aggregated in at one minute intervals." + }, + "GpuUtilization": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum, Total", + "Dimensions": "Scenario, runId, NodeId, DeviceId, ClusterName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of utilization on a GPU node. Utilization is reported at one minute intervals." + }, + "GpuUtilizationMilliGPUs": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum, Total", + "Dimensions": "RunId, InstanceId, DeviceId, ComputeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Utilization of a GPU device in milli-GPUs. Utilization is aggregated in one minute intervals." + }, + "GpuUtilizationPercentage": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum, Total", + "Dimensions": "RunId, InstanceId, DeviceId, ComputeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Utilization percentage of a GPU device. Utilization is aggregated in one minute intervals." + }, + "IBReceiveMegabytes": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum, Total", + "Dimensions": "RunId, InstanceId, ComputeName, DeviceId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Network data received over InfiniBand in megabytes. Metrics are aggregated in one minute intervals." + }, + "IBTransmitMegabytes": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum, Total", + "Dimensions": "RunId, InstanceId, ComputeName, DeviceId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Network data sent over InfiniBand in megabytes. Metrics are aggregated in one minute intervals." + }, + "Idle Cores": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum, Total", + "Dimensions": "Scenario, ClusterName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of idle cores" + }, + "Idle Nodes": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum, Total", + "Dimensions": "Scenario, ClusterName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of idle nodes. Idle nodes are the nodes which are not running any jobs but can accept new job if available." + }, + "Leaving Cores": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum, Total", + "Dimensions": "Scenario, ClusterName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of leaving cores" + }, + "Leaving Nodes": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum, Total", + "Dimensions": "Scenario, ClusterName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of leaving nodes. Leaving nodes are the nodes which just finished processing a job and will go to Idle state." + }, + "Model Deploy Failed": { + "Unit": "Count", + "Aggregation": "Total, Average, Minimum, Maximum, Count", + "Dimensions": "Scenario, StatusCode", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of model deployments that failed in this workspace" + }, + "Model Deploy Started": { + "Unit": "Count", + "Aggregation": "Total, Average, Minimum, Maximum, Count", + "Dimensions": "Scenario", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of model deployments started in this workspace" + }, + "Model Deploy Succeeded": { + "Unit": "Count", + "Aggregation": "Total, Average, Minimum, Maximum, Count", + "Dimensions": "Scenario", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of model deployments that succeeded in this workspace" + }, + "Model Register Failed": { + "Unit": "Count", + "Aggregation": "Total, Average, Minimum, Maximum, Count", + "Dimensions": "Scenario, StatusCode", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of model registrations that failed in this workspace" + }, + "Model Register Succeeded": { + "Unit": "Count", + "Aggregation": "Total, Average, Minimum, Maximum, Count", + "Dimensions": "Scenario", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of model registrations that succeeded in this workspace" + }, + "NetworkInputMegabytes": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum, Total", + "Dimensions": "RunId, InstanceId, ComputeName, DeviceId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Network data received in megabytes. Metrics are aggregated in one minute intervals." + }, + "NetworkOutputMegabytes": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum, Total", + "Dimensions": "RunId, InstanceId, ComputeName, DeviceId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Network data sent in megabytes. Metrics are aggregated in one minute intervals." + }, + "Not Responding Runs": { + "Unit": "Count", + "Aggregation": "Total, Average, Minimum, Maximum, Count", + "Dimensions": "Scenario, RunType, PublishedPipelineId, ComputeType, PipelineStepType, ExperimentName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of runs not responding for this workspace. Count is updated when a run enters Not Responding state." + }, + "Not Started Runs": { + "Unit": "Count", + "Aggregation": "Total, Average, Minimum, Maximum, Count", + "Dimensions": "Scenario, RunType, PublishedPipelineId, ComputeType, PipelineStepType, ExperimentName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of runs in Not Started state for this workspace. Count is updated when a request is received to create a run but run information has not yet been populated." + }, + "Preempted Cores": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum, Total", + "Dimensions": "Scenario, ClusterName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of preempted cores" + }, + "Preempted Nodes": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum, Total", + "Dimensions": "Scenario, ClusterName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of preempted nodes. These nodes are the low priority nodes which are taken away from the available node pool." + }, + "Preparing Runs": { + "Unit": "Count", + "Aggregation": "Total, Average, Minimum, Maximum, Count", + "Dimensions": "Scenario, RunType, PublishedPipelineId, ComputeType, PipelineStepType, ExperimentName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of runs that are preparing for this workspace. Count is updated when a run enters Preparing state while the run environment is being prepared." + }, + "Provisioning Runs": { + "Unit": "Count", + "Aggregation": "Total, Average, Minimum, Maximum, Count", + "Dimensions": "Scenario, RunType, PublishedPipelineId, ComputeType, PipelineStepType, ExperimentName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of runs that are provisioning for this workspace. Count is updated when a run is waiting on compute target creation or provisioning." + }, + "Queued Runs": { + "Unit": "Count", + "Aggregation": "Total, Average, Minimum, Maximum, Count", + "Dimensions": "Scenario, RunType, PublishedPipelineId, ComputeType, PipelineStepType, ExperimentName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of runs that are queued for this workspace. Count is updated when a run is queued in compute target. Can occure when waiting for required compute nodes to be ready." + }, + "Quota Utilization Percentage": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum, Total", + "Dimensions": "Scenario, ClusterName, VmFamilyName, VmPriority", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percent of quota utilized" + }, + "Started Runs": { + "Unit": "Count", + "Aggregation": "Total, Average, Minimum, Maximum, Count", + "Dimensions": "Scenario, RunType, PublishedPipelineId, ComputeType, PipelineStepType, ExperimentName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of runs running for this workspace. Count is updated when run starts running on required resources." + }, + "Starting Runs": { + "Unit": "Count", + "Aggregation": "Total, Average, Minimum, Maximum, Count", + "Dimensions": "Scenario, RunType, PublishedPipelineId, ComputeType, PipelineStepType, ExperimentName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of runs started for this workspace. Count is updated after request to create run and run info, such as the Run Id, has been populated" + }, + "StorageAPIFailureCount": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum, Total", + "Dimensions": "RunId, InstanceId, ComputeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Azure Blob Storage API calls failure count." + }, + "StorageAPISuccessCount": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum, Total", + "Dimensions": "RunId, InstanceId, ComputeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Azure Blob Storage API calls success count." + }, + "Total Cores": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum, Total", + "Dimensions": "Scenario, ClusterName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of total cores" + }, + "Total Nodes": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum, Total", + "Dimensions": "Scenario, ClusterName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of total nodes. This total includes some of Active Nodes, Idle Nodes, Unusable Nodes, Premepted Nodes, Leaving Nodes" + }, + "Unusable Cores": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum, Total", + "Dimensions": "Scenario, ClusterName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of unusable cores" + }, + "Unusable Nodes": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum, Total", + "Dimensions": "Scenario, ClusterName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of unusable nodes. Unusable nodes are not functional due to some unresolvable issue. Azure will recycle these nodes." + }, + "Warnings": { + "Unit": "Count", + "Aggregation": "Total, Average, Minimum, Maximum, Count", + "Dimensions": "Scenario", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of run warnings in this workspace. Count is updated whenever a run encounters a warning." + } + }, + "microsoft.machinelearningservices/workspaces/onlineendpoints/deployments": { + "CpuMemoryUtilizationPercentage": { + "Unit": "Percent", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "instanceId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of memory utilization on an instance. Utilization is reported at one minute intervals." + }, + "CpuUtilizationPercentage": { + "Unit": "Percent", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "instanceId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of CPU utilization on an instance. Utilization is reported at one minute intervals." + }, + "DataCollectionErrorsPerMinute": { + "Unit": "Count", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "instanceId, reason, type", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The number of data collection events dropped per minute." + }, + "DataCollectionEventsPerMinute": { + "Unit": "Count", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "instanceId, type", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The number of data collection events processed per minute." + }, + "DeploymentCapacity": { + "Unit": "Count", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "instanceId, State", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The number of instances in the deployment." + }, + "DiskUtilization": { + "Unit": "Percent", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "instanceId, disk", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of disk utilization on an instance. Utilization is reported at one minute intervals." + }, + "GpuEnergyJoules": { + "Unit": "Count", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "instanceId", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Interval energy in Joules on a GPU node. Energy is reported at one minute intervals." + }, + "GpuMemoryUtilizationPercentage": { + "Unit": "Percent", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "instanceId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of GPU memory utilization on an instance. Utilization is reported at one minute intervals." + }, + "GpuUtilizationPercentage": { + "Unit": "Percent", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "instanceId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of GPU utilization on an instance. Utilization is reported at one minute intervals." + }, + "RequestLatency_P50": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average P50 request latency aggregated by all request latency values collected over the selected time period" + }, + "RequestLatency_P90": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average P90 request latency aggregated by all request latency values collected over the selected time period" + }, + "RequestLatency_P95": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average P95 request latency aggregated by all request latency values collected over the selected time period" + }, + "RequestLatency_P99": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average P99 request latency aggregated by all request latency values collected over the selected time period" + }, + "RequestsPerMinute": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "envoy_response_code", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The number of requests sent to online deployment within a minute" + } + }, + "microsoft.machinelearningservices/workspaces/onlineendpoints": { + "ConnectionsActive": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The total number of concurrent TCP connections active from clients." + }, + "DataCollectionErrorsPerMinute": { + "Unit": "Count", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "deployment, reason, type", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The number of data collection events dropped per minute." + }, + "DataCollectionEventsPerMinute": { + "Unit": "Count", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "deployment, type", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The number of data collection events processed per minute." + }, + "NetworkBytes": { + "Unit": "BytesPerSecond", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The bytes per second served for the endpoint." + }, + "NewConnectionsPerSecond": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The average number of new TCP connections per second established from clients." + }, + "RequestLatency": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "deployment", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average complete interval of time taken for a request to be responded in milliseconds" + }, + "RequestLatency_P50": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "deployment", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average P50 request latency aggregated by all request latency values collected over the selected time period" + }, + "RequestLatency_P90": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "deployment", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average P90 request latency aggregated by all request latency values collected over the selected time period" + }, + "RequestLatency_P95": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "deployment", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average P95 request latency aggregated by all request latency values collected over the selected time period" + }, + "RequestLatency_P99": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "deployment", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average P99 request latency aggregated by all request latency values collected over the selected time period" + }, + "RequestsPerMinute": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "deployment, statusCode, statusCodeClass, modelStatusCode", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The number of requests sent to online endpoint within a minute" + } + }, + "microsoft.managednetworkfabric/internetgateways": { + "InboundConnectionsActive": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "nfcId, gatewayType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of inbound active connections" + }, + "InboundConnectionsTotal": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "nfcId, gatewayType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of inbound connections" + }, + "OutboundConnectionsActive": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "nfcId, gatewayType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of outbound active connections" + }, + "OutboundConnectionsFail": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "nfcId, gatewayType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of outbound total failed connections" + }, + "OutboundConnectionsTimeout": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "nfcId, gatewayType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of outbound connection timeouts" + }, + "OutboundConnectionsTotal": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "nfcId, gatewayType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of outbound total connections" + } + }, + "microsoft.managednetworkfabric/l3isolationdomains": { + "IfSubIfInBroadcastPkts": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "DeviceId, FabricId, IsdResourceName, IsdNetworkArmId, IsdNetworkName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of packets, delivered by this sub-layer to a higher (sub-)layer, that were addressed to a broadcast address at this sub-layer." + }, + "IfSubIfInDiscards": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "DeviceId, FabricId, IsdResourceName, IsdNetworkArmId, IsdNetworkName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of inbound packets that were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol." + }, + "IfSubIfInErrors": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "DeviceId, FabricId, IsdResourceName, IsdNetworkArmId, IsdNetworkName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol." + }, + "IfSubIfInFcsErrors": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "DeviceId, FabricId, IsdResourceName, IsdNetworkArmId, IsdNetworkName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of received packets which had errors in the frame check sequence (FCS), i.e., framing errors." + }, + "IfSubIfInMulticastPkts": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "DeviceId, FabricId, IsdResourceName, IsdNetworkArmId, IsdNetworkName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of packets, delivered by this sub-layer to a higher (sub-)layer, that were addressed to a multicast address at this sub-layer. For a MAC-layer protocol, this includes both Group and Functional addresses." + }, + "IfSubIfInOctets": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "DeviceId, FabricId, IsdResourceName, IsdNetworkArmId, IsdNetworkName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of octets received on the interface, including framing characters." + }, + "IfSubIfInPkts": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "DeviceId, FabricId, IsdResourceName, IsdNetworkArmId, IsdNetworkName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of packets received on the interface, including all unicast, multicast, broadcast and bad packets etc." + }, + "IfSubIfInUnicastPkts": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "DeviceId, FabricId, IsdResourceName, IsdNetworkArmId, IsdNetworkName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of packets, delivered by this sub-layer to a higher (sub-)layer, that were not addressed to a multicast or broadcast address at this sub-layer." + }, + "IfSubIfInUnknownProtos": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "DeviceId, FabricId, IsdResourceName, IsdNetworkArmId, IsdNetworkName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "For packet-oriented interfaces, the number of packets received via the interface that were discarded because of an unknown or unsupported protocol." + }, + "IfSubIfOutBroadcastPkts": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "DeviceId, FabricId, IsdResourceName, IsdNetworkArmId, IsdNetworkName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of packets that higher-level protocols requested be transmitted, and that were addressed to a broadcast address at this sub-layer, including those that were discarded or not sent." + }, + "IfSubIfOutDiscards": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "DeviceId, FabricId, IsdResourceName, IsdNetworkArmId, IsdNetworkName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of outbound packets that were chosen to be discarded even though no errors had been detected to prevent their being transmitted." + }, + "IfSubIfOutErrors": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "DeviceId, FabricId, IsdResourceName, IsdNetworkArmId, IsdNetworkName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "For packet-oriented interfaces, the number of outbound packets that could not be transmitted because of errors." + }, + "IfSubIfOutMulticastPkts": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "DeviceId, FabricId, IsdResourceName, IsdNetworkArmId, IsdNetworkName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of packets that higher-level protocols requested be transmitted, and that were addressed to a multicast address at this sub-layer, including those that were discarded or not sent. For a MAC-layer protocol, this includes both Group and Functional addresses." + }, + "IfSubIfOutOctets": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "DeviceId, FabricId, IsdResourceName, IsdNetworkArmId, IsdNetworkName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of octets transmitted out of the interface, including framing characters." + }, + "IfSubIfOutPkts": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "DeviceId, FabricId, IsdResourceName, IsdNetworkArmId, IsdNetworkName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of packets transmitted out of the interface, including all unicast, multicast, broadcast, and bad packets etc." + }, + "IfSubIfOutUnicastPkts": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "DeviceId, FabricId, IsdResourceName, IsdNetworkArmId, IsdNetworkName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of packets that higher-level requested be transmitted, and that were not addressed to a multicast or broadcast address at this sub-layer, including those that were discarded or not sent." + }, + "IntNwInBitsRate": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "DeviceId, FabricId, IsdResourceName, IsdNetworkArmId, IsdNetworkName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Calculated received bits rate of the interface." + }, + "IntNwInBroadcastPkts": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "DeviceId, FabricId, IsdResourceName, IsdNetworkArmId, IsdNetworkName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of packets, delivered by this sub-layer to a higher (sub-)layer, that were addressed to a broadcast address at this sub-layer." + }, + "IntNwInDiscards": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "DeviceId, FabricId, IsdResourceName, IsdNetworkArmId, IsdNetworkName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of inbound packets that were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol." + }, + "IntNwInErrors": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "DeviceId, FabricId, IsdResourceName, IsdNetworkArmId, IsdNetworkName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol." + }, + "IntNwInMulticastPkts": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "DeviceId, FabricId, IsdResourceName, IsdNetworkArmId, IsdNetworkName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of packets, delivered by this sub-layer to a higher (sub-)layer, that were addressed to a multicast address at this sub-layer. For a MAC-layer protocol, this includes both Group and Functional addresses." + }, + "IntNwInOctets": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "DeviceId, FabricId, IsdResourceName, IsdNetworkArmId, IsdNetworkName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of octets received on the interface, including framing characters." + }, + "IntNwInPktsRate": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "DeviceId, FabricId, IsdResourceName, IsdNetworkArmId, IsdNetworkName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The rate of packets received on the interface, including all unicast, multicast, broadcast and bad packets etc." + }, + "IntNwInUcastPkts": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "DeviceId, FabricId, IsdResourceName, IsdNetworkArmId, IsdNetworkName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of packets, delivered by this sub-layer to a higher (sub-)layer, that were not addressed to a multicast or broadcast address at this sub-layer." + }, + "IntNwOutBitsRate": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "DeviceId, FabricId, IsdResourceName, IsdNetworkArmId, IsdNetworkName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Calculated transmitted bits rate of the interface." + }, + "IntNwOutBroadcastPkts": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "DeviceId, FabricId, IsdResourceName, IsdNetworkArmId, IsdNetworkName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of packets that higher-level protocols requested be transmitted, and that were addressed to a broadcast address at this sub-layer, including those that were discarded or not sent." + }, + "IntNwOutDiscards": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "DeviceId, FabricId, IsdResourceName, IsdNetworkArmId, IsdNetworkName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of outbound packets that were chosen to be discarded even though no errors had been detected to prevent their being transmitted." + }, + "IntNwOutErrors": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "DeviceId, FabricId, IsdResourceName, IsdNetworkArmId, IsdNetworkName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "For packet-oriented interfaces, the number of outbound packets that could not be transmitted because of errors." + }, + "IntNwOutMulticastPkts": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "DeviceId, FabricId, IsdResourceName, IsdNetworkArmId, IsdNetworkName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of packets that higher-level protocols requested be transmitted, and that were addressed to a multicast address at this sub-layer, including those that were discarded or not sent. For a MAC-layer protocol, this includes both Group and Functional addresses." + }, + "IntNwOutOctets": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "DeviceId, FabricId, IsdResourceName, IsdNetworkArmId, IsdNetworkName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of octets transmitted out of the interface, including framing characters." + }, + "IntNwOutPktsRate": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "DeviceId, FabricId, IsdResourceName, IsdNetworkArmId, IsdNetworkName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The rate of packets transmitted out of the interface, including all unicast, multicast, broadcast, and bad packets etc." + }, + "IntNwOutUcastPkts": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "DeviceId, FabricId, IsdResourceName, IsdNetworkArmId, IsdNetworkName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of packets that higher-level requested be transmitted, and that were not addressed to a multicast or broadcast address at this sub-layer, including those that were discarded or not sent." + } + }, + "microsoft.managednetworkfabric/networkdevices": { + "AclMatchedPackets": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, AclSetName, AclEntrySequenceId, AclSetType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of the number of packets matching the current ACL entry." + }, + "BgpPeerStatus": { + "Unit": "Unspecified", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, IpAddress", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Operational state of the BGP peer. State is represented in numerical form. Idle : 1, Connect : 2, Active : 3, Opensent : 4, Openconfirm : 5, Established : 6" + }, + "ComponentOperStatus": { + "Unit": "Unspecified", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, ComponentName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The current operational status of the component." + }, + "CpuUtilizationMax": { + "Unit": "Percent", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, ComponentName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Max cpu utilization. The maximum value of the percentage measure of the statistic over the time interval." + }, + "CpuUtilizationMin": { + "Unit": "Percent", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, ComponentName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Min cpu utilization. The minimum value of the percentage measure of the statistic over the time interval." + }, + "FanSpeed": { + "Unit": "Unspecified", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, ComponentName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Current fan speed." + }, + "IfEthInCrcErrors": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, InterfaceName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of frames received that had a length (excluding framing bits, but including FCS octets) of between 64 and 1518 octets, inclusive, but had either a bad Frame Check Sequence (FCS) with an integral number of octets (FCS Error) or a bad FCS with a non-integral number of octets (Alignment Error)" + }, + "IfEthInFragmentFrames": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, InterfaceName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of frames received that were less than 64 octets in length (excluding framing bits but including FCS octets) and had either a bad Frame Check Sequence (FCS) with an integral number of octets (FCS Error) or a bad FCS with a non-integral number of octets (Alignment Error)." + }, + "IfEthInJabberFrames": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, InterfaceName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of jabber frames received on the interface. Jabber frames are typically defined as oversize frames which also have a bad CRC." + }, + "IfEthInMacControlFrames": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, InterfaceName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "MAC layer control frames received on the interface" + }, + "IfEthInMacPauseFrames": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, InterfaceName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "MAC layer PAUSE frames received on the interface" + }, + "IfEthInMaxsizeExceeded": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, InterfaceName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number frames received that are well-formed dropped due to exceeding the maximum frame size on the interface." + }, + "IfEthInOversizeFrames": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, InterfaceName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of frames received that were longer than 1518 octets (excluding framing bits, but including FCS octets) and were otherwise well formed." + }, + "IfEthOutMacControlFrames": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, InterfaceName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "MAC layer control frames sent on the interface." + }, + "IfEthOutMacPauseFrames": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, InterfaceName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "MAC layer PAUSE frames sent on the interface." + }, + "IfInBroadcastPkts": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, InterfaceName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of packets, delivered by this sub-layer to a higher (sub-)layer, that were addressed to a broadcast address at this sub-layer." + }, + "IfInDiscards": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, InterfaceName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of inbound packets that were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol." + }, + "IfInErrors": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, InterfaceName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol." + }, + "IfInFcsErrors": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, InterfaceName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of received packets which had errors in the frame check sequence (FCS), i.e., framing errors." + }, + "IfInMulticastPkts": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, InterfaceName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of packets, delivered by this sub-layer to a higher (sub-)layer, that were addressed to a multicast address at this sub-layer. For a MAC-layer protocol, this includes both Group and Functional addresses." + }, + "IfInOctets": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, InterfaceName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of octets received on the interface, including framing characters." + }, + "IfInPkts": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, InterfaceName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of packets received on the interface, including all unicast, multicast, broadcast and bad packets etc." + }, + "IfInUnicastPkts": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, InterfaceName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of packets, delivered by this sub-layer to a higher (sub-)layer, that were not addressed to a multicast or broadcast address at this sub-layer." + }, + "IfOutBroadcastPkts": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, InterfaceName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of packets that higher-level protocols requested be transmitted, and that were addressed to a broadcast address at this sub-layer, including those that were discarded or not sent." + }, + "IfOutDiscards": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, InterfaceName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of outbound packets that were chosen to be discarded even though no errors had been detected to prevent their being transmitted." + }, + "IfOutErrors": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, InterfaceName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "For packet-oriented interfaces, the number of outbound packets that could not be transmitted because of errors." + }, + "IfOutMulticastPkts": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, InterfaceName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of packets that higher-level protocols requested be transmitted, and that were addressed to a multicast address at this sub-layer, including those that were discarded or not sent. For a MAC-layer protocol, this includes both Group and Functional addresses." + }, + "IfOutOctets": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, InterfaceName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of octets transmitted out of the interface, including framing characters." + }, + "IfOutPkts": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, InterfaceName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of packets transmitted out of the interface, including all unicast, multicast, broadcast, and bad packets etc." + }, + "IfOutUnicastPkts": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, InterfaceName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of packets that higher-level requested be transmitted, and that were not addressed to a multicast or broadcast address at this sub-layer, including those that were discarded or not sent." + }, + "InterfaceOperStatus": { + "Unit": "Unspecified", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, InterfaceName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The current operational state of the interface. State is represented in numerical form. Up: 0, Down: 1, Lower_layer_down: 2, Testing: 3, Unknown: 4, Dormant: 5, Not_present: 6." + }, + "LacpErrors": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, InterfaceName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of LACPDU illegal packet errors." + }, + "LacpInPkts": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, InterfaceName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of LACPDUs received." + }, + "LacpOutPkts": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, InterfaceName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of LACPDUs transmitted." + }, + "LacpRxErrors": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, InterfaceName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of LACPDU receive packet errors." + }, + "LacpTxErrors": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, InterfaceName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of LACPDU transmit packet errors." + }, + "LacpUnknownErrors": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, InterfaceName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of LACPDU unknown packet errors." + }, + "LldpFrameIn": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, InterfaceName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of lldp frames received." + }, + "LldpFrameOut": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, InterfaceName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of frames transmitted out." + }, + "LldpTlvUnknown": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, InterfaceName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of frames received with unknown TLV." + }, + "MemoryAvailable": { + "Unit": "Bytes", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, ComponentName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The available memory physically installed, or logically allocated to the component." + }, + "MemoryUtilized": { + "Unit": "Bytes", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, ComponentName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The memory currently in use by processes running on the component, not considering reserved memory that is not available for use." + }, + "PowerSupplyCapacity": { + "Unit": "Unspecified", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, ComponentName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Maximum power capacity of the power supply (watts)." + }, + "PowerSupplyInputCurrent": { + "Unit": "Unspecified", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, ComponentName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The input current draw of the power supply (amps)." + }, + "PowerSupplyInputVoltage": { + "Unit": "Unspecified", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, ComponentName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Input voltage to the power supply (volts)." + }, + "PowerSupplyOutputCurrent": { + "Unit": "Unspecified", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, ComponentName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The output current supplied by the power supply (amps)" + }, + "PowerSupplyOutputPower": { + "Unit": "Unspecified", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, ComponentName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Output power supplied by the power supply (watts)" + }, + "PowerSupplyOutputVoltage": { + "Unit": "Unspecified", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, ComponentName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Output voltage supplied by the power supply (volts)." + }, + "TemperatureInstant": { + "Unit": "Unspecified", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, ComponentName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The instantaneous value of temperature in degrees Celsius of the component." + }, + "TemperatureMax": { + "Unit": "Unspecified", + "Aggregation": "Average, Minimum, Maximum, Total, Count", + "Dimensions": "FabricId, ComponentName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Max temperature in degrees Celsius of the component. The maximum value of the statistic over the sampling period." + } + }, + "microsoft.maps/accounts": { + "Availability": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "ApiCategory, ApiName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Availability of the APIs" + }, + "Usage": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "ApiCategory, ApiName, ResultType, ResponseCode", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Count of API calls" + } + }, + "microsoft.media/mediaservices/liveevents": { + "IngestBitrate": { + "Unit": "BitsPerSecond", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "TrackName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The incoming bitrate ingested for a live event, in bits per second." + }, + "IngestDriftValue": { + "Unit": "Seconds", + "Aggregation": "Maximum", + "Dimensions": "TrackName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Drift between the timestamp of the ingested content and the system clock, measured in seconds per minute. A non zero value indicates that the ingested content is arriving slower than system clock time." + }, + "IngestLastTimestamp": { + "Unit": "Milliseconds", + "Aggregation": "Maximum", + "Dimensions": "TrackName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Last timestamp ingested for a live event." + }, + "LiveOutputLastTimestamp": { + "Unit": "Milliseconds", + "Aggregation": "Maximum", + "Dimensions": "TrackName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Timestamp of the last fragment uploaded to storage for a live event output." + } + }, + "microsoft.media/mediaservices": { + "AssetCount": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "How many assets are already created in current media service account" + }, + "AssetQuota": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "How many assets are allowed for current media service account" + }, + "AssetQuotaUsedPercentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Asset used percentage in current media service account" + }, + "ChannelsAndLiveEventsCount": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of live events in the current media services account" + }, + "ContentKeyPolicyCount": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "How many content key policies are already created in current media service account" + }, + "ContentKeyPolicyQuota": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "How many content key polices are allowed for current media service account" + }, + "ContentKeyPolicyQuotaUsedPercentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Content Key Policy used percentage in current media service account" + }, + "JobQuota": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The Job quota for the current media service account." + }, + "JobsScheduled": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of Jobs in the Scheduled state. Counts on this metric only reflect jobs submitted through the v3 API. Jobs submitted through the v2 (Legacy) API are not counted." + }, + "KeyDeliveryRequests": { + "Unit": "Count", + "Aggregation": "Average, Count", + "Dimensions": "KeyType, HttpStatusCode", + "Time Grains": "PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "The key delivery request status and latency in milliseconds for the current Media Service account." + }, + "MaxChannelsAndLiveEventsCount": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The maximum number of live events allowed in the current media services account" + }, + "MaxRunningChannelsAndLiveEventsCount": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The maximum number of running live events allowed in the current media services account" + }, + "RunningChannelsAndLiveEventsCount": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of running live events in the current media services account" + }, + "StreamingPolicyCount": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "How many streaming policies are already created in current media service account" + }, + "StreamingPolicyQuota": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "How many streaming policies are allowed for current media service account" + }, + "StreamingPolicyQuotaUsedPercentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Streaming Policy used percentage in current media service account" + }, + "TransformQuota": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The Transform quota for the current media service account." + } + }, + "microsoft.media/mediaservices/streamingendpoints": { + "CPU": { + "Unit": "Percent", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "CPU usage for premium streaming endpoints. This data is not available for standard streaming endpoints." + }, + "Egress": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "OutputFormat", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of Egress data, in bytes." + }, + "EgressBandwidth": { + "Unit": "BitsPerSecond", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Egress bandwidth in bits per second." + }, + "Requests": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "OutputFormat, HttpStatusCode, ErrorCode", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Requests to a Streaming Endpoint." + }, + "SuccessE2ELatency": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "OutputFormat", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average latency for successful requests in milliseconds." + } + }, + "microsoft.media/videoanalyzers": { + "IngressBytes": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "PipelineKind, PipelineTopology, Pipeline, Node", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of bytes ingressed by the pipeline node." + }, + "Pipelines": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "PipelineKind, PipelineTopology, PipelineState", + "Time Grains": "PT5M", + "DS Export": "Yes", + "Description": "The number of pipelines of each kind and state" + } + }, + "microsoft.mixedreality/remoterenderingaccounts": { + "ActiveRenderingSessions": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "SessionType, SDKVersion", + "Time Grains": "PT1M, PT5M, PT1H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Total number of active rendering sessions" + }, + "AssetsConverted": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "SDKVersion", + "Time Grains": "PT1M, PT5M, PT1H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Total number of assets converted" + } + }, + "microsoft.mixedreality/spatialanchorsaccounts": { + "AnchorsCreated": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "DeviceFamily, SDKVersion", + "Time Grains": "PT5M, PT1H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Number of Anchors created" + }, + "AnchorsDeleted": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "DeviceFamily, SDKVersion", + "Time Grains": "PT5M, PT1H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Number of Anchors deleted" + }, + "AnchorsQueried": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "DeviceFamily, SDKVersion", + "Time Grains": "PT5M, PT1H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Number of Spatial Anchors queried" + }, + "AnchorsUpdated": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "DeviceFamily, SDKVersion", + "Time Grains": "PT5M, PT1H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Number of Anchors updated" + }, + "PosesFound": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "DeviceFamily, SDKVersion", + "Time Grains": "PT5M, PT1H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Number of Poses returned" + }, + "TotalDailyAnchors": { + "Unit": "Count", + "Aggregation": "Average, Total", + "Dimensions": "DeviceFamily, SDKVersion", + "Time Grains": "P1D", + "DS Export": "Yes", + "Description": "Total number of Anchors - Daily" + } + }, + "microsoft.mobilenetwork/packetcorecontrolplanes": { + "ActiveSessionCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, SiteId, RanId, Dnn", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of active PDU/PDN sessions" + }, + "AuthAttempt": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, SiteId", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "4G/5G authentication attempts rate (per minute)" + }, + "AuthFailure": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, SiteId, Result", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "4G/5G authentication failure rate (per minute)" + }, + "AuthSuccess": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, SiteId", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "4G/5G authentication success rate (per minute)" + }, + "ConnectedNodebs": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, SiteId", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of connected gNodeBs or eNodeBs" + }, + "DeRegistrationAttempt": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, SiteId", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Deregistration (5G) or detachment (4G) attempts rate (per minute)" + }, + "DeRegistrationSuccess": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, SiteId", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Deregistration (5G) or detachment (4G) success rate (per minute)" + }, + "PagingAttempt": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, SiteId", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "4G/5G paging attempts rate (per minute)" + }, + "PagingFailure": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, SiteId", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "4G/5G paging failure rate (per minute)" + }, + "ProvisionedSubscribers": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "SiteId", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of provisioned subscribers" + }, + "RanSetupFailure": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, SiteId, Cause", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "RAN setup failure rate (per minute)" + }, + "RanSetupRequest": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, SiteId", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "RAN setup request rate (per minute)" + }, + "RanSetupSuccess": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, SiteId", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "RAN setup success rate (per minute)" + }, + "RegisteredSubscribers": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, SiteId", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of registered subscribers" + }, + "RegisteredSubscribersConnected": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, SiteId", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of registered and connected subscribers" + }, + "RegisteredSubscribersIdle": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, SiteId", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of registered and idle subscribers" + }, + "RegistrationAttempt": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, SiteId", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Registration (5G) or attachment (4G) attempts rate (per minute)" + }, + "RegistrationFailure": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, SiteId, Result", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Registration (5G) or attachment (4G) failure rate (per minute)" + }, + "RegistrationSuccess": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, SiteId", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Registration (5G) or attachment (4G) success rate (per minute)" + }, + "ServiceRequestAttempt": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, SiteId", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "4G/5G service request attempts rate (per minute)" + }, + "ServiceRequestFailure": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, SiteId, Result, Tai", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "4G/5G service request failure rate (per minute)" + }, + "ServiceRequestSuccess": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, SiteId", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "4G/5G service request success rate (per minute)" + }, + "SessionEstablishmentAttempt": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, SiteId, Dnn", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "PDU/PDN session establishment attempts rate (per minute)" + }, + "SessionEstablishmentFailure": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, SiteId", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "PDU/PDN session establishment failure rate (per minute)" + }, + "SessionEstablishmentSuccess": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, SiteId, Dnn", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "PDU/PDN session establishment success rate (per minute)" + }, + "SessionRelease": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, SiteId", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Session release rate (per minute)" + }, + "UeContextReleaseCommand": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, SiteId", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "4G/5G UE context release command message rate (per minute)" + }, + "UeContextReleaseComplete": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, SiteId", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "4G/5G UE context release complete message rate (per minute)" + }, + "UeContextReleaseRequest": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, SiteId", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "4G/5G UE context release request message rate (per minute)" + }, + "XnHandoverAttempt": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, SiteId", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "XnHandover (5G) or X2Handover (4G) attempts rate (per minute)" + }, + "XnHandoverFailure": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, SiteId", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "XnHandover (5G) or X2Handover (4G) failure rate (per minute)" + }, + "XnHandoverSuccess": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "3gppGen, SiteId", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "XnHandover (5G) or X2Handover (4G) success rate (per minute)" + } + }, + "microsoft.mobilenetwork/packetcorecontrolplanes/packetcoredataplanes": { + "DataPlaneBandwidth": { + "Unit": "BitsPerSecond", + "Aggregation": "Total", + "Dimensions": "SiteId, Direction, Interface", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Data plane bandwidth for all traffic types (bits/second)." + }, + "DataPlanePacketDropRate": { + "Unit": "CountPerSecond", + "Aggregation": "Total", + "Dimensions": "SiteId, Cause, Direction, Interface", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Data plane packet drop rate for all traffic types (packets/sec)." + }, + "DataPlanePacketRate": { + "Unit": "CountPerSecond", + "Aggregation": "Total", + "Dimensions": "SiteId, Direction, Interface", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Data plane packet rate for all traffic types (packets/sec)." + }, + "N3Bandwidth": { + "Unit": "BitsPerSecond", + "Aggregation": "Total", + "Dimensions": "SiteId, Direction, RanId", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "N3 bandwidth for all traffic types (bits/second)." + }, + "N3PacketRate": { + "Unit": "CountPerSecond", + "Aggregation": "Total", + "Dimensions": "SiteId, Direction", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "N3 packet rate for all traffic types (packets/sec)." + }, + "N6Bandwidth": { + "Unit": "BitsPerSecond", + "Aggregation": "Total", + "Dimensions": "SiteId, Direction, Dnn", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "N6 bandwidth for all traffic types (bits/second)." + }, + "N6PacketRate": { + "Unit": "CountPerSecond", + "Aggregation": "Total", + "Dimensions": "SiteId, Direction, Dnn", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "N6 packet rate for all traffic types (packets/sec)." + } + }, + "microsoft.monitor/accounts": { + "ActiveTimeSeries": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "StampColor", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": " The number of unique time series recently ingested into the account over the previous 12 hours" + }, + "ActiveTimeSeriesLimit": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "StampColor", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The limit on the number of unique time series which can be actively ingested into the account" + }, + "ActiveTimeSeriesPercentUtilization": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "StampColor", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The percentage of current active time series account limit being utilized" + }, + "EventsPerMinuteIngested": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "StampColor", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The number of events per minute recently received" + }, + "EventsPerMinuteIngestedLimit": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "StampColor", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The maximum number of events per minute which can be received before events become throttled" + }, + "EventsPerMinuteIngestedPercentUtilization": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "StampColor", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The percentage of the current metric ingestion rate limit being utilized" + } + }, + "microsoft.netapp/netappaccounts/capacitypools": { + "VolumePoolAllocatedSize": { + "Unit": "Bytes", + "Aggregation": "Average, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Provisioned size of this pool" + }, + "VolumePoolAllocatedToVolumeThroughput": { + "Unit": "BytesPerSecond", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Sum of the throughput of all the volumes belonging to the pool" + }, + "VolumePoolAllocatedUsed": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Allocated used size of the pool" + }, + "VolumePoolProvisionedThroughput": { + "Unit": "BytesPerSecond", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Provisioned throughput of this pool" + }, + "VolumePoolTotalLogicalSize": { + "Unit": "Bytes", + "Aggregation": "Average, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Sum of the logical size of all the volumes belonging to the pool" + }, + "VolumePoolTotalSnapshotSize": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Sum of snapshot size of all volumes in this pool" + } + }, + "microsoft.netapp/netappaccounts/capacitypools/volumes": { + "AverageReadLatency": { + "Unit": "MilliSeconds", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Average read latency in milliseconds per operation" + }, + "AverageWriteLatency": { + "Unit": "MilliSeconds", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Average write latency in milliseconds per operation" + }, + "CbsVolumeBackupActive": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Is the backup policy suspended for the volume? 0 if yes, 1 if no." + }, + "CbsVolumeLogicalBackupBytes": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Total bytes backed up for this Volume." + }, + "CbsVolumeOperationBackupTransferredBytes": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Total bytes transferred for last backup operation." + }, + "CbsVolumeOperationComplete": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Did the last volume backup or restore operation complete successfully? 1 if yes, 0 if no." + }, + "CbsVolumeOperationRestoreTransferredBytes": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Total bytes transferred for last backup restore operation." + }, + "CbsVolumeOperationTransferredBytes": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Total bytes transferred for last backup or restore operation." + }, + "CbsVolumeProtected": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Is backup enabled for the volume? 1 if yes, 0 if no." + }, + "OtherThroughput": { + "Unit": "BytesPerSecond", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Other throughput (that is not read or write) in bytes per second" + }, + "ReadIops": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Read In/out operations per second" + }, + "ReadThroughput": { + "Unit": "BytesPerSecond", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Read throughput in bytes per second" + }, + "ThroughputLimitReached": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Has the throughput limit been reached, 1 if it has and 0 if not." + }, + "TotalThroughput": { + "Unit": "BytesPerSecond", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Sum of all throughput in bytes per second" + }, + "VolumeAllocatedSize": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The provisioned size of a volume" + }, + "VolumeConsumedSizePercentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The percentage of the volume consumed including snapshots." + }, + "VolumeCoolTierDataReadSize": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Data read in using GET per volume" + }, + "VolumeCoolTierDataWriteSize": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Data tiered out using PUT per volume" + }, + "VolumeCoolTierSize": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Volume Footprint for Cool Tier" + }, + "VolumeLogicalSize": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Logical size of the volume (used bytes)" + }, + "VolumeSnapshotSize": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Size of all snapshots in volume" + }, + "WriteIops": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Write In/out operations per second" + }, + "WriteThroughput": { + "Unit": "BytesPerSecond", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Write throughput in bytes per second" + }, + "XregionReplicationHealthy": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Condition of the relationship, 1 or 0." + }, + "XregionReplicationLagTime": { + "Unit": "Seconds", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The amount of time in seconds by which the data on the mirror lags behind the source." + }, + "XregionReplicationLastTransferDuration": { + "Unit": "Seconds", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The amount of time in seconds it took for the last transfer to complete." + }, + "XregionReplicationLastTransferSize": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The total number of bytes transferred as part of the last transfer." + }, + "XregionReplicationRelationshipProgress": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Total amount of data transferred for the current transfer operation." + }, + "XregionReplicationRelationshipTransferring": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Whether the status of the Volume Replication is 'transferring'." + }, + "XregionReplicationTotalTransferBytes": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Cumulative bytes transferred for the relationship." + } + }, + "microsoft.network/applicationgateways": { + "ApplicationGatewayTotalTime": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Maximum", + "Dimensions": "Listener", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Time that it takes for a request to be processed and its response to be sent. This is the interval from the time when Application Gateway receives the first byte of an HTTP request to the time when the response send operation finishes. It's important to note that this usually includes the Application Gateway processing time, time that the request and response packets are traveling over the network and the time the backend server took to respond." + }, + "AvgRequestCountPerHealthyHost": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "BackendSettingsPool", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Average request count per minute per healthy backend host in a pool" + }, + "AzwafBotProtection": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Action, Category, Mode, CountryCode, PolicyName, PolicyScope", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Matched Bot Rules" + }, + "AzwafCustomRule": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Action, CustomRuleID, Mode, CountryCode, PolicyName, PolicyScope", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Matched Custom Rules" + }, + "AzwafSecRule": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Action, Mode, RuleGroupID, RuleID, CountryCode, PolicyName, PolicyScope, RuleSetName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Matched Managed Rules" + }, + "AzwafTotalRequests": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Action, CountryCode, Method, Mode, PolicyName, PolicyScope", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of requests evaluated by WAF" + }, + "BackendConnectTime": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Maximum", + "Dimensions": "Listener, BackendServer, BackendPool, BackendHttpSetting", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Time spent establishing a connection with a backend server" + }, + "BackendFirstByteResponseTime": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Maximum", + "Dimensions": "Listener, BackendServer, BackendPool, BackendHttpSetting", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Time interval between start of establishing a connection to backend server and receiving the first byte of the response header, approximating processing time of backend server" + }, + "BackendLastByteResponseTime": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Maximum", + "Dimensions": "Listener, BackendServer, BackendPool, BackendHttpSetting", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Time interval between start of establishing a connection to backend server and receiving the last byte of the response body" + }, + "BackendResponseStatus": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "BackendServer, BackendPool, BackendHttpSetting, HttpStatusGroup", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of HTTP response codes generated by the backend members. This does not include any response codes generated by the Application Gateway." + }, + "BlockedCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "RuleGroup, RuleId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Web Application Firewall blocked requests rule distribution" + }, + "BytesReceived": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "Listener", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of bytes received by the Application Gateway from the clients" + }, + "BytesSent": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "Listener", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of bytes sent by the Application Gateway to the clients" + }, + "CapacityUnits": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Capacity Units consumed" + }, + "ClientRtt": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Maximum", + "Dimensions": "Listener", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Round trip time between clients and Application Gateway. This metric indicates how long it takes to establish connections and return acknowledgements" + }, + "ComputeUnits": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Compute Units consumed" + }, + "CpuUtilization": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Current CPU utilization of the Application Gateway" + }, + "CurrentConnections": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of current connections established with Application Gateway" + }, + "EstimatedBilledCapacityUnits": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Estimated capacity units that will be charged" + }, + "FailedRequests": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "BackendSettingsPool", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of failed requests that Application Gateway has served" + }, + "FixedBillableCapacityUnits": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Minimum capacity units that will be charged" + }, + "HealthyHostCount": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "BackendSettingsPool", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of healthy backend hosts" + }, + "MatchedCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "RuleGroup, RuleId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Web Application Firewall Total Rule Distribution for the incoming traffic" + }, + "NewConnectionsPerSecond": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "New connections per second established with Application Gateway" + }, + "ResponseStatus": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "HttpStatusGroup", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Http response status returned by Application Gateway" + }, + "Throughput": { + "Unit": "BytesPerSecond", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of bytes per second the Application Gateway has served" + }, + "TlsProtocol": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Listener, TlsProtocol", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of TLS and non-TLS requests initiated by the client that established connection with the Application Gateway. To view TLS protocol distribution, filter by the dimension TLS Protocol." + }, + "TotalRequests": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "BackendSettingsPool", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of successful requests that Application Gateway has served" + }, + "UnhealthyHostCount": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "BackendSettingsPool", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of unhealthy backend hosts" + } + }, + "microsoft.network/azurefirewalls": { + "ApplicationRuleHit": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Status, Reason, Protocol", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of times Application rules were hit" + }, + "DataProcessed": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total amount of data processed by this firewall" + }, + "FirewallHealth": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "Status, Reason", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Indicates the overall health of this firewall" + }, + "FirewallLatencyPng": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Estimate of the average latency of the Firewall as measured by latency probe" + }, + "NetworkRuleHit": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Status, Reason, Protocol", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of times Network rules were hit" + }, + "SNATPortUtilization": { + "Unit": "Percent", + "Aggregation": "Average, Maximum", + "Dimensions": "Protocol", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of outbound SNAT ports currently in use" + }, + "Throughput": { + "Unit": "BitsPerSecond", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Throughput processed by this firewall" + } + }, + "microsoft.network/bastionhosts": { + "pingmesh": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Communication status shows 1 if all communication is good and 0 if its bad." + }, + "sessions": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "host", + "Time Grains": "PT5M, PT15M", + "DS Export": "No", + "Description": "Sessions Count for the Bastion. View in sum and per instance." + }, + "total": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "host", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total memory stats." + }, + "usage_user": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "cpu, host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "CPU Usage stats." + }, + "used": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "host", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Memory Usage stats." + } + }, + "microsoft.network/connections": { + "BitsInPerSecond": { + "Unit": "BitsPerSecond", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Bits ingressing Azure per second" + }, + "BitsOutPerSecond": { + "Unit": "BitsPerSecond", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Bits egressing Azure per second" + } + }, + "microsoft.network/dnsforwardingrulesets": { + "ForwardingRuleCount": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "No Dimensions", + "Time Grains": "PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "This metric indicates the number of forwarding rules present in each DNS forwarding ruleset." + }, + "VirtualNetworkLinkCount": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "No Dimensions", + "Time Grains": "PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "This metric indicates the number of associated virtual network links to a DNS forwarding ruleset." + } + }, + "microsoft.network/dnsresolvers": { + "InboundEndpointCount": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "No Dimensions", + "Time Grains": "PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "This metric indicates the number of inbound endpoints created for a DNS Resolver." + }, + "OutboundEndpointCount": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "No Dimensions", + "Time Grains": "PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "This metric indicates the number of outbound endpoints created for a DNS Resolver." + }, + "QPS": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Count, Total", + "Dimensions": "EndpointId", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, PT24H", + "DS Export": "No", + "Description": "This metric indicates the queries per second for a DNS Resolver. (Can be aggregated per EndpointId)" + } + }, + "microsoft.network/dnszones": { + "QueryVolume": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1H", + "DS Export": "No", + "Description": "Number of queries served for a DNS zone" + }, + "RecordSetCapacityUtilization": { + "Unit": "Percent", + "Aggregation": "None, Average, Minimum, Maximum, Count", + "Dimensions": "No Dimensions", + "Time Grains": "PT1H", + "DS Export": "No", + "Description": "Percent of Record Set capacity utilized by a DNS zone" + }, + "RecordSetCount": { + "Unit": "Count", + "Aggregation": "None, Average, Minimum, Maximum, Count", + "Dimensions": "No Dimensions", + "Time Grains": "PT1H", + "DS Export": "No", + "Description": "Number of Record Sets in a DNS zone" + } + }, + "microsoft.network/expressroutecircuits": { + "ArpAvailability": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "PeeringType, Peer", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "ARP Availability from MSEE towards all peers." + }, + "BgpAvailability": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "PeeringType, Peer", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "BGP Availability from MSEE towards all peers." + }, + "BitsInPerSecond": { + "Unit": "BitsPerSecond", + "Aggregation": "Average", + "Dimensions": "PeeringType, DeviceRole", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Bits ingressing Azure per second" + }, + "BitsOutPerSecond": { + "Unit": "BitsPerSecond", + "Aggregation": "Average", + "Dimensions": "PeeringType, DeviceRole", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Bits egressing Azure per second" + }, + "FastPathRoutesCountForCircuit": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Count of fastpath routes configured on circuit" + }, + "GlobalReachBitsInPerSecond": { + "Unit": "BitsPerSecond", + "Aggregation": "Average", + "Dimensions": "PeeredCircuitSKey", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Bits ingressing Azure per second" + }, + "GlobalReachBitsOutPerSecond": { + "Unit": "BitsPerSecond", + "Aggregation": "Average", + "Dimensions": "PeeredCircuitSKey", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Bits egressing Azure per second" + }, + "QosDropBitsInPerSecond": { + "Unit": "BitsPerSecond", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Ingress bits of data dropped per second" + }, + "QosDropBitsOutPerSecond": { + "Unit": "BitsPerSecond", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Egress bits of data dropped per second" + } + }, + "microsoft.network/expressroutecircuits/peerings": { + "BitsInPerSecond": { + "Unit": "BitsPerSecond", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Bits ingressing Azure per second" + }, + "BitsOutPerSecond": { + "Unit": "BitsPerSecond", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Bits egressing Azure per second" + } + }, + "microsoft.network/expressroutegateways": { + "ErGatewayConnectionBitsInPerSecond": { + "Unit": "BitsPerSecond", + "Aggregation": "Average", + "Dimensions": "ConnectionName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Bits per second ingressing Azure via ExpressRoute Gateway which can be further split for specific connections" + }, + "ErGatewayConnectionBitsOutPerSecond": { + "Unit": "BitsPerSecond", + "Aggregation": "Average", + "Dimensions": "ConnectionName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Bits per second egressing Azure via ExpressRoute Gateway which can be further split for specific connections" + }, + "ExpressRouteGatewayActiveFlows": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "roleInstance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "Number of Active Flows on ExpressRoute Gateway" + }, + "ExpressRouteGatewayBitsPerSecond": { + "Unit": "BitsPerSecond", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "roleInstance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "Total Bits received on ExpressRoute Gateway per second" + }, + "ExpressRouteGatewayCountOfRoutesAdvertisedToPeer": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "roleInstance, BgpPeerAddress", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Count Of Routes Advertised To Peer by ExpressRoute Gateway" + }, + "ExpressRouteGatewayCountOfRoutesLearnedFromPeer": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "roleInstance, BgpPeerAddress", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Count Of Routes Learned From Peer by ExpressRoute Gateway" + }, + "ExpressRouteGatewayCpuUtilization": { + "Unit": "Percent", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "roleInstance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "CPU Utilization of the ExpressRoute Gateway" + }, + "ExpressRouteGatewayFrequencyOfRoutesChanged": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "roleInstance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "Frequency of Routes change in ExpressRoute Gateway" + }, + "ExpressRouteGatewayMaxFlowsCreationRate": { + "Unit": "CountPerSecond", + "Aggregation": "Maximum", + "Dimensions": "roleInstance, direction", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "Maximum Number of Flows Created Per Second on ExpressRoute Gateway" + }, + "ExpressRouteGatewayNumberOfVmInVnet": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "Number of VMs in the Virtual Network" + }, + "ExpressRouteGatewayPacketsPerSecond": { + "Unit": "CountPerSecond", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "roleInstance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "Total Packets received on ExpressRoute Gateway per second" + } + }, + "microsoft.network/expressrouteports": { + "AdminState": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "Link", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Admin state of the port" + }, + "FastPathRoutesCountForDirectPort": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Count of fastpath routes configured on port" + }, + "LineProtocol": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "Link", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Line protocol status of the port" + }, + "PortBitsInPerSecond": { + "Unit": "BitsPerSecond", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "Link", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Bits ingressing Azure per second" + }, + "PortBitsOutPerSecond": { + "Unit": "BitsPerSecond", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "Link", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Bits egressing Azure per second" + }, + "RxLightLevel": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "Link, Lane", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Rx Light level in dBm" + }, + "TxLightLevel": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Count", + "Dimensions": "Link, Lane", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Tx light level in dBm" + } + }, + "microsoft.network/frontdoors": { + "BackendHealthPercentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "Backend, BackendPool", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The percentage of successful health probes from the HTTP/S proxy to backends" + }, + "BackendRequestCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "HttpStatus, HttpStatusGroup, Backend", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The number of requests sent from the HTTP/S proxy to backends" + }, + "BackendRequestLatency": { + "Unit": "MilliSeconds", + "Aggregation": "Average", + "Dimensions": "Backend", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The time calculated from when the request was sent by the HTTP/S proxy to the backend until the HTTP/S proxy received the last response byte from the backend" + }, + "BillableResponseSize": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "HttpStatus, HttpStatusGroup, ClientRegion, ClientCountry", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The number of billable bytes (minimum 2KB per request) sent as responses from HTTP/S proxy to clients." + }, + "RequestCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "HttpStatus, HttpStatusGroup, ClientRegion, ClientCountry", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The number of client requests served by the HTTP/S proxy" + }, + "RequestSize": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "HttpStatus, HttpStatusGroup, ClientRegion, ClientCountry", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The number of bytes sent as requests from clients to the HTTP/S proxy" + }, + "ResponseSize": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "HttpStatus, HttpStatusGroup, ClientRegion, ClientCountry", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The number of bytes sent as responses from HTTP/S proxy to clients" + }, + "TotalLatency": { + "Unit": "MilliSeconds", + "Aggregation": "Average", + "Dimensions": "HttpStatus, HttpStatusGroup, ClientRegion, ClientCountry", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The time calculated from when the client request was received by the HTTP/S proxy until the client acknowledged the last response byte from the HTTP/S proxy" + }, + "WebApplicationFirewallRequestCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "PolicyName, RuleName, Action", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The number of client requests processed by the Web Application Firewall" + } + }, + "microsoft.network/loadbalancers": { + "AllocatedSnatPorts": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "FrontendIPAddress, BackendIPAddress, ProtocolType, IsAwaitingRemoval", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total number of SNAT ports allocated within time period" + }, + "ByteCount": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "FrontendIPAddress, FrontendPort, Direction", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of Bytes transmitted within time period" + }, + "DipAvailability": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "ProtocolType, BackendPort, FrontendIPAddress, FrontendPort, BackendIPAddress", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average Load Balancer health probe status per time duration" + }, + "GlobalBackendAvailability": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "FrontendIPAddress, FrontendPort, BackendIPAddress, ProtocolType, FrontendRegion, BackendRegion", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Azure Cross-region Load Balancer backend health and status per time duration" + }, + "PacketCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "FrontendIPAddress, FrontendPort, Direction", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of Packets transmitted within time period" + }, + "SnatConnectionCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "FrontendIPAddress, BackendIPAddress, ConnectionState", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of new SNAT connections created within time period" + }, + "SYNCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "FrontendIPAddress, FrontendPort, Direction", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of SYN Packets transmitted within time period" + }, + "UsedSnatPorts": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "FrontendIPAddress, BackendIPAddress, ProtocolType, IsAwaitingRemoval", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total number of SNAT ports used within time period" + }, + "VipAvailability": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "FrontendIPAddress, FrontendPort", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average Load Balancer data path availability per time duration" + } + }, + "microsoft.network/natgateways": { + "ByteCount": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "Protocol, Direction", + "Time Grains": "PT1M, PT1H", + "DS Export": "No", + "Description": "Total number of Bytes transmitted within time period" + }, + "DatapathAvailability": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M, PT1H", + "DS Export": "No", + "Description": "NAT Gateway Datapath Availability" + }, + "PacketCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Protocol, Direction", + "Time Grains": "PT1M, PT1H", + "DS Export": "No", + "Description": "Total number of Packets transmitted within time period" + }, + "PacketDropCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M, PT1H", + "DS Export": "No", + "Description": "Count of dropped packets" + }, + "SNATConnectionCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Protocol, ConnectionState", + "Time Grains": "PT1M, PT1H", + "DS Export": "No", + "Description": "Total concurrent active connections" + }, + "TotalConnectionCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Protocol", + "Time Grains": "PT1M, PT1H", + "DS Export": "No", + "Description": "Total number of active SNAT connections" + } + }, + "microsoft.network/networkinterfaces": { + "BytesReceivedRate": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M, PT1H", + "DS Export": "Yes", + "Description": "Number of bytes the Network Interface received" + }, + "BytesSentRate": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M, PT1H", + "DS Export": "Yes", + "Description": "Number of bytes the Network Interface sent" + }, + "PacketsReceivedRate": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M, PT1H", + "DS Export": "Yes", + "Description": "Number of packets the Network Interface received" + }, + "PacketsSentRate": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M, PT1H", + "DS Export": "Yes", + "Description": "Number of packets the Network Interface sent" + } + }, + "microsoft.network/networkwatchers/connectionmonitors": { + "AverageRoundtripMs": { + "Unit": "MilliSeconds", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M, PT1H", + "DS Export": "Yes", + "Description": "Average network round-trip time (ms) for connectivity monitoring probes sent between source and destination" + }, + "ChecksFailedPercent": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "SourceAddress, SourceName, SourceResourceId, SourceType, Protocol, DestinationAddress, DestinationName, DestinationResourceId, DestinationType, DestinationPort, TestGroupName, TestConfigurationName, SourceIP, DestinationIP, SourceSubnet, DestinationSubnet", + "Time Grains": "PT1M, PT1H", + "DS Export": "Yes", + "Description": "% of connectivity monitoring checks failed" + }, + "ProbesFailedPercent": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M, PT1H", + "DS Export": "Yes", + "Description": "% of connectivity monitoring probes failed" + }, + "RoundTripTimeMs": { + "Unit": "MilliSeconds", + "Aggregation": "Average", + "Dimensions": "SourceAddress, SourceName, SourceResourceId, SourceType, Protocol, DestinationAddress, DestinationName, DestinationResourceId, DestinationType, DestinationPort, TestGroupName, TestConfigurationName, SourceIP, DestinationIP, SourceSubnet, DestinationSubnet", + "Time Grains": "PT1M, PT1H", + "DS Export": "Yes", + "Description": "Round-trip time in milliseconds for the connectivity monitoring checks" + }, + "TestResult": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "SourceAddress, SourceName, SourceResourceId, SourceType, Protocol, DestinationAddress, DestinationName, DestinationResourceId, DestinationType, DestinationPort, TestGroupName, TestConfigurationName, TestResultCriterion, SourceIP, DestinationIP, SourceSubnet, DestinationSubnet", + "Time Grains": "PT1M, PT1H", + "DS Export": "Yes", + "Description": "Connection monitor test result" + } + }, + "microsoft.network/p2svpngateways": { + "P2SBandwidth": { + "Unit": "BytesPerSecond", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Point-to-site bandwidth of a gateway in bytes per second" + }, + "P2SConnectionCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Protocol, Instance", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Point-to-site connection count of a gateway" + }, + "UserVpnRouteCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "RouteType, Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "Count of P2S User Vpn routes learned by gateway" + } + }, + "microsoft.network/privatednszones": { + "QueryVolume": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "", + "DS Export": "No", + "Description": "Number of queries served for a Private DNS zone" + }, + "RecordSetCapacityUtilization": { + "Unit": "Percent", + "Aggregation": "None, Average, Minimum, Maximum, Count", + "Dimensions": "No Dimensions", + "Time Grains": "", + "DS Export": "No", + "Description": "Percent of Record Set capacity utilized by a Private DNS zone" + }, + "RecordSetCount": { + "Unit": "Count", + "Aggregation": "None, Average, Minimum, Maximum, Count", + "Dimensions": "No Dimensions", + "Time Grains": "", + "DS Export": "No", + "Description": "Number of Record Sets in a Private DNS zone" + }, + "VirtualNetworkLinkCapacityUtilization": { + "Unit": "Percent", + "Aggregation": "None, Average, Minimum, Maximum, Count", + "Dimensions": "No Dimensions", + "Time Grains": "", + "DS Export": "No", + "Description": "Percent of Virtual Network Link capacity utilized by a Private DNS zone" + }, + "VirtualNetworkLinkCount": { + "Unit": "Count", + "Aggregation": "None, Average, Minimum, Maximum, Count", + "Dimensions": "No Dimensions", + "Time Grains": "", + "DS Export": "No", + "Description": "Number of Virtual Networks linked to a Private DNS zone" + }, + "VirtualNetworkWithRegistrationCapacityUtilization": { + "Unit": "Percent", + "Aggregation": "None, Average, Minimum, Maximum, Count", + "Dimensions": "No Dimensions", + "Time Grains": "", + "DS Export": "No", + "Description": "Percent of Virtual Network Link with auto-registration capacity utilized by a Private DNS zone" + }, + "VirtualNetworkWithRegistrationLinkCount": { + "Unit": "Count", + "Aggregation": "None, Average, Minimum, Maximum, Count", + "Dimensions": "No Dimensions", + "Time Grains": "", + "DS Export": "No", + "Description": "Number of Virtual Networks linked to a Private DNS zone with auto-registration enabled" + } + }, + "microsoft.network/privateendpoints": { + "PEBytesIn": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M, PT1H", + "DS Export": "No", + "Description": "Total number of Bytes Out" + }, + "PEBytesOut": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M, PT1H", + "DS Export": "No", + "Description": "Total number of Bytes Out" + } + }, + "microsoft.network/privatelinkservices": { + "PLSBytesIn": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "PrivateLinkServiceId", + "Time Grains": "PT1M, PT1H", + "DS Export": "Yes", + "Description": "Total number of Bytes Out" + }, + "PLSBytesOut": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "PrivateLinkServiceId", + "Time Grains": "PT1M, PT1H", + "DS Export": "Yes", + "Description": "Total number of Bytes Out" + }, + "PLSNatPortsUsage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "PrivateLinkServiceId, PrivateLinkServiceIPAddress", + "Time Grains": "PT1M, PT1H", + "DS Export": "Yes", + "Description": "Nat Ports Usage" + } + }, + "microsoft.network/publicipaddresses": { + "ByteCount": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "Port, Direction", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of Bytes transmitted within time period" + }, + "BytesDroppedDDoS": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound bytes dropped DDoS" + }, + "BytesForwardedDDoS": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound bytes forwarded DDoS" + }, + "BytesInDDoS": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound bytes DDoS" + }, + "DDoSTriggerSYNPackets": { + "Unit": "CountPerSecond", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound SYN packets to trigger DDoS mitigation" + }, + "DDoSTriggerTCPPackets": { + "Unit": "CountPerSecond", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound TCP packets to trigger DDoS mitigation" + }, + "DDoSTriggerUDPPackets": { + "Unit": "CountPerSecond", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound UDP packets to trigger DDoS mitigation" + }, + "IfUnderDDoSAttack": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Under DDoS attack or not" + }, + "PacketCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Port, Direction", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of Packets transmitted within time period" + }, + "PacketsDroppedDDoS": { + "Unit": "CountPerSecond", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound packets dropped DDoS" + }, + "PacketsForwardedDDoS": { + "Unit": "CountPerSecond", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound packets forwarded DDoS" + }, + "PacketsInDDoS": { + "Unit": "CountPerSecond", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound packets DDoS" + }, + "SynCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Port, Direction", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of SYN Packets transmitted within time period" + }, + "TCPBytesDroppedDDoS": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound TCP bytes dropped DDoS" + }, + "TCPBytesForwardedDDoS": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound TCP bytes forwarded DDoS" + }, + "TCPBytesInDDoS": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound TCP bytes DDoS" + }, + "TCPPacketsDroppedDDoS": { + "Unit": "CountPerSecond", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound TCP packets dropped DDoS" + }, + "TCPPacketsForwardedDDoS": { + "Unit": "CountPerSecond", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound TCP packets forwarded DDoS" + }, + "TCPPacketsInDDoS": { + "Unit": "CountPerSecond", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound TCP packets DDoS" + }, + "UDPBytesDroppedDDoS": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound UDP bytes dropped DDoS" + }, + "UDPBytesForwardedDDoS": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound UDP bytes forwarded DDoS" + }, + "UDPBytesInDDoS": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound UDP bytes DDoS" + }, + "UDPPacketsDroppedDDoS": { + "Unit": "CountPerSecond", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound UDP packets dropped DDoS" + }, + "UDPPacketsForwardedDDoS": { + "Unit": "CountPerSecond", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound UDP packets forwarded DDoS" + }, + "UDPPacketsInDDoS": { + "Unit": "CountPerSecond", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound UDP packets DDoS" + }, + "VipAvailability": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Port", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average IP Address availability per time duration" + } + }, + "microsoft.network/publicipprefixes": { + "BytesDroppedDDoS": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "DestinationVIP", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound bytes dropped DDoS" + }, + "BytesForwardedDDoS": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "DestinationVIP", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound bytes forwarded DDoS" + }, + "BytesInDDoS": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "DestinationVIP", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound bytes DDoS" + }, + "DDoSTriggerSYNPackets": { + "Unit": "CountPerSecond", + "Aggregation": "Maximum", + "Dimensions": "VipAddress", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound SYN packets to trigger DDoS mitigation" + }, + "DDoSTriggerTCPPackets": { + "Unit": "CountPerSecond", + "Aggregation": "Maximum", + "Dimensions": "VipAddress", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound TCP packets to trigger DDoS mitigation" + }, + "DDoSTriggerUDPPackets": { + "Unit": "CountPerSecond", + "Aggregation": "Maximum", + "Dimensions": "VipAddress", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound UDP packets to trigger DDoS mitigation" + }, + "IfUnderDDoSAttack": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "DestinationVIP", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Under DDoS attack or not" + }, + "PacketsDroppedDDoS": { + "Unit": "CountPerSecond", + "Aggregation": "Maximum", + "Dimensions": "DestinationVIP", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound packets dropped DDoS" + }, + "PacketsForwardedDDoS": { + "Unit": "CountPerSecond", + "Aggregation": "Maximum", + "Dimensions": "DestinationVIP", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound packets forwarded DDoS" + }, + "PacketsInDDoS": { + "Unit": "CountPerSecond", + "Aggregation": "Maximum", + "Dimensions": "DestinationVIP", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound packets DDoS" + }, + "TCPBytesDroppedDDoS": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "DestinationVIP", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound TCP bytes dropped DDoS" + }, + "TCPBytesForwardedDDoS": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "DestinationVIP", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound TCP bytes forwarded DDoS" + }, + "TCPBytesInDDoS": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "DestinationVIP", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound TCP bytes DDoS" + }, + "TCPPacketsDroppedDDoS": { + "Unit": "CountPerSecond", + "Aggregation": "Maximum", + "Dimensions": "DestinationVIP", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound TCP packets dropped DDoS" + }, + "TCPPacketsForwardedDDoS": { + "Unit": "CountPerSecond", + "Aggregation": "Maximum", + "Dimensions": "DestinationVIP", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound TCP packets forwarded DDoS" + }, + "TCPPacketsInDDoS": { + "Unit": "CountPerSecond", + "Aggregation": "Maximum", + "Dimensions": "DestinationVIP", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound TCP packets DDoS" + }, + "UDPBytesDroppedDDoS": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "DestinationVIP", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound UDP bytes dropped DDoS" + }, + "UDPBytesForwardedDDoS": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "DestinationVIP", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound UDP bytes forwarded DDoS" + }, + "UDPBytesInDDoS": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "DestinationVIP", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound UDP bytes DDoS" + }, + "UDPPacketsDroppedDDoS": { + "Unit": "CountPerSecond", + "Aggregation": "Maximum", + "Dimensions": "DestinationVIP", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound UDP packets dropped DDoS" + }, + "UDPPacketsForwardedDDoS": { + "Unit": "CountPerSecond", + "Aggregation": "Maximum", + "Dimensions": "DestinationVIP", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound UDP packets forwarded DDoS" + }, + "UDPPacketsInDDoS": { + "Unit": "CountPerSecond", + "Aggregation": "Maximum", + "Dimensions": "DestinationVIP", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound UDP packets DDoS" + } + }, + "microsoft.network/trafficmanagerprofiles": { + "ProbeAgentCurrentEndpointStateByProfileResourceId": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "EndpointName", + "Time Grains": "PT1M, PT1H", + "DS Export": "Yes", + "Description": "1 if an endpoint's probe status is \"Enabled\", 0 otherwise." + }, + "QpsByEndpoint": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "EndpointName", + "Time Grains": "PT1M, PT1H", + "DS Export": "Yes", + "Description": "Number of times a Traffic Manager endpoint was returned in the given time frame" + } + }, + "microsoft.network/virtualhubs": { + "BgpPeerStatus": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "routeserviceinstance, bgppeerip, bgppeertype", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "1 - Connected, 0 - Not connected" + }, + "CountOfRoutesAdvertisedToPeer": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "routeserviceinstance, bgppeerip, bgppeertype", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "Total number of routes advertised to peer" + }, + "CountOfRoutesLearnedFromPeer": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "routeserviceinstance, bgppeerip, bgppeertype", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "Total number of routes learned from peer" + }, + "VirtualHubDataProcessed": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "Data Processed by the Virtual Hub Router" + } + }, + "microsoft.network/virtualnetworkgateways": { + "AverageBandwidth": { + "Unit": "BytesPerSecond", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Site-to-site bandwidth of a gateway in bytes per second" + }, + "BgpPeerStatus": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "BgpPeerAddress, Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "Status of BGP peer" + }, + "BgpRoutesAdvertised": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "BgpPeerAddress, Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Count of Bgp Routes Advertised through tunnel" + }, + "BgpRoutesLearned": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "BgpPeerAddress, Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Count of Bgp Routes Learned through tunnel" + }, + "ExpressRouteGatewayActiveFlows": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "roleInstance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "Number of Active Flows on ExpressRoute Gateway" + }, + "ExpressRouteGatewayBitsPerSecond": { + "Unit": "BitsPerSecond", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "roleInstance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "Total Bits received on ExpressRoute Gateway per second" + }, + "ExpressRouteGatewayCountOfRoutesAdvertisedToPeer": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "roleInstance, BgpPeerAddress", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Count Of Routes Advertised To Peer by ExpressRoute Gateway" + }, + "ExpressRouteGatewayCountOfRoutesLearnedFromPeer": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "roleInstance, BgpPeerAddress", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Count Of Routes Learned From Peer by ExpressRoute Gateway" + }, + "ExpressRouteGatewayCpuUtilization": { + "Unit": "Percent", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "roleInstance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "CPU Utilization of the ExpressRoute Gateway" + }, + "ExpressRouteGatewayFrequencyOfRoutesChanged": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "roleInstance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "Frequency of Routes change in ExpressRoute Gateway" + }, + "ExpressRouteGatewayMaxFlowsCreationRate": { + "Unit": "CountPerSecond", + "Aggregation": "Maximum", + "Dimensions": "roleInstance, direction", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "Maximum Number of Flows Created Per Second on ExpressRoute Gateway" + }, + "ExpressRouteGatewayNumberOfVmInVnet": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "roleInstance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "Number of VMs in the Virtual Network" + }, + "ExpressRouteGatewayPacketsPerSecond": { + "Unit": "CountPerSecond", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "roleInstance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "Total Packets received on ExpressRoute Gateway per second" + }, + "MmsaCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ConnectionName, RemoteIP, Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "MMSA Count" + }, + "P2SBandwidth": { + "Unit": "BytesPerSecond", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Point-to-site bandwidth of a gateway in bytes per second" + }, + "P2SConnectionCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Protocol, Instance", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Point-to-site connection count of a gateway" + }, + "QmsaCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ConnectionName, RemoteIP, Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "QMSA Count" + }, + "ScalableExpressRouteGatewayActiveFlows": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "Number of Active Flows on ExpressRoute Gateway" + }, + "ScalableExpressRouteGatewayBitsPerSecond": { + "Unit": "BitsPerSecond", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "Total Bits received on ExpressRoute Gateway per second" + }, + "ScalableExpressRouteGatewayCountOfRoutesAdvertisedToPeer": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "Count Of Routes Advertised To Peer by ExpressRoute Gateway" + }, + "ScalableExpressRouteGatewayCountOfRoutesLearnedFromPeer": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "Count Of Routes Learned From Peer by ExpressRoute Gateway" + }, + "ScalableExpressRouteGatewayCpuUtilization": { + "Unit": "Percent", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "CPU Utilization of the ExpressRoute Gateway" + }, + "ScalableExpressRouteGatewayFrequencyOfRoutesChanged": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "Frequency of Routes change in ExpressRoute Gateway" + }, + "ScalableExpressRouteGatewayMaxFlowsCreationRate": { + "Unit": "CountPerSecond", + "Aggregation": "Maximum", + "Dimensions": "direction", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "Maximum Number of Flows Created Per Second on ExpressRoute Gateway" + }, + "ScalableExpressRouteGatewayNumberOfVmInVnet": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "Number of VMs in the Virtual Network" + }, + "ScalableExpressRouteGatewayPacketsPerSecond": { + "Unit": "CountPerSecond", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "Total Packets received on ExpressRoute Gateway per second" + }, + "TunnelAverageBandwidth": { + "Unit": "BytesPerSecond", + "Aggregation": "Average", + "Dimensions": "ConnectionName, RemoteIP, Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Average bandwidth of a tunnel in bytes per second" + }, + "TunnelEgressBytes": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "ConnectionName, RemoteIP, Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Outgoing bytes of a tunnel" + }, + "TunnelEgressPacketDropCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ConnectionName, RemoteIP, Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Count of outgoing packets dropped by tunnel" + }, + "TunnelEgressPacketDropTSMismatch": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ConnectionName, RemoteIP, Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Outgoing packet drop count from traffic selector mismatch of a tunnel" + }, + "TunnelEgressPackets": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ConnectionName, RemoteIP, Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Outgoing packet count of a tunnel" + }, + "TunnelIngressBytes": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "ConnectionName, RemoteIP, Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Incoming bytes of a tunnel" + }, + "TunnelIngressPacketDropCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ConnectionName, RemoteIP, Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Count of incoming packets dropped by tunnel" + }, + "TunnelIngressPacketDropTSMismatch": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ConnectionName, RemoteIP, Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Incoming packet drop count from traffic selector mismatch of a tunnel" + }, + "TunnelIngressPackets": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ConnectionName, RemoteIP, Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Incoming packet count of a tunnel" + }, + "TunnelNatAllocations": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "NatRule, ConnectionName, RemoteIP, Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "Count of allocations for a NAT rule on a tunnel" + }, + "TunnelNatedBytes": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "NatRule, ConnectionName, RemoteIP, Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "Number of bytes that were NATed on a tunnel by a NAT rule" + }, + "TunnelNatedPackets": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "NatRule, ConnectionName, RemoteIP, Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "Number of packets that were NATed on a tunnel by a NAT rule" + }, + "TunnelNatFlowCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "NatRule, FlowType, ConnectionName, RemoteIP, Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "Number of NAT flows on a tunnel by flow type and NAT rule" + }, + "TunnelNatPacketDrop": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "NatRule, DropType, ConnectionName, RemoteIP, Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "Number of NATed packets on a tunnel that dropped by drop type and NAT rule" + }, + "TunnelPeakPackets": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "ConnectionName, RemoteIP, Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Tunnel Peak Packets Per Second" + }, + "TunnelReverseNatedBytes": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "NatRule, ConnectionName, RemoteIP, Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "Number of bytes that were reverse NATed on a tunnel by a NAT rule" + }, + "TunnelReverseNatedPackets": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "NatRule, ConnectionName, RemoteIP, Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "Number of packets on a tunnel that were reverse NATed by a NAT rule" + }, + "TunnelTotalFlowCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ConnectionName, RemoteIP, Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Total flow count on a tunnel" + }, + "UserVpnRouteCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "RouteType, Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "Count of P2S User Vpn routes learned by gateway" + }, + "VnetAddressPrefixCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Count of Vnet address prefixes behind gateway" + } + }, + "microsoft.network/virtualnetworks": { + "BytesDroppedDDoS": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "ProtectedIPAddress", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound bytes dropped DDoS" + }, + "BytesForwardedDDoS": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "ProtectedIPAddress", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound bytes forwarded DDoS" + }, + "BytesInDDoS": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "ProtectedIPAddress", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound bytes DDoS" + }, + "DDoSTriggerSYNPackets": { + "Unit": "CountPerSecond", + "Aggregation": "Maximum", + "Dimensions": "ProtectedIPAddress", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound SYN packets to trigger DDoS mitigation" + }, + "DDoSTriggerTCPPackets": { + "Unit": "CountPerSecond", + "Aggregation": "Maximum", + "Dimensions": "ProtectedIPAddress", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound TCP packets to trigger DDoS mitigation" + }, + "DDoSTriggerUDPPackets": { + "Unit": "CountPerSecond", + "Aggregation": "Maximum", + "Dimensions": "ProtectedIPAddress", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound UDP packets to trigger DDoS mitigation" + }, + "IfUnderDDoSAttack": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "ProtectedIPAddress", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Under DDoS attack or not" + }, + "PacketsDroppedDDoS": { + "Unit": "CountPerSecond", + "Aggregation": "Maximum", + "Dimensions": "ProtectedIPAddress", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound packets dropped DDoS" + }, + "PacketsForwardedDDoS": { + "Unit": "CountPerSecond", + "Aggregation": "Maximum", + "Dimensions": "ProtectedIPAddress", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound packets forwarded DDoS" + }, + "PacketsInDDoS": { + "Unit": "CountPerSecond", + "Aggregation": "Maximum", + "Dimensions": "ProtectedIPAddress", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound packets DDoS" + }, + "PingMeshAverageRoundtripMs": { + "Unit": "MilliSeconds", + "Aggregation": "Average", + "Dimensions": "SourceCustomerAddress, DestinationCustomerAddress", + "Time Grains": "PT1M, PT1H", + "DS Export": "Yes", + "Description": "Round trip time for Pings sent to a destination VM" + }, + "PingMeshProbesFailedPercent": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "SourceCustomerAddress, DestinationCustomerAddress", + "Time Grains": "PT1M, PT1H", + "DS Export": "Yes", + "Description": "Percent of number of failed Pings to total sent Pings of a destination VM" + }, + "TCPBytesDroppedDDoS": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "ProtectedIPAddress", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound TCP bytes dropped DDoS" + }, + "TCPBytesForwardedDDoS": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "ProtectedIPAddress", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound TCP bytes forwarded DDoS" + }, + "TCPBytesInDDoS": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "ProtectedIPAddress", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound TCP bytes DDoS" + }, + "TCPPacketsDroppedDDoS": { + "Unit": "CountPerSecond", + "Aggregation": "Maximum", + "Dimensions": "ProtectedIPAddress", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound TCP packets dropped DDoS" + }, + "TCPPacketsForwardedDDoS": { + "Unit": "CountPerSecond", + "Aggregation": "Maximum", + "Dimensions": "ProtectedIPAddress", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound TCP packets forwarded DDoS" + }, + "TCPPacketsInDDoS": { + "Unit": "CountPerSecond", + "Aggregation": "Maximum", + "Dimensions": "ProtectedIPAddress", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound TCP packets DDoS" + }, + "UDPBytesDroppedDDoS": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "ProtectedIPAddress", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound UDP bytes dropped DDoS" + }, + "UDPBytesForwardedDDoS": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "ProtectedIPAddress", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound UDP bytes forwarded DDoS" + }, + "UDPBytesInDDoS": { + "Unit": "BytesPerSecond", + "Aggregation": "Maximum", + "Dimensions": "ProtectedIPAddress", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound UDP bytes DDoS" + }, + "UDPPacketsDroppedDDoS": { + "Unit": "CountPerSecond", + "Aggregation": "Maximum", + "Dimensions": "ProtectedIPAddress", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound UDP packets dropped DDoS" + }, + "UDPPacketsForwardedDDoS": { + "Unit": "CountPerSecond", + "Aggregation": "Maximum", + "Dimensions": "ProtectedIPAddress", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound UDP packets forwarded DDoS" + }, + "UDPPacketsInDDoS": { + "Unit": "CountPerSecond", + "Aggregation": "Maximum", + "Dimensions": "ProtectedIPAddress", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Inbound UDP packets DDoS" + } + }, + "microsoft.network/virtualrouters": { + "PeeringAvailability": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "Peer", + "Time Grains": "", + "DS Export": "Yes", + "Description": "BGP Availability between VirtualRouter and remote peers" + } + }, + "microsoft.network/vpngateways": { + "AverageBandwidth": { + "Unit": "BytesPerSecond", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Site-to-site bandwidth of a gateway in bytes per second" + }, + "BgpPeerStatus": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "BgpPeerAddress, Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "Status of BGP peer" + }, + "BgpRoutesAdvertised": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "BgpPeerAddress, Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Count of Bgp Routes Advertised through tunnel" + }, + "BgpRoutesLearned": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "BgpPeerAddress, Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Count of Bgp Routes Learned through tunnel" + }, + "MmsaCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ConnectionName, RemoteIP, Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "MMSA Count" + }, + "QmsaCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ConnectionName, RemoteIP, Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "QMSA Count" + }, + "TunnelAverageBandwidth": { + "Unit": "BytesPerSecond", + "Aggregation": "Average", + "Dimensions": "ConnectionName, RemoteIP, Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Average bandwidth of a tunnel in bytes per second" + }, + "TunnelEgressBytes": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "ConnectionName, RemoteIP, Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Outgoing bytes of a tunnel" + }, + "TunnelEgressPacketDropCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ConnectionName, RemoteIP, Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Count of outgoing packets dropped by tunnel" + }, + "TunnelEgressPacketDropTSMismatch": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ConnectionName, RemoteIP, Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Outgoing packet drop count from traffic selector mismatch of a tunnel" + }, + "TunnelEgressPackets": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ConnectionName, RemoteIP, Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Outgoing packet count of a tunnel" + }, + "TunnelIngressBytes": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "ConnectionName, RemoteIP, Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Incoming bytes of a tunnel" + }, + "TunnelIngressPacketDropCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ConnectionName, RemoteIP, Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Count of incoming packets dropped by tunnel" + }, + "TunnelIngressPacketDropTSMismatch": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ConnectionName, RemoteIP, Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Incoming packet drop count from traffic selector mismatch of a tunnel" + }, + "TunnelIngressPackets": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ConnectionName, RemoteIP, Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Incoming packet count of a tunnel" + }, + "TunnelNatAllocations": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "NatRule, ConnectionName, RemoteIP, Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "Count of allocations for a NAT rule on a tunnel" + }, + "TunnelNatedBytes": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "NatRule, ConnectionName, RemoteIP, Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "Number of bytes that were NATed on a tunnel by a NAT rule" + }, + "TunnelNatedPackets": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "NatRule, ConnectionName, RemoteIP, Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "Number of packets that were NATed on a tunnel by a NAT rule" + }, + "TunnelNatFlowCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "NatRule, FlowType, ConnectionName, RemoteIP, Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "Number of NAT flows on a tunnel by flow type and NAT rule" + }, + "TunnelNatPacketDrop": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "NatRule, DropType, ConnectionName, RemoteIP, Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "Number of NATed packets on a tunnel that dropped by drop type and NAT rule" + }, + "TunnelPeakPackets": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "ConnectionName, RemoteIP, Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Tunnel Peak Packets Per Second" + }, + "TunnelReverseNatedBytes": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "NatRule, ConnectionName, RemoteIP, Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "Number of bytes that were reverse NATed on a tunnel by a NAT rule" + }, + "TunnelReverseNatedPackets": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "NatRule, ConnectionName, RemoteIP, Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "Number of packets on a tunnel that were reverse NATed by a NAT rule" + }, + "TunnelTotalFlowCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ConnectionName, RemoteIP, Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Total flow count on a tunnel" + }, + "VnetAddressPrefixCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Count of Vnet address prefixes behind gateway" + } + }, + "microsoft.networkanalytics/dataconnectors": { + "DataIngested": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The volume of data ingested by the pipeline (bytes)." + }, + "MalformedData": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of files unable to be processed by the pipeline." + }, + "MalformedRecords": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The number of records unable to be processed by the pipeline." + }, + "ProcessedFileCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of files processed by the data connector." + }, + "Running": { + "Unit": "Unspecified", + "Aggregation": "Count", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Values greater than 0 indicate that the pipeline is ready to process data." + } + }, + "microsoft.networkcloud/baremetalmachines": { + "HostBootTimeSeconds": { + "Unit": "Seconds", + "Aggregation": "Average", + "Dimensions": "Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Unix time of last boot" + }, + "HostDiskReadCompleted": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Device, Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Disk reads completed by node" + }, + "HostDiskReadSeconds": { + "Unit": "Seconds", + "Aggregation": "Average", + "Dimensions": "Device, Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Disk read time by node" + }, + "HostDiskWriteCompleted": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Device, Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Disk writes completed by node" + }, + "HostDiskWriteSeconds": { + "Unit": "Seconds", + "Aggregation": "Average", + "Dimensions": "Device, Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Disk write time by node" + }, + "HostDmiInfo": { + "Unit": "Unspecified", + "Aggregation": "Count", + "Dimensions": "BiosDate, BiosRelease, BiosVendor, BiosVersion, BoardAssetTag, BoardName, BoardVendor, BoardVersion, ChassisAssetTag, ChassisVendor, ChassisVersion, Host, ProductFamily, ProductName, ProductSku, ProductUuid, ProductVersion, SystemVendor", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Host Desktop Management Interface (DMI) environment information" + }, + "HostEntropyAvailableBits": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Available bits in node entropy" + }, + "HostFilesystemAvailBytes": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Device, FSType, Host, Mountpoint", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Available filesystem size by node" + }, + "HostFilesystemDeviceError": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Device, FSType, Host, Mountpoint", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Indicates if there was a problem getting information for the filesystem" + }, + "HostFilesystemFiles": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Device, FSType, Host, Mountpoint", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total number of permitted inodes" + }, + "HostFilesystemFilesFree": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Device, FSType, Host, Mountpoint", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total number of free inodes" + }, + "HostFilesystemReadOnly": { + "Unit": "Unspecified", + "Aggregation": "Count", + "Dimensions": "Device, FSType, Host, Mountpoint", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Indicates if the filesystem is readonly" + }, + "HostFilesystemSizeBytes": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Device, FSType, Host, Mountpoint", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Filesystem size by node" + }, + "HostHwmonTempCelsius": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Chip, Host, Sensor", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Hardware monitor for temperature (celsius)" + }, + "HostHwmonTempMax": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Chip, Host, Sensor", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Hardware monitor for maximum temperature (celsius)" + }, + "HostLoad1": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "1 minute load average" + }, + "HostLoad15": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "15 minute load average" + }, + "HostLoad5": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "5 minute load average" + }, + "HostMemAvailBytes": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Available memory in bytes by node" + }, + "HostMemHWCorruptedBytes": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Corrupted bytes in hardware by node" + }, + "HostMemTotalBytes": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total bytes of memory by node" + }, + "HostSpecificCPUUtilization": { + "Unit": "Seconds", + "Aggregation": "Average", + "Dimensions": "Cpu, Host, Mode", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "A counter metric that counts the number of seconds the CPU has been running in a particular mode" + }, + "IdracPowerCapacityWatts": { + "Unit": "Unspecified", + "Aggregation": "Average", + "Dimensions": "Host, PSU", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Power Capacity" + }, + "IdracPowerInputWatts": { + "Unit": "Unspecified", + "Aggregation": "Average", + "Dimensions": "Host, PSU", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Power Input" + }, + "IdracPowerOn": { + "Unit": "Unspecified", + "Aggregation": "Count", + "Dimensions": "Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "IDRAC Power On Status" + }, + "IdracPowerOutputWatts": { + "Unit": "Unspecified", + "Aggregation": "Average", + "Dimensions": "Host, PSU", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Power Output" + }, + "IdracSensorsTemperature": { + "Unit": "Unspecified", + "Aggregation": "Average", + "Dimensions": "Host, Name, Units", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "IDRAC sensor temperature" + }, + "NcNodeNetworkReceiveErrsTotal": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Hostname, Interface Name", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total network device errors received" + }, + "NcNodeNetworkTransmitErrsTotal": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Hostname, Interface Name", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total network device errors transmitted" + }, + "NcTotalCpusPerNuma": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Hostname, NUMA Node", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total number of CPUs available to Nexus per NUMA" + }, + "NcTotalWorkloadCpusAllocatedPerNuma": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Hostname, NUMA Node", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total number of CPUs per NUMA allocated for Nexus Kubernetes and Tenant Workloads" + }, + "NcTotalWorkloadCpusAvailablePerNuma": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Hostname, NUMA Node", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total number of CPUs per NUMA available to Nexus Kubernetes and Tenant Workloads" + }, + "NodeBondingActive": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Master", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of active interfaces per bonding interface" + }, + "NodeMemHugePagesFree": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "Host, Node", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "NUMA hugepages free by node" + }, + "NodeMemHugePagesTotal": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "Host, Node", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "NUMA huge pages total by node" + }, + "NodeMemNumaFree": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "Name, Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "NUMA memory free" + }, + "NodeMemNumaShem": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "Host, Node", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "NUMA shared memory" + }, + "NodeMemNumaUsed": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "Host, Node", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "NUMA memory used" + }, + "NodeNetworkCarrierChanges": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Device, Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Node network carrier changes" + }, + "NodeNetworkMtuBytes": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "Device, Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Node network Maximum Transmission Unit (mtu_bytes) value of /sys/class/net/\\" + }, + "NodeNetworkReceiveMulticastTotal": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "Device, Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Network device statistic receive_multicast" + }, + "NodeNetworkReceivePackets": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Device, Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Network device statistic receive_packets" + }, + "NodeNetworkSpeedBytes": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "Device, Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "speed_bytes value of /sys/class/net/\\" + }, + "NodeNetworkTransmitPackets": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Device, Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Network device statistic transmit_packets" + }, + "NodeNetworkUp": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "Device, Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Value is 1 if operstate is 'up', 0 otherwise." + }, + "NodeNvmeInfo": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "Device, State", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Non-numeric data from /sys/class/nvme/\\, value is always 1. Provides firmware, model, state and serial for a device" + }, + "NodeOsInfo": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "Host, Name, Version", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Node OS information" + }, + "NodeTimexMaxErrorSeconds": { + "Unit": "Seconds", + "Aggregation": "Average", + "Dimensions": "Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Maximum time error between the local system and reference clock" + }, + "NodeTimexOffsetSeconds": { + "Unit": "Seconds", + "Aggregation": "Average", + "Dimensions": "Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Time offset in between the local system and reference clock" + }, + "NodeTimexSyncStatus": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Is clock synchronized to a reliable server (1 = yes, 0 = no)" + }, + "NodeVmOomKill": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Information in /proc/vmstat pertaining to the field oom_kill" + }, + "NodeVmstatPswpIn": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Information in /proc/vmstat pertaining to the field pswpin" + }, + "NodeVmstatPswpout": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Information in /proc/vmstat pertaining to the field pswpout" + } + }, + "microsoft.networkcloud/clusters": { + "ApiserverAuditRequestsRejectedTotal": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Component, Pod Name", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Counter of API server requests rejected due to an error in the audit logging backend" + }, + "ApiserverClientCertificateExpirationSecondsSum": { + "Unit": "Seconds", + "Aggregation": "Average", + "Dimensions": "Component, Pod Name", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Sum of API server client certificate expiration (seconds)" + }, + "ApiserverStorageDataKeyGenerationFailuresTotal": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Component, Pod Name", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total number of operations that failed Data Encryption Key (DEK) generation" + }, + "ApiserverTlsHandshakeErrorsTotal": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Component, Pod Name", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of requests dropped with 'TLS handshake' error" + }, + "ContainerFsIoTimeSecondsTotal": { + "Unit": "Seconds", + "Aggregation": "Average", + "Dimensions": "Device, Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Time taken for container Input/Output (I/O) operations" + }, + "ContainerMemoryFailcnt": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Container, Host, Namespace, Pod", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of times a container's memory usage limit is hit" + }, + "ContainerMemoryUsageBytes": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "Container, Host, Namespace, Pod", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Current memory usage, including all memory regardless of when it was accessed" + }, + "ContainerNetworkReceiveErrorsTotal": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Interface, Namespace, Pod", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of errors encountered while receiving bytes over the network" + }, + "ContainerNetworkTransmitErrorsTotal": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Interface, Namespace, Pod", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Count of errors that happened while transmitting" + }, + "ContainerScrapeError": { + "Unit": "Unspecified", + "Aggregation": "Average", + "Dimensions": "Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Indicates whether there was an error while getting container metrics" + }, + "ContainerTasksState": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Container, Host, Namespace, Pod, State", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of tasks or processes in a given state (sleeping, running, stopped, uninterruptible, or waiting) in a container" + }, + "ControllerRuntimeReconcileErrorsTotal": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Controller, Namespace, Pod Name", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total number of reconciliation errors per controller" + }, + "ControllerRuntimeReconcileTotal": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Controller, Namespace, Pod Name", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total number of reconciliations per controller" + }, + "CorednsDnsRequestsTotal": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Family, Pod Name, Proto, Server, Type", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total number of DNS requests" + }, + "CorednsDnsResponsesTotal": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Pod Name, Server, Rcode", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total number of DNS responses" + }, + "CorednsForwardHealthcheckBrokenTotal": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Pod Name, Namespace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total number of times all upstreams are unhealthy" + }, + "CorednsForwardMaxConcurrentRejectsTotal": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Pod Name, Namespace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total number of rejected queries because concurrent queries were at the maximum limit" + }, + "CorednsHealthRequestFailuresTotal": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Pod Name", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The number of times the self health check failed" + }, + "CorednsPanicsTotal": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Pod Name", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total number of panics" + }, + "CorednsReloadFailedTotal": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Pod Name, Namespace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total number of failed reload attempts" + }, + "EtcdDiskBackendCommitDurationSecondsSum": { + "Unit": "Seconds", + "Aggregation": "Total", + "Dimensions": "Component, Pod Name, Tier", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The latency distribution of commits called by the backend" + }, + "EtcdDiskWalFsyncDurationSecondsSum": { + "Unit": "Seconds", + "Aggregation": "Total", + "Dimensions": "Component, Pod Name, Tier", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The sum of latency distributions of 'fsync' called by the write-ahead log (WAL)" + }, + "EtcdServerHealthFailures": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Pod Name", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total server health failures" + }, + "EtcdServerIsLeader": { + "Unit": "Unspecified", + "Aggregation": "Count", + "Dimensions": "Component, Pod Name, Tier", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Whether or not this member is a leader; 1 if is, 0 otherwise" + }, + "EtcdServerIsLearner": { + "Unit": "Unspecified", + "Aggregation": "Count", + "Dimensions": "Component, Pod Name, Tier", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Whether or not this member is a learner; 1 if is, 0 otherwise" + }, + "EtcdServerLeaderChangesSeenTotal": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Component, Pod Name, Tier", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The number of leader changes seen" + }, + "EtcdServerProposalsAppliedTotal": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Component, Pod Name, Tier", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The total number of consensus proposals applied" + }, + "EtcdServerProposalsCommittedTotal": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Component, Pod Name, Tier", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The total number of consensus proposals committed" + }, + "EtcdServerProposalsFailedTotal": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Component, Pod Name, Tier", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The total number of failed proposals" + }, + "EtcdServerSlowApplyTotal": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Pod Name, Tier", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The total number of slow apply requests" + }, + "FelixActiveLocalEndpoints": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of active endpoints on this host" + }, + "FelixClusterNumHostEndpoints": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total number of host endpoints cluster-wide" + }, + "FelixClusterNumHosts": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total number of Calico hosts in the cluster" + }, + "FelixClusterNumWorkloadEndpoints": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total number of workload endpoints cluster-wide" + }, + "FelixIntDataplaneFailures": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of times dataplane updates failed and will be retried" + }, + "FelixIpsetErrors": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of 'ipset' command failures" + }, + "FelixIpsetsCalico": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of active Calico IP sets" + }, + "FelixIptablesRestoreErrors": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of 'iptables-restore' errors" + }, + "FelixIptablesSaveErrors": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of 'iptables-save' errors" + }, + "FelixResyncsStarted": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of times Felix has started resyncing with the datastore" + }, + "FelixResyncState": { + "Unit": "Unspecified", + "Aggregation": "Average", + "Dimensions": "Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Current datastore state" + }, + "KubeDaemonsetStatusCurrentNumberScheduled": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Daemonset, Namespace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of daemonsets currently scheduled" + }, + "KubeDaemonsetStatusDesiredNumberScheduled": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Daemonset, Namespace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of daemonsets desired scheduled" + }, + "KubeDeploymentStatusReplicasAvailable": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Deployment, Namespace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of deployment replicas available" + }, + "KubeDeploymentStatusReplicasReady": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Deployment, Namespace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of deployment replicas ready" + }, + "KubeJobStatusActive": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Job, Namespace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of jobs active" + }, + "KubeJobStatusFailed": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Job, Namespace, Reason", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number and reason of jobs failed" + }, + "KubeJobStatusSucceeded": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Job, Namespace", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of jobs succeeded" + }, + "KubeletRunningContainers": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Container State, Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of containers currently running" + }, + "KubeletRunningPods": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of pods running on the node" + }, + "KubeletRuntimeOperationsErrorsTotal": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Host, Operation Type", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Cumulative number of runtime operation errors by operation type" + }, + "KubeletStartedPodsErrorsTotal": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Cumulative number of errors when starting pods" + }, + "KubeletVolumeStatsAvailableBytes": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "Host, Namespace, Persistent Volume Claim", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of available bytes in the volume" + }, + "KubeletVolumeStatsCapacityBytes": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "Host, Namespace, Persistent Volume Claim", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Capacity (in bytes) of the volume" + }, + "KubeletVolumeStatsUsedBytes": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "Host, Namespace, Persistent Volume Claim", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of used bytes in the volume" + }, + "KubeNodeStatusAllocatable": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Node, Resource, Unit", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Node resources allocatable for pods" + }, + "KubeNodeStatusCapacity": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Node, Resource, Unit", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total amount of node resources available" + }, + "KubeNodeStatusCondition": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Condition, Node, Status", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The condition of a node" + }, + "KubePodContainerResourceLimits": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Container, Namespace, Node, Pod, Resource, Unit", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The container's resources limits" + }, + "KubePodContainerResourceRequests": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Container, Namespace, Node, Pod, Resource, Unit", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The container's resources requested" + }, + "KubePodContainerStateStarted": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Container, Namespace, Pod", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Unix timestamp start time of a container" + }, + "KubePodContainerStatusLastTerminatedReason": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Container, Namespace, Pod, Reason", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The reason of a container's last terminated status" + }, + "KubePodContainerStatusReady": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Container, Namespace, Pod", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Describes whether the container's readiness check succeeded" + }, + "KubePodContainerStatusRestartsTotal": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Container, Namespace, Pod", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The number of container restarts" + }, + "KubePodContainerStatusRunning": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Container, Namespace, Pod", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The number of containers with a status of 'running'" + }, + "KubePodContainerStatusTerminated": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Container, Namespace, Pod", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The number of containers with a status of 'terminated'" + }, + "KubePodContainerStatusTerminatedReason": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Container, Namespace, Pod, Reason", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The number and reason of containers with a status of 'terminated'" + }, + "KubePodContainerStatusWaiting": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Container, Namespace, Pod", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The number of containers with a status of 'waiting'" + }, + "KubePodContainerStatusWaitingReason": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Container, Namespace, Pod, Reason", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The number and reason of containers with a status of 'waiting'" + }, + "KubePodDeletionTimestamp": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Namespace, Pod", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The timestamp of the pod's deletion" + }, + "KubePodInitContainerStatusReady": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Namespace, Container, Pod", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The number of ready pod init containers" + }, + "KubePodInitContainerStatusRestartsTotal": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Namespace, Container, Pod", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The number of pod init containers restarts" + }, + "KubePodInitContainerStatusRunning": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Namespace, Container, Pod", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The number of running pod init containers" + }, + "KubePodInitContainerStatusTerminated": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Namespace, Container, Pod", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The number of terminated pod init containers" + }, + "KubePodInitContainerStatusTerminatedReason": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Namespace, Container, Pod, Reason", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The number of pod init containers with terminated reason" + }, + "KubePodInitContainerStatusWaiting": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Namespace, Container, Pod", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The number of pod init containers waiting" + }, + "KubePodInitContainerStatusWaitingReason": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Namespace, Container, Pod, Reason", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The reason the pod init container is waiting" + }, + "KubePodStatusPhase": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Namespace, Pod, Phase", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The pod status phase" + }, + "KubePodStatusReady": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Namespace, Pod", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Signifies if the pod is in ready state" + }, + "KubePodStatusReason": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Namespace, Pod, Reason", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "NodeAffinity" + }, + "KubeStatefulsetReplicas": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Namespace, Statefulset", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The desired number of statefulset replicas" + }, + "KubeStatefulsetStatusReplicas": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Namespace, Statefulset", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The number of replicas per statefulset" + }, + "KubevirtInfo": { + "Unit": "Unspecified", + "Aggregation": "Average", + "Dimensions": "Kube Version", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Kubevirt version information" + }, + "KubevirtVirtControllerLeading": { + "Unit": "Unspecified", + "Aggregation": "Average", + "Dimensions": "Pod Name", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Indication for an operating virt-controller" + }, + "KubevirtVirtControllerReady": { + "Unit": "Unspecified", + "Aggregation": "Average", + "Dimensions": "Pod Name", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Indication for a virt-controller that is ready to take the lead" + }, + "KubevirtVirtOperatorReady": { + "Unit": "Unspecified", + "Aggregation": "Average", + "Dimensions": "Pod Name", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Indication for a virt operator being ready" + }, + "KubevirtVmiMemoryActualBalloonBytes": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "Name, Node", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Current balloon size (in bytes)" + }, + "KubevirtVmiMemoryAvailableBytes": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "Name, Node", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Amount of usable memory as seen by the domain. This value may not be accurate if a balloon driver is in use or if the guest OS does not initialize all assigned pages" + }, + "KubevirtVmiMemoryDomainBytesTotal": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "Node", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The amount of memory (in bytes) allocated to the domain. The memory value in domain XML file" + }, + "KubevirtVmiMemorySwapInTrafficBytesTotal": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "Name, Node", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The total amount of data read from swap space of the guest (in bytes)" + }, + "KubevirtVmiMemorySwapOutTrafficBytesTotal": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "Name, Node", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The total amount of memory written out to swap space of the guest (in bytes)" + }, + "KubevirtVmiMemoryUnusedBytes": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "Name, Node", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The amount of memory left completely unused by the system. Memory that is available but used for reclaimable caches should NOT be reported as free" + }, + "KubevirtVmiNetworkReceivePacketsTotal": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "Interface, Name, Node", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total network traffic received packets" + }, + "KubevirtVmiNetworkTransmitPacketsDroppedTotal": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "Interface, Name, Node", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The total number of transmit packets dropped on virtual NIC (vNIC) interfaces" + }, + "KubevirtVmiNetworkTransmitPacketsTotal": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "Interface, Name, Node", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total network traffic transmitted packets" + }, + "KubevirtVmiOutdatedCount": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Name", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Indication for the total number of VirtualMachineInstance (VMI) workloads that are not running within the most up-to-date version of the virt-launcher environment" + }, + "KubevirtVmiPhaseCount": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Node, Phase, Workload", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Sum of VirtualMachineInstances (VMIs) per phase and node" + }, + "KubevirtVmiStorageIopsReadTotal": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Drive, Name, Node", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total number of Input/Output (I/O) read operations" + }, + "KubevirtVmiStorageIopsWriteTotal": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Drive, Name, Node", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total number of Input/Output (I/O) write operations" + }, + "KubevirtVmiStorageReadTimesMsTotal": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "Drive, Name, Node", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total time in milliseconds (ms) spent on read operations" + }, + "KubevirtVmiStorageWriteTimesMsTotal": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "Drive, Name, Node", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total time in milliseconds (ms) spent on write operations" + }, + "NcVmiCpuAffinity": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "CPU, NUMA Node, VMI Namespace, VMI Node, VMI Name", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Pinning map of virtual CPUs (vCPUs) to CPUs" + }, + "TyphaClientLatencySecsCount": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Pod Name", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Per-client latency. I.e. how far behind the current state each client is." + }, + "TyphaConnectionsAccepted": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Pod Name", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total number of connections accepted over time" + }, + "TyphaConnectionsDropped": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Pod Name", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total number of connections dropped due to rebalancing" + }, + "TyphaPingLatencyCount": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Pod Name", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Round-trip ping/pong latency to client. Typha's protocol includes a regular ping/pong keepalive to verify that the connection is still up" + } + }, + "microsoft.networkcloud/storageappliances": { + "PurefaAlertsTotal": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Severity", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of alert events" + }, + "PurefaArrayPerformanceAvgBlockBytes": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "Dimension", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Average block size" + }, + "PurefaArrayPerformanceBandwidthBytes": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "Dimension", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Array throughput in bytes per second" + }, + "PurefaArrayPerformanceIOPS": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Dimension", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Storage array IOPS" + }, + "PurefaArrayPerformanceLatencyUsec": { + "Unit": "MilliSeconds", + "Aggregation": "Average", + "Dimensions": "Dimension", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Storage array latency in microseconds" + }, + "PurefaArrayPerformanceQdepth": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Storage array queue depth" + }, + "PurefaArraySpaceCapacityBytes": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Storage array overall space capacity" + }, + "PurefaArraySpaceDatareductionRatio": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Storage array overall data reduction" + }, + "PurefaArraySpaceProvisionedBytes": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Storage array overall provisioned space" + }, + "PurefaArraySpaceUsedBytes": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "Dimension", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Storage Array overall used space" + }, + "PurefaHardwareComponentHealth": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Component, Controller, Index", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Storage array hardware component health status" + }, + "PurefaHardwarePowerVolts": { + "Unit": "Unspecified", + "Aggregation": "Average", + "Dimensions": "Power Supply", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Storage array hardware power supply voltage" + }, + "PurefaHardwareTemperatureCelsius": { + "Unit": "Unspecified", + "Aggregation": "Average", + "Dimensions": "Controller, Sensor", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Storage array hardware temperature sensors" + }, + "PurefaHostPerformanceBandwidthBytes": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "Dimension, Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Storage array host bandwidth in bytes per second" + }, + "PurefaHostPerformanceIOPS": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Dimension, Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Storage array host IOPS" + }, + "PurefaHostPerformanceLatencyUsec": { + "Unit": "MilliSeconds", + "Aggregation": "Average", + "Dimensions": "Dimension, Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Storage array host latency in microseconds" + }, + "PurefaHostSpaceBytes": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "Dimension, Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Storage array host space in bytes" + }, + "PurefaHostSpaceDatareductionRatio": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Storage array host volumes data reduction ratio" + }, + "PurefaHostSpaceSizeBytes": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "Host", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Storage array host volumes size" + }, + "PurefaInfo": { + "Unit": "Unspecified", + "Aggregation": "Average", + "Dimensions": "Array Name", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Storage array system information" + }, + "PurefaVolumePerformanceIOPS": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Dimension, Volume", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Storage array volume IOPS" + }, + "PurefaVolumePerformanceLatencyUsec": { + "Unit": "MilliSeconds", + "Aggregation": "Average", + "Dimensions": "Dimension, Volume", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Storage array volume latency in microseconds" + }, + "PurefaVolumePerformanceThroughputBytes": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "Dimension, Volume", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Storage array volume throughput" + }, + "PurefaVolumeSpaceBytes": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "Dimension, Volume", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Storage array volume space in bytes" + }, + "PurefaVolumeSpaceDatareductionRatio": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "Volume", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Storage array overall data reduction" + }, + "PurefaVolumeSpaceSizeBytes": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "Volume", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Storage array volumes size" + } + }, + "microsoft.networkfunction/azuretrafficcollectors": { + "count": { + "Unit": "Count", + "Aggregation": "Average, Total", + "Dimensions": "RoleInstance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Flow Records Processed by ATC." + }, + "usage_active": { + "Unit": "Percent", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "Hostname", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "CPU Usage Percentage." + }, + "used_percent": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "Hostname", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Memory Usage Percentage." + } + }, + "microsoft.notificationhubs/namespaces/notificationhubs": { + "incoming": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of all successful send API calls." + }, + "incoming.all.failedrequests": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total incoming failed requests for a notification hub" + }, + "incoming.all.requests": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total incoming requests for a notification hub" + }, + "incoming.scheduled": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Scheduled Push Notifications Sent" + }, + "incoming.scheduled.cancel": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Scheduled Push Notifications Cancelled" + }, + "installation.all": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Installation Management Operations" + }, + "installation.delete": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Delete Installation Operations" + }, + "installation.get": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Get Installation Operations" + }, + "installation.patch": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Patch Installation Operations" + }, + "installation.upsert": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Create or Update Installation Operations" + }, + "notificationhub.pushes": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "All outgoing notifications of the notification hub" + }, + "outgoing.allpns.badorexpiredchannel": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of pushes that failed because the channel/token/registrationId in the registration was expired or invalid." + }, + "outgoing.allpns.channelerror": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of pushes that failed because the channel was invalid not associated with the correct app throttled or expired." + }, + "outgoing.allpns.invalidpayload": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of pushes that failed because the PNS returned a bad payload error." + }, + "outgoing.allpns.pnserror": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of pushes that failed because there was a problem communicating with the PNS (excludes authentication problems)." + }, + "outgoing.allpns.success": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of all successful notifications." + }, + "outgoing.apns.badchannel": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of pushes that failed because the token is invalid (APNS status code: 8)." + }, + "outgoing.apns.expiredchannel": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of token that were invalidated by the APNS feedback channel." + }, + "outgoing.apns.invalidcredentials": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of pushes that failed because the PNS did not accept the provided credentials or the credentials are blocked." + }, + "outgoing.apns.invalidnotificationsize": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of pushes that failed because the payload was too large (APNS status code: 7)." + }, + "outgoing.apns.pnserror": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of pushes that failed because of errors communicating with APNS." + }, + "outgoing.apns.success": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of all successful notifications." + }, + "outgoing.gcm.authenticationerror": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of pushes that failed because the PNS did not accept the provided credentials the credentials are blocked or the SenderId is not correctly configured in the app (GCM result: MismatchedSenderId)." + }, + "outgoing.gcm.badchannel": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of pushes that failed because the registrationId in the registration was not recognized (GCM result: Invalid Registration)." + }, + "outgoing.gcm.expiredchannel": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of pushes that failed because the registrationId in the registration was expired (GCM result: NotRegistered)." + }, + "outgoing.gcm.invalidcredentials": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of pushes that failed because the PNS did not accept the provided credentials or the credentials are blocked." + }, + "outgoing.gcm.invalidnotificationformat": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of pushes that failed because the payload was not formatted correctly (GCM result: InvalidDataKey or InvalidTtl)." + }, + "outgoing.gcm.invalidnotificationsize": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of pushes that failed because the payload was too large (GCM result: MessageTooBig)." + }, + "outgoing.gcm.pnserror": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of pushes that failed because of errors communicating with GCM." + }, + "outgoing.gcm.success": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of all successful notifications." + }, + "outgoing.gcm.throttled": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of pushes that failed because GCM throttled this app (GCM status code: 501-599 or result:Unavailable)." + }, + "outgoing.gcm.wrongchannel": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of pushes that failed because the registrationId in the registration is not associated to the current app (GCM result: InvalidPackageName)." + }, + "outgoing.mpns.authenticationerror": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of pushes that failed because the PNS did not accept the provided credentials or the credentials are blocked." + }, + "outgoing.mpns.badchannel": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of pushes that failed because the ChannelURI in the registration was not recognized (MPNS status: 404 not found)." + }, + "outgoing.mpns.channeldisconnected": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of pushes that failed because the ChannelURI in the registration was disconnected (MPNS status: 412 not found)." + }, + "outgoing.mpns.dropped": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of pushes that were dropped by MPNS (MPNS response header: X-NotificationStatus: QueueFull or Suppressed)." + }, + "outgoing.mpns.invalidcredentials": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of pushes that failed because the PNS did not accept the provided credentials or the credentials are blocked." + }, + "outgoing.mpns.invalidnotificationformat": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of pushes that failed because the payload of the notification was too large." + }, + "outgoing.mpns.pnserror": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of pushes that failed because of errors communicating with MPNS." + }, + "outgoing.mpns.success": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of all successful notifications." + }, + "outgoing.mpns.throttled": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of pushes that failed because MPNS is throttling this app (WNS MPNS: 406 Not Acceptable)." + }, + "outgoing.wns.authenticationerror": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Notification not delivered because of errors communicating with Windows Live invalid credentials or wrong token." + }, + "outgoing.wns.badchannel": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of pushes that failed because the ChannelURI in the registration was not recognized (WNS status: 404 not found)." + }, + "outgoing.wns.channeldisconnected": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The notification was dropped because the ChannelURI in the registration is throttled (WNS response header: X-WNS-DeviceConnectionStatus: disconnected)." + }, + "outgoing.wns.channelthrottled": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The notification was dropped because the ChannelURI in the registration is throttled (WNS response header: X-WNS-NotificationStatus:channelThrottled)." + }, + "outgoing.wns.dropped": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The notification was dropped because the ChannelURI in the registration is throttled (X-WNS-NotificationStatus: dropped but not X-WNS-DeviceConnectionStatus: disconnected)." + }, + "outgoing.wns.expiredchannel": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of pushes that failed because the ChannelURI is expired (WNS status: 410 Gone)." + }, + "outgoing.wns.invalidcredentials": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of pushes that failed because the PNS did not accept the provided credentials or the credentials are blocked. (Windows Live does not recognize the credentials)." + }, + "outgoing.wns.invalidnotificationformat": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The format of the notification is invalid (WNS status: 400). Note that WNS does not reject all invalid payloads." + }, + "outgoing.wns.invalidnotificationsize": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The notification payload is too large (WNS status: 413)." + }, + "outgoing.wns.invalidtoken": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The token provided to WNS is not valid (WNS status: 401 Unauthorized)." + }, + "outgoing.wns.pnserror": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Notification not delivered because of errors communicating with WNS." + }, + "outgoing.wns.success": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of all successful notifications." + }, + "outgoing.wns.throttled": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of pushes that failed because WNS is throttling this app (WNS status: 406 Not Acceptable)." + }, + "outgoing.wns.tokenproviderunreachable": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Windows Live is not reachable." + }, + "outgoing.wns.wrongtoken": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The token provided to WNS is valid but for another application (WNS status: 403 Forbidden). This can happen if the ChannelURI in the registration is associated with another app. Check that the client app is associated with the same app whose credentials are in the notification hub." + }, + "registration.all": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of all successful registration operations (creations updates queries and deletions)." + }, + "registration.create": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of all successful registration creations." + }, + "registration.delete": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of all successful registration deletions." + }, + "registration.get": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of all successful registration queries." + }, + "registration.update": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of all successful registration updates." + }, + "scheduled.pending": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Pending Scheduled Notifications" + } + }, + "microsoft.operationalinsights/workspaces": { + "AvailabilityRate_Query": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "IsUserQuery", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "User query success rate for this workspace." + }, + "Average_% Available Memory": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_% Available Memory. Supported for: Linux. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_% Available Swap Space": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_% Available Swap Space. Supported for: Linux. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_% Committed Bytes In Use": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_% Committed Bytes In Use. Supported for: Windows. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_% DPC Time": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_% DPC Time. Supported for: Linux, Windows. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_% Free Inodes": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_% Free Inodes. Supported for: Linux. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_% Free Space": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_% Free Space. Supported for: Linux, Windows. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_% Idle Time": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_% Idle Time. Supported for: Linux, Windows. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_% Interrupt Time": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_% Interrupt Time. Supported for: Linux, Windows. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_% IO Wait Time": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_% IO Wait Time. Supported for: Linux. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_% Nice Time": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_% Nice Time. Supported for: Linux. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_% Privileged Time": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_% Privileged Time. Supported for: Linux, Windows. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_% Processor Time": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_% Processor Time. Supported for: Linux, Windows. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_% Used Inodes": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_% Used Inodes. Supported for: Linux. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_% Used Memory": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_% Used Memory. Supported for: Linux. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_% Used Space": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_% Used Space. Supported for: Linux. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_% Used Swap Space": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_% Used Swap Space. Supported for: Linux. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_% User Time": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_% User Time. Supported for: Linux, Windows. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_Available MBytes": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_Available MBytes. Supported for: Windows. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_Available MBytes Memory": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_Available MBytes Memory. Supported for: Linux. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_Available MBytes Swap": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_Available MBytes Swap. Supported for: Linux. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_Avg. Disk sec/Read": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_Avg. Disk sec/Read. Supported for: Linux, Windows. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_Avg. Disk sec/Transfer": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_Avg. Disk sec/Transfer. Supported for: Linux, Windows. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_Avg. Disk sec/Write": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_Avg. Disk sec/Write. Supported for: Linux, Windows. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_Bytes Received/sec": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_Bytes Received/sec. Supported for: Windows. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_Bytes Sent/sec": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_Bytes Sent/sec. Supported for: Windows. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_Bytes Total/sec": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_Bytes Total/sec. Supported for: Windows. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_Current Disk Queue Length": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_Current Disk Queue Length. Supported for: Windows. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_Disk Read Bytes/sec": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_Disk Read Bytes/sec. Supported for: Linux, Windows. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_Disk Reads/sec": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_Disk Reads/sec. Supported for: Linux, Windows. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_Disk Transfers/sec": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_Disk Transfers/sec. Supported for: Linux, Windows. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_Disk Write Bytes/sec": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_Disk Write Bytes/sec. Supported for: Linux, Windows. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_Disk Writes/sec": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_Disk Writes/sec. Supported for: Linux, Windows. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_Free Megabytes": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_Free Megabytes. Supported for: Linux, Windows. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_Free Physical Memory": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_Free Physical Memory. Supported for: Linux. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_Free Space in Paging Files": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_Free Space in Paging Files. Supported for: Linux. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_Free Virtual Memory": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_Free Virtual Memory. Supported for: Linux. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_Logical Disk Bytes/sec": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_Logical Disk Bytes/sec. Supported for: Linux. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_Page Reads/sec": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_Page Reads/sec. Supported for: Linux, Windows. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_Page Writes/sec": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_Page Writes/sec. Supported for: Linux, Windows. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_Pages/sec": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_Pages/sec. Supported for: Linux, Windows. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_Pct Privileged Time": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_Pct Privileged Time. Supported for: Linux. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_Pct User Time": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_Pct User Time. Supported for: Linux. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_Physical Disk Bytes/sec": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_Physical Disk Bytes/sec. Supported for: Linux. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_Processes": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_Processes. Supported for: Linux, Windows. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_Processor Queue Length": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_Processor Queue Length. Supported for: Windows. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_Size Stored In Paging Files": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_Size Stored In Paging Files. Supported for: Linux. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_Total Bytes": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_Total Bytes. Supported for: Linux. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_Total Bytes Received": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_Total Bytes Received. Supported for: Linux. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_Total Bytes Transmitted": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_Total Bytes Transmitted. Supported for: Linux. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_Total Collisions": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_Total Collisions. Supported for: Linux. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_Total Packets Received": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_Total Packets Received. Supported for: Linux. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_Total Packets Transmitted": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_Total Packets Transmitted. Supported for: Linux. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_Total Rx Errors": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_Total Rx Errors. Supported for: Linux. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_Total Tx Errors": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_Total Tx Errors. Supported for: Linux. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_Uptime": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_Uptime. Supported for: Linux. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_Used MBytes Swap Space": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": ". Supported for: Linux. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_Used Memory kBytes": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_Used Memory kBytes. Supported for: Linux. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_Used Memory MBytes": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_Used Memory MBytes. Supported for: Linux. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_Users": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_Users. Supported for: Linux. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Average_Virtual Shared Memory": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, ObjectName, InstanceName, CounterPath, SourceSystem", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average_Virtual Shared Memory. Supported for: Linux. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Event": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Source, EventLog, Computer, EventCategory, EventLevel, EventLevelName, EventID", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Event. Supported for: Windows. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Heartbeat": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Computer, OSType, Version, SourceComputerId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Heartbeat. Supported for: Linux, Windows. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + }, + "Query Count": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "IsUserQuery", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total number of user queries for this workspace." + }, + "Query Failure Count": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "IsUserQuery", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total number of failed user queries for this workspace." + }, + "Update": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Computer, Product, Classification, UpdateState, Optional, Approved", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Update. Supported for: Windows. Part of [metric alerts for logs feature](https://aka.ms/am-log-to-metric)." + } + }, + "microsoft.orbital/contactprofiles": { + "ContactFailure": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Denotes the number of failed Contacts for a specific Contact Profile" + }, + "ContactSuccess": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Denotes the number of successful Contacts for a specific Contact Profile" + } + }, + "microsoft.orbital/l2connections": { + "InEdgeSiteBitsRate": { + "Unit": "BitsPerSecond", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Ingress Edge Site Bit Rate for the L2 connection" + }, + "InEdgeSiteBroadcastPkts": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Ingress Edge Site Broadcast Packet Count for the L2 connection" + }, + "InEdgeSiteBytes": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Ingress Edge Site Byte Count for the L2 connection" + }, + "InEdgeSiteDiscards": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Ingress Edge Site Packet Discard Count for the L2 connection" + }, + "InEdgeSiteMulticastPkts": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Ingress Edge Site Multicast Packet Count for the L2 connection" + }, + "InEdgeSitePktErrors": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Ingress Edge Site Packet Error Count for the L2 connection" + }, + "InEdgeSitePktsRate": { + "Unit": "CountPerSecond", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Ingress Edge Site Packet Rate for the L2 connection" + }, + "InEdgeSiteUnicastPkts": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Ingress Edge Site Unicast Packet Count for the L2 connection" + }, + "InGroundStationBitsRate": { + "Unit": "BitsPerSecond", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Ingress Ground Station Bit Rate for the L2 connection" + }, + "InGroundStationBroadcastPkts": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Ingress Ground Station Broadcast Packet Count for the L2 connection" + }, + "InGroundStationBytes": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Ingress Ground Station Byte Count for the L2 connection" + }, + "InGroundStationDiscards": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Ingress Ground Station Packet Discard Count for the L2 connection" + }, + "InGroundStationMulticastPkts": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Ingress Ground Station Multicast Packet Count for the L2 connection" + }, + "InGroundStationPktErrors": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Ingress Ground Station Packet Error Count for the L2 connection" + }, + "InGroundStationPktsRate": { + "Unit": "CountPerSecond", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Ingress Ground Station Packet Rate for the L2 connection" + }, + "InGroundStationUnicastPkts": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Ingress Ground Station Unicast Packet Count for the L2 connection" + }, + "OutEdgeSiteBitsRate": { + "Unit": "BitsPerSecond", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Egress Edge Site Bit Rate for the L2 connection" + }, + "OutEdgeSiteBroadcastPkts": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Egress Edge Site Broadcast Packet Count for the L2 connection" + }, + "OutEdgeSiteBytes": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Egress Edge Site Byte Count for the L2 connection" + }, + "OutEdgeSiteDiscards": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Egress Edge Site Packet Discard Count for the L2 connection" + }, + "OutEdgeSiteMulticastPkts": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Egress Edge Site Multicast Packet Count for the L2 connection" + }, + "OutEdgeSitePktErrors": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Egress Edge Site Packet Error Count for the L2 connection" + }, + "OutEdgeSitePktsRate": { + "Unit": "CountPerSecond", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Egress Edge Site Packet Rate for the L2 connection" + }, + "OutEdgeSiteUnicastPkts": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Egress Edge Site Unicast Packet Count for the L2 connection" + }, + "OutGroundStationBitsRate": { + "Unit": "BitsPerSecond", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Egress Ground Station Bit Rate for the L2 connection" + }, + "OutGroundStationBroadcastPkts": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Egress Ground Station Broadcast Packet Count for the L2 connection" + }, + "OutGroundStationBytes": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Egress Ground Station Byte Count for the L2 connection" + }, + "OutGroundStationDiscards": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Egress Ground Station Packet Discard Count for the L2 connection" + }, + "OutGroundStationMulticastPkts": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Egress Ground Station Multicast Packet Count for the L2 connection" + }, + "OutGroundStationPktErrors": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Egress Ground Station Packet Error Count for the L2 connection" + }, + "OutGroundStationPktsRate": { + "Unit": "CountPerSecond", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Egress Ground Station Packet Rate for the L2 connection" + }, + "OutGroundStationUnicastPkts": { + "Unit": "Count", + "Aggregation": "Total, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Egress Ground Station Unicast Packet Count for the L2 connection" + } + }, + "microsoft.orbital/spacecrafts": { + "ContactFailure": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Denotes the number of failed Contacts for a specific Spacecraft" + }, + "ContactSuccess": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Denotes the number of successful Contacts for a specific Spacecraft" + } + }, + "microsoft.orbital/terminals": { + "JuniperAlarm": { + "Unit": "Count", + "Aggregation": "Total, Count", + "Dimensions": "category, id, message, node, number, process, router, severity, shelvedReason, source, time", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "SDWAN alarms" + }, + "JuniperSsrBandwidthBytesPerSecond": { + "Unit": "BytesPerSecond", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Satcom SDWAN bandwidth in bytes per second" + }, + "JuniperSsrBytes": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Satcom SDWAN total bytes" + }, + "JuniperSsrPacketLoss": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Satcom SDWAN total packets lost" + } + }, + "microsoft.peering/peerings": { + "AverageCustomerPrefixLatency": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "RegisteredAsnName", + "Time Grains": "PT1H", + "DS Export": "Yes", + "Description": "Average of median Customer prefix latency" + }, + "EgressTrafficRate": { + "Unit": "BitsPerSecond", + "Aggregation": "Average", + "Dimensions": "ConnectionId, SessionIp, TrafficClass", + "Time Grains": "PT1M, PT5M, PT1H", + "DS Export": "Yes", + "Description": "Egress traffic rate in bits per second" + }, + "FlapCounts": { + "Unit": "Count", + "Aggregation": "Sum", + "Dimensions": "ConnectionId, SessionIp", + "Time Grains": "PT1M, PT5M, PT1H", + "DS Export": "Yes", + "Description": "Flap Events Count in all the connection" + }, + "IngressTrafficRate": { + "Unit": "BitsPerSecond", + "Aggregation": "Average", + "Dimensions": "ConnectionId, SessionIp, TrafficClass", + "Time Grains": "PT1M, PT5M, PT1H", + "DS Export": "Yes", + "Description": "Ingress traffic rate in bits per second" + }, + "PacketDropRate": { + "Unit": "BitsPerSecond", + "Aggregation": "Average", + "Dimensions": "ConnectionId, SessionIp, TrafficClass", + "Time Grains": "PT1M, PT5M, PT1H", + "DS Export": "Yes", + "Description": "Packets Drop rate in bits per second" + }, + "RegisteredPrefixLatency": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "RegisteredPrefixName", + "Time Grains": "PT1H", + "DS Export": "Yes", + "Description": "Median prefix latency" + }, + "SessionAvailability": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "ConnectionId, SessionIp", + "Time Grains": "PT5M, PT1H", + "DS Export": "Yes", + "Description": "Availability of the peering session" + } + }, + "microsoft.peering/peeringservices": { + "RoundTripTime": { + "Unit": "Milliseconds", + "Aggregation": "Average", + "Dimensions": "ConnectionMonitorTestName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average round trip time" + } + }, + "microsoft.playfab/titles": { + "PlayerLoggedInCount": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum, Total, Count", + "Dimensions": "TitleId", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of logins by any player in a given title" + } + }, + "microsoft.powerbidedicated/capacities": { + "cpu_metric": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "CPU Utilization. Supported only for Power BI Embedded Generation 2 resources." + }, + "overload_metric": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Resource Overload, 1 if resource is overloaded, otherwise 0. Supported only for Power BI Embedded Generation 2 resources." + } + }, + "microsoft.purview/accounts": { + "DataMapCapacityUnits": { + "Unit": "Count", + "Aggregation": "Total, Count", + "Dimensions": "No Dimensions", + "Time Grains": "PT1H, P1D", + "DS Export": "Yes", + "Description": "Indicates Data Map Capacity Units." + }, + "DataMapStorageSize": { + "Unit": "Bytes", + "Aggregation": "Total, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1H, P1D", + "DS Export": "Yes", + "Description": "Indicates the data map storage size." + }, + "ScanCancelled": { + "Unit": "Count", + "Aggregation": "Total, Count", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M, PT15M, PT1H, P1D", + "DS Export": "Yes", + "Description": "Indicates the number of scans cancelled." + }, + "ScanCompleted": { + "Unit": "Count", + "Aggregation": "Total, Count", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M, PT15M, PT1H, P1D", + "DS Export": "Yes", + "Description": "Indicates the number of scans completed successfully." + }, + "ScanFailed": { + "Unit": "Count", + "Aggregation": "Total, Count", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M, PT15M, PT1H, P1D", + "DS Export": "Yes", + "Description": "Indicates the number of scans failed." + }, + "ScanTimeTaken": { + "Unit": "Seconds", + "Aggregation": "Minimum, Maximum, Total, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M, PT15M, PT1H, P1D", + "DS Export": "Yes", + "Description": "Indicates the total scan time in seconds." + } + }, + "microsoft.recoveryservices/vaults": { + "BackupHealthEvent": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "dataSourceURL, backupInstanceUrl, dataSourceType, healthStatus, backupInstanceName", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The count of health events pertaining to backup job health" + }, + "RestoreHealthEvent": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "dataSourceURL, backupInstanceUrl, dataSourceType, healthStatus, backupInstanceName", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The count of health events pertaining to restore job health" + } + }, + "microsoft.relay/namespaces": { + "ActiveConnections": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "EntityName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total ActiveConnections for Microsoft.Relay." + }, + "ActiveListeners": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "EntityName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total ActiveListeners for Microsoft.Relay." + }, + "BytesTransferred": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "EntityName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total BytesTransferred for Microsoft.Relay." + }, + "ListenerConnections-ClientError": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "EntityName, OperationResult", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "ClientError on ListenerConnections for Microsoft.Relay." + }, + "ListenerConnections-ServerError": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "EntityName, OperationResult", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "ServerError on ListenerConnections for Microsoft.Relay." + }, + "ListenerConnections-Success": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "EntityName, OperationResult", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Successful ListenerConnections for Microsoft.Relay." + }, + "ListenerConnections-TotalRequests": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "EntityName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total ListenerConnections for Microsoft.Relay." + }, + "ListenerDisconnects": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "EntityName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total ListenerDisconnects for Microsoft.Relay." + }, + "SenderConnections-ClientError": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "EntityName, OperationResult", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "ClientError on SenderConnections for Microsoft.Relay." + }, + "SenderConnections-ServerError": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "EntityName, OperationResult", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "ServerError on SenderConnections for Microsoft.Relay." + }, + "SenderConnections-Success": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "EntityName, OperationResult", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Successful SenderConnections for Microsoft.Relay." + }, + "SenderConnections-TotalRequests": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "EntityName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total SenderConnections requests for Microsoft.Relay." + }, + "SenderDisconnects": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "EntityName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total SenderDisconnects for Microsoft.Relay." + } + }, + "microsoft.resources/subscriptions": { + "Latency": { + "Unit": "Seconds", + "Aggregation": "Average", + "Dimensions": "IsCustomerOriginated, Method, Namespace, RequestRegion, ResourceType, StatusCode, StatusCodeClass, Microsoft.SubscriptionId", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Latency data for all requests to Azure Resource Manager" + }, + "Traffic": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "IsCustomerOriginated, Method, Namespace, RequestRegion, ResourceType, StatusCode, StatusCodeClass, Microsoft.SubscriptionId", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Traffic data for all requests to Azure Resource Manager" + } + }, + "microsoft.search/searchservices": { + "DocumentsProcessedCount": { + "Unit": "Count", + "Aggregation": "Total, Count", + "Dimensions": "DataSourceName, Failed, IndexerName, IndexName, SkillsetName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of documents processed" + }, + "SearchLatency": { + "Unit": "Seconds", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average search latency for the search service" + }, + "SearchQueriesPerSecond": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Search queries per second for the search service" + }, + "SkillExecutionCount": { + "Unit": "Count", + "Aggregation": "Total, Count", + "Dimensions": "DataSourceName, Failed, IndexerName, SkillName, SkillsetName, SkillType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of skill executions" + }, + "ThrottledSearchQueriesPercentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of search queries that were throttled for the search service" + } + }, + "microsoft.securitydetonation/chambers": { + "CapacityUtilization": { + "Unit": "Percent", + "Aggregation": "Maximum, Minimum", + "Dimensions": "Region", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The percentage of the allocated capacity the resource is actively using." + }, + "CpuUtilization": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "Region", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The percentage of the CPU that is being utilized across the resource." + }, + "CreateSubmissionApiResult": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "OperationName, ServiceTypeName, Region, HttpReturnCode", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The total number of CreateSubmission API requests, with return code." + }, + "PercentFreeDiskSpace": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "Region", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The percent amount of available disk space across the resource." + }, + "SubmissionDuration": { + "Unit": "MilliSeconds", + "Aggregation": "Maximum, Minimum", + "Dimensions": "Region", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The submission duration (processing time), from creation to completion." + }, + "SubmissionsCompleted": { + "Unit": "Count", + "Aggregation": "Maximum, Minimum", + "Dimensions": "Region", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The number of completed submissions / Hr." + }, + "SubmissionsFailed": { + "Unit": "Count", + "Aggregation": "Maximum, Minimum", + "Dimensions": "Region", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The number of failed submissions / Hr." + }, + "SubmissionsOutstanding": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "Region", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The average number of outstanding submissions that are queued for processing." + }, + "SubmissionsSucceeded": { + "Unit": "Count", + "Aggregation": "Maximum, Minimum", + "Dimensions": "Region", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The number of successful submissions / Hr." + } + }, + "microsoft.securitydetonation/securitydetonationchambers": { + "% Processor Time": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percent CPU utilization" + } + }, + "microsoft.servicebus/namespaces": { + "AbandonMessage": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "EntityName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of messages abandoned on a Queue/Topic." + }, + "ActiveConnections": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total Active Connections for Microsoft.ServiceBus." + }, + "ActiveMessages": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "EntityName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Count of active messages in a Queue/Topic." + }, + "CompleteMessage": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "EntityName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of messages completed on a Queue/Topic." + }, + "ConnectionsClosed": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "EntityName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Connections Closed for Microsoft.ServiceBus." + }, + "ConnectionsOpened": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "EntityName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Connections Opened for Microsoft.ServiceBus." + }, + "CPUXNS": { + "Unit": "Percent", + "Aggregation": "Maximum", + "Dimensions": "Replica", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Service bus premium namespace CPU usage metric. This metric is depricated. Please use the CPU metric (NamespaceCpuUsage) instead." + }, + "DeadletteredMessages": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "EntityName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Count of dead-lettered messages in a Queue/Topic." + }, + "IncomingMessages": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "EntityName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Incoming Messages for Microsoft.ServiceBus." + }, + "IncomingRequests": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "EntityName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Incoming Requests for Microsoft.ServiceBus." + }, + "Messages": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "EntityName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Count of messages in a Queue/Topic." + }, + "NamespaceCpuUsage": { + "Unit": "Percent", + "Aggregation": "Maximum", + "Dimensions": "Replica", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Service bus premium namespace CPU usage metric." + }, + "NamespaceMemoryUsage": { + "Unit": "Percent", + "Aggregation": "Maximum", + "Dimensions": "Replica", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Service bus premium namespace memory usage metric." + }, + "OutgoingMessages": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "EntityName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Outgoing Messages for Microsoft.ServiceBus." + }, + "PendingCheckpointOperationCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Pending Checkpoint Operations Count." + }, + "ScheduledMessages": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "EntityName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Count of scheduled messages in a Queue/Topic." + }, + "ServerErrors": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "EntityName, OperationResult", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Server Errors for Microsoft.ServiceBus." + }, + "ServerSendLatency": { + "Unit": "MilliSeconds", + "Aggregation": "Average", + "Dimensions": "EntityName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Latency of Send Message operations for Service Bus resources." + }, + "Size": { + "Unit": "Bytes", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "EntityName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Size of an Queue/Topic in Bytes." + }, + "SuccessfulRequests": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "EntityName, OperationResult", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total successful requests for a namespace" + }, + "ThrottledRequests": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "EntityName, OperationResult, MessagingErrorSubCode", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Throttled Requests for Microsoft.ServiceBus." + }, + "UserErrors": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "EntityName, OperationResult", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "User Errors for Microsoft.ServiceBus." + }, + "WSXNS": { + "Unit": "Percent", + "Aggregation": "Maximum", + "Dimensions": "Replica", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Service bus premium namespace memory usage metric. This metric is deprecated. Please use the Memory Usage (NamespaceMemoryUsage) metric instead." + } + }, + "microsoft.servicenetworking/trafficcontrollers": { + "BackendConnectionTimeouts": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Microsoft.regionName, BackendService", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of requests that timed out waiting for a response from the backend target (includes all retry requests initiated from Application Gateway for Containers to the backend target)" + }, + "BackendHealthyTargets": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Microsoft.regionName, BackendService", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of healthy backend targets" + }, + "BackendHTTPResponseStatus": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Microsoft.regionName, BackendService, HttpResponseCode", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "HTTP response status returned by the backend target to Application Gateway for Containers" + }, + "ClientConnectionIdleTimeouts": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Microsoft.regionName, Frontend", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of connections closed, between client and Application Gateway for Containers frontend, due to exceeding idle timeout" + }, + "ConnectionTimeouts": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Microsoft.regionName, Frontend", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of connections closed due to timeout between clients and Application Gateway for Containers" + }, + "HTTPResponseStatus": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Microsoft.regionName, Frontend, HttpResponseCode", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "HTTP response status returned by Application Gateway for Containers" + }, + "TotalRequests": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Microsoft.regionName, Frontend", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of requests Application Gateway for Containers has served" + } + }, + "microsoft.signalrservice/signalr": { + "ConnectionCloseCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Endpoint, ConnectionCloseCategory", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of connections closed by various reasons." + }, + "ConnectionCount": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "Endpoint", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of user connection." + }, + "ConnectionOpenCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Endpoint", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of new connections opened." + }, + "ConnectionQuotaUtilization": { + "Unit": "Percent", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The percentage of connection connected relative to connection quota." + }, + "InboundTraffic": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The inbound traffic of service" + }, + "MessageCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total amount of messages." + }, + "OutboundTraffic": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The outbound traffic of service" + }, + "ServerLoad": { + "Unit": "Percent", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "SignalR server load." + }, + "SystemErrors": { + "Unit": "Percent", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The percentage of system errors" + }, + "UserErrors": { + "Unit": "Percent", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The percentage of user errors" + } + }, + "microsoft.signalrservice/signalr/replicas": { + "ConnectionCloseCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Endpoint, ConnectionCloseCategory", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of connections closed by various reasons." + }, + "ConnectionCount": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "Endpoint", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of user connection." + }, + "ConnectionOpenCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Endpoint", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of new connections opened." + }, + "ConnectionQuotaUtilization": { + "Unit": "Percent", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The percentage of connection connected relative to connection quota." + }, + "InboundTraffic": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The inbound traffic of service" + }, + "MessageCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total amount of messages." + }, + "OutboundTraffic": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The outbound traffic of service" + }, + "ServerLoad": { + "Unit": "Percent", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "SignalR server load." + }, + "SystemErrors": { + "Unit": "Percent", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The percentage of system errors" + }, + "UserErrors": { + "Unit": "Percent", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The percentage of user errors" + } + }, + "microsoft.signalrservice/webpubsub": { + "ConnectionCloseCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ConnectionCloseCategory", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of connections closed by various reasons." + }, + "ConnectionOpenCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of new connections opened." + }, + "ConnectionQuotaUtilization": { + "Unit": "Percent", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The percentage of connection connected relative to connection quota." + }, + "InboundTraffic": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The traffic originating from outside to inside of the service. It is aggregated by adding all the bytes of the traffic." + }, + "OutboundTraffic": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The traffic originating from inside to outside of the service. It is aggregated by adding all the bytes of the traffic." + }, + "ServerLoad": { + "Unit": "Percent", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "SignalR server load." + }, + "TotalConnectionCount": { + "Unit": "Count", + "Aggregation": "Maximum, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of user connections established to the service. It is aggregated by adding all the online connections." + } + }, + "microsoft.signalrservice/webpubsub/replicas": { + "ConnectionCloseCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ConnectionCloseCategory", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of connections closed by various reasons." + }, + "ConnectionOpenCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of new connections opened." + }, + "ConnectionQuotaUtilization": { + "Unit": "Percent", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The percentage of connection connected relative to connection quota." + }, + "InboundTraffic": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The traffic originating from outside to inside of the service. It is aggregated by adding all the bytes of the traffic." + }, + "OutboundTraffic": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The traffic originating from inside to outside of the service. It is aggregated by adding all the bytes of the traffic." + }, + "ServerLoad": { + "Unit": "Percent", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "WebPubSub server load." + }, + "TotalConnectionCount": { + "Unit": "Count", + "Aggregation": "Maximum, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of user connections established to the service. It is aggregated by adding all the online connections." + } + }, + "microsoft.singularity/accounts": { + "GpuUtilizationPercentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "accountname, ClusterName, Environment, instance, jobContainerId, jobInstanceId, jobname, Region", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "GPU utilization percentage" + } + }, + "microsoft.sql/managedinstances": { + "avg_cpu_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average CPU percentage" + }, + "io_bytes_read": { + "Unit": "Bytes", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "IO bytes read" + }, + "io_bytes_written": { + "Unit": "Bytes", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "IO bytes written" + }, + "io_requests": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "IO requests count" + }, + "reserved_storage_mb": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Storage space reserved" + }, + "storage_space_used_mb": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Storage space used" + }, + "virtual_core_count": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Virtual core count" + } + }, + "microsoft.sql/servers/databases": { + "active_queries": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Active queries across all workload groups. Applies only to data warehouses." + }, + "allocated_data_storage": { + "Unit": "Bytes", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Allocated data storage. Not applicable to data warehouses." + }, + "app_cpu_billed": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "App CPU billed. Applies to serverless databases." + }, + "app_cpu_billed_ha_replicas": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Sum of app CPU billed across all HA replicas associated with the primary replica or a named replica." + }, + "app_cpu_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "App CPU percentage. Applies to serverless databases." + }, + "app_memory_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "App memory percentage. Applies to serverless databases." + }, + "base_blob_size_bytes": { + "Unit": "Bytes", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "P1D", + "DS Export": "Yes", + "Description": "Data storage size. Applies to Hyperscale databases." + }, + "blocked_by_firewall": { + "Unit": "Count", + "Aggregation": "Total, Count", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Blocked by Firewall" + }, + "cache_hit_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Cache hit percentage. Applies only to data warehouses." + }, + "cache_used_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Cache used percentage. Applies only to data warehouses." + }, + "connection_failed": { + "Unit": "Count", + "Aggregation": "Total, Count", + "Dimensions": "Error, ValidatedDriverNameAndVersion", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Failed Connections" + }, + "connection_failed_user_error": { + "Unit": "Count", + "Aggregation": "Total, Count", + "Dimensions": "Error, ValidatedDriverNameAndVersion", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Failed Connections : User Errors" + }, + "connection_successful": { + "Unit": "Count", + "Aggregation": "Total, Count", + "Dimensions": "SslProtocol, ValidatedDriverNameAndVersion", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Successful Connections" + }, + "cpu_limit": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "CPU limit. Applies to vCore-based databases." + }, + "cpu_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "CPU percentage" + }, + "cpu_used": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "CPU used. Applies to vCore-based databases." + }, + "deadlock": { + "Unit": "Count", + "Aggregation": "Total, Count", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Deadlocks. Not applicable to data warehouses." + }, + "diff_backup_size_bytes": { + "Unit": "Bytes", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "P1D", + "DS Export": "Yes", + "Description": "Cumulative differential backup storage size. Applies to vCore-based databases. Not applicable to Hyperscale databases." + }, + "dtu_consumption_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "DTU Percentage. Applies to DTU-based databases." + }, + "dtu_limit": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "DTU Limit. Applies to DTU-based databases." + }, + "dtu_used": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "DTU used. Applies to DTU-based databases." + }, + "dwu_consumption_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "DWU percentage. Applies only to data warehouses." + }, + "dwu_limit": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "DWU limit. Applies only to data warehouses." + }, + "dwu_used": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "DWU used. Applies only to data warehouses." + }, + "free_amount_consumed": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Free amount of vCore seconds consumed this month. Applies only to free database offer." + }, + "free_amount_remaining": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Free amount of vCore seconds remaining this month. Applies only to free database offer." + }, + "full_backup_size_bytes": { + "Unit": "Bytes", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "P1D", + "DS Export": "Yes", + "Description": "Cumulative full backup storage size. Applies to vCore-based databases. Not applicable to Hyperscale databases." + }, + "ledger_digest_upload_failed": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Ledger digests that failed to be uploaded." + }, + "ledger_digest_upload_success": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Ledger digests that were successfully uploaded." + }, + "local_tempdb_usage_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Local tempdb percentage. Applies only to data warehouses." + }, + "log_backup_size_bytes": { + "Unit": "Bytes", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "P1D", + "DS Export": "Yes", + "Description": "Cumulative log backup storage size. Applies to vCore-based and Hyperscale databases." + }, + "log_write_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Log IO percentage. Not applicable to data warehouses." + }, + "memory_usage_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Memory percentage. Applies only to data warehouses." + }, + "physical_data_read_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Data IO percentage" + }, + "queued_queries": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Queued queries across all workload groups. Applies only to data warehouses." + }, + "sessions_count": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of active sessions. Not applicable to Synapse DW Analytics." + }, + "sessions_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Sessions percentage. Not applicable to data warehouses." + }, + "snapshot_backup_size_bytes": { + "Unit": "Bytes", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "P1D", + "DS Export": "Yes", + "Description": "Cumulative data backup storage size. Applies to Hyperscale databases." + }, + "sql_instance_cpu_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "CPU usage by all user and system workloads. Not applicable to data warehouses." + }, + "sql_instance_memory_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Memory usage by the database engine instance. Not applicable to data warehouses." + }, + "sqlserver_process_core_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "CPU usage as a percentage of the SQL DB process. Not applicable to data warehouses. (This metric is equivalent to sql_instance_cpu_percent, and will be removed in the future.)" + }, + "sqlserver_process_memory_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Memory usage as a percentage of the SQL DB process. Not applicable to data warehouses. (This metric is equivalent to sql_instance_memory_percent, and will be removed in the future.)" + }, + "storage": { + "Unit": "Bytes", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Data space used. Not applicable to data warehouses." + }, + "storage_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Data space used percent. Not applicable to data warehouses or hyperscale databases." + }, + "tempdb_data_size": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Space used in tempdb data files in kilobytes. Not applicable to data warehouses." + }, + "tempdb_log_size": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Space used in tempdb transaction log file in kilobytes. Not applicable to data warehouses." + }, + "tempdb_log_used_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Space used percentage in tempdb transaction log file. Not applicable to data warehouses." + }, + "wlg_active_queries": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "WorkloadGroupName, IsUserDefined", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Active queries within the workload group. Applies only to data warehouses." + }, + "wlg_active_queries_timeouts": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "WorkloadGroupName, IsUserDefined", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Queries that have timed out for the workload group. Applies only to data warehouses." + }, + "wlg_allocation_relative_to_system_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum, Total", + "Dimensions": "WorkloadGroupName, IsUserDefined", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Allocated percentage of resources relative to the entire system per workload group. Applies only to data warehouses." + }, + "wlg_allocation_relative_to_wlg_effective_cap_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "WorkloadGroupName, IsUserDefined", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Allocated percentage of resources relative to the specified cap resources per workload group. Applies only to data warehouses." + }, + "wlg_effective_cap_resource_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "WorkloadGroupName, IsUserDefined", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "A hard limit on the percentage of resources allowed for the workload group, taking into account Effective Min Resource Percentage allocated for other workload groups. Applies only to data warehouses." + }, + "wlg_effective_min_resource_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum, Total", + "Dimensions": "WorkloadGroupName, IsUserDefined", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Minimum percentage of resources reserved and isolated for the workload group, taking into account the service level minimum. Applies only to data warehouses." + }, + "wlg_queued_queries": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "WorkloadGroupName, IsUserDefined", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Queued queries within the workload group. Applies only to data warehouses." + }, + "workers_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Workers percentage. Not applicable to data warehouses." + }, + "xtp_storage_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "In-Memory OLTP storage percent. Not applicable to data warehouses." + } + }, + "microsoft.sql/servers/elasticpools": { + "allocated_data_storage": { + "Unit": "Bytes", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Data space allocated. Not applicable to hyperscale" + }, + "allocated_data_storage_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Data space allocated percent. Not applicable to hyperscale" + }, + "app_cpu_billed": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "App CPU billed. Applies to serverless elastic pools." + }, + "app_cpu_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "App CPU percentage. Applies to serverless elastic pools." + }, + "app_memory_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "App memory percentage. Applies to serverless elastic pools." + }, + "cpu_limit": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "CPU limit. Applies to vCore-based elastic pools." + }, + "cpu_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "CPU percentage" + }, + "cpu_used": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "CPU used. Applies to vCore-based elastic pools." + }, + "dtu_consumption_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "DTU Percentage. Applies to DTU-based elastic pools." + }, + "eDTU_limit": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "eDTU limit. Applies to DTU-based elastic pools." + }, + "eDTU_used": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "eDTU used. Applies to DTU-based elastic pools." + }, + "log_write_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Log IO percentage" + }, + "physical_data_read_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Data IO percentage" + }, + "sessions_count": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of active sessions" + }, + "sessions_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Sessions percentage" + }, + "sql_instance_cpu_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "CPU usage by all user and system workloads. Applies to elastic pools." + }, + "sql_instance_memory_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Memory usage by the database engine instance. Applies to elastic pools." + }, + "sqlserver_process_core_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "CPU usage as a percentage of the SQL DB process. Applies to elastic pools. (This metric is equivalent to sql_instance_cpu_percent, and will be removed in the future.)" + }, + "sqlserver_process_memory_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Memory usage as a percentage of the SQL DB process. Applies to elastic pools. (This metric is equivalent to sql_instance_memory_percent, and will be removed in the future.)" + }, + "storage_limit": { + "Unit": "Bytes", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Data max size. Not applicable to hyperscale" + }, + "storage_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Data space used percent. Not applicable to hyperscale" + }, + "storage_used": { + "Unit": "Bytes", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Data space used. Not applicable to hyperscale" + }, + "tempdb_data_size": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Space used in tempdb data files in kilobytes." + }, + "tempdb_log_size": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Space used in tempdb transaction log file in kilobytes." + }, + "tempdb_log_used_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Space used percentage in tempdb transaction log file" + }, + "workers_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Workers percentage" + }, + "xtp_storage_percent": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "In-Memory OLTP storage percent. Not applicable to hyperscale" + } + }, + "microsoft.sql/servers/jobagents": { + "elastic_jobs_failed": { + "Unit": "Count", + "Aggregation": "Total, Count", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of job executions that failed while trying to execute on target" + }, + "elastic_jobs_successful": { + "Unit": "Count", + "Aggregation": "Total, Count", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of job executions that were able to successfully execute on target" + }, + "elastic_jobs_timeout": { + "Unit": "Count", + "Aggregation": "Total, Count", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of job executions that expired before execution was able to finish on target." + } + }, + "microsoft.storage/storageaccounts/blobservices": { + "Availability": { + "Unit": "Percent", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication, Tier", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The percentage of availability for the storage service or the specified API operation. Availability is calculated by taking the TotalBillableRequests value and dividing it by the number of applicable requests, including those that produced unexpected errors. All unexpected errors result in reduced availability for the storage service or the specified API operation." + }, + "BlobCapacity": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "BlobType, Tier", + "Time Grains": "PT1H", + "DS Export": "No", + "Description": "The amount of storage used by the storage account's Blob service in bytes." + }, + "BlobCount": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "BlobType, Tier", + "Time Grains": "PT1H", + "DS Export": "No", + "Description": "The number of blob objects stored in the storage account." + }, + "BlobProvisionedSize": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "BlobType, Tier", + "Time Grains": "PT1H", + "DS Export": "No", + "Description": "The amount of storage provisioned in the storage account's Blob service in bytes." + }, + "ContainerCount": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1H", + "DS Export": "Yes", + "Description": "The number of containers in the storage account." + }, + "Egress": { + "Unit": "Bytes", + "Aggregation": "Total, Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication, Tier", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of egress data. This number includes egress to external client from Azure Storage as well as egress within Azure. As a result, this number does not reflect billable egress." + }, + "IndexCapacity": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1H", + "DS Export": "No", + "Description": "The amount of storage used by Azure Data Lake Storage Gen2 hierarchical index." + }, + "Ingress": { + "Unit": "Bytes", + "Aggregation": "Total, Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication, Tier", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of ingress data, in bytes. This number includes ingress from an external client into Azure Storage as well as ingress within Azure." + }, + "SuccessE2ELatency": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication, Tier", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average end-to-end latency of successful requests made to a storage service or the specified API operation, in milliseconds. This value includes the required processing time within Azure Storage to read the request, send the response, and receive acknowledgment of the response." + }, + "SuccessServerLatency": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication, Tier", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average time used to process a successful request by Azure Storage. This value does not include the network latency specified in SuccessE2ELatency." + }, + "Transactions": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ResponseType, GeoType, ApiName, Authentication, TransactionType, Tier", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of requests made to a storage service or the specified API operation. This number includes successful and failed requests, as well as requests which produced errors. Use ResponseType dimension for the number of different type of response." + } + }, + "microsoft.storage/storageaccounts/fileservices": { + "Availability": { + "Unit": "Percent", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication, FileShare", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The percentage of availability for the storage service or the specified API operation. Availability is calculated by taking the TotalBillableRequests value and dividing it by the number of applicable requests, including those that produced unexpected errors. All unexpected errors result in reduced availability for the storage service or the specified API operation." + }, + "Egress": { + "Unit": "Bytes", + "Aggregation": "Total, Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication, FileShare", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of egress data. This number includes egress to external client from Azure Storage as well as egress within Azure. As a result, this number does not reflect billable egress." + }, + "FileCapacity": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "FileShare, Tier", + "Time Grains": "PT1H", + "DS Export": "No", + "Description": "The amount of File storage used by the storage account." + }, + "FileCount": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "FileShare, Tier", + "Time Grains": "PT1H", + "DS Export": "No", + "Description": "The number of files in the storage account." + }, + "FileShareCapacityQuota": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "FileShare", + "Time Grains": "PT1H", + "DS Export": "No", + "Description": "The upper limit on the amount of storage that can be used by Azure Files Service in bytes." + }, + "FileShareCount": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1H", + "DS Export": "No", + "Description": "The number of file shares in the storage account." + }, + "FileShareMaxUsedBandwidthMiBps": { + "Unit": "CountPerSecond", + "Aggregation": "Maximum", + "Dimensions": "FileShare", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The maximum number of used bandwidth in MiB/s at the lowest time granularity of 1-minute for the premium file share in the premium files storage account." + }, + "FileShareMaxUsedIOPS": { + "Unit": "CountPerSecond", + "Aggregation": "Maximum", + "Dimensions": "FileShare", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The maximum number of used IOPS at the lowest time granularity of 1-minute for the premium file share in the premium files storage account." + }, + "FileShareProvisionedIOPS": { + "Unit": "CountPerSecond", + "Aggregation": "Average", + "Dimensions": "FileShare", + "Time Grains": "PT1H", + "DS Export": "No", + "Description": "The baseline number of provisioned IOPS for the premium file share in the premium files storage account. This number is calculated based on the provisioned size (quota) of the share capacity." + }, + "FileShareSnapshotCount": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "FileShare", + "Time Grains": "PT1H", + "DS Export": "No", + "Description": "The number of snapshots present on the share in storage account's Files Service." + }, + "FileShareSnapshotSize": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "FileShare", + "Time Grains": "PT1H", + "DS Export": "No", + "Description": "The amount of storage used by the snapshots in storage account's File service in bytes." + }, + "Ingress": { + "Unit": "Bytes", + "Aggregation": "Total, Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication, FileShare", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of ingress data, in bytes. This number includes ingress from an external client into Azure Storage as well as ingress within Azure." + }, + "SuccessE2ELatency": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication, FileShare", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average end-to-end latency of successful requests made to a storage service or the specified API operation, in milliseconds. This value includes the required processing time within Azure Storage to read the request, send the response, and receive acknowledgment of the response." + }, + "SuccessServerLatency": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication, FileShare", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average time used to process a successful request by Azure Storage. This value does not include the network latency specified in SuccessE2ELatency." + }, + "Transactions": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ResponseType, GeoType, ApiName, Authentication, FileShare, TransactionType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of requests made to a storage service or the specified API operation. This number includes successful and failed requests, as well as requests which produced errors. Use ResponseType dimension for the number of different type of response." + } + }, + "microsoft.storage/storageaccounts": { + "Availability": { + "Unit": "Percent", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The percentage of availability for the storage service or the specified API operation. Availability is calculated by taking the TotalBillableRequests value and dividing it by the number of applicable requests, including those that produced unexpected errors. All unexpected errors result in reduced availability for the storage service or the specified API operation." + }, + "Egress": { + "Unit": "Bytes", + "Aggregation": "Total, Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of egress data. This number includes egress to external client from Azure Storage as well as egress within Azure. As a result, this number does not reflect billable egress." + }, + "Ingress": { + "Unit": "Bytes", + "Aggregation": "Total, Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of ingress data, in bytes. This number includes ingress from an external client into Azure Storage as well as ingress within Azure." + }, + "SuccessE2ELatency": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average end-to-end latency of successful requests made to a storage service or the specified API operation, in milliseconds. This value includes the required processing time within Azure Storage to read the request, send the response, and receive acknowledgment of the response." + }, + "SuccessServerLatency": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average time used to process a successful request by Azure Storage. This value does not include the network latency specified in SuccessE2ELatency." + }, + "Transactions": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ResponseType, GeoType, ApiName, Authentication, TransactionType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of requests made to a storage service or the specified API operation. This number includes successful and failed requests, as well as requests which produced errors. Use ResponseType dimension for the number of different type of response." + }, + "UsedCapacity": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1H", + "DS Export": "No", + "Description": "The amount of storage used by the storage account. For standard storage accounts, it's the sum of capacity used by blob, table, file, and queue. For premium storage accounts and Blob storage accounts, it is the same as BlobCapacity or FileCapacity." + } + }, + "microsoft.storage/storageaccounts/objectreplicationpolicies": { + "PendingBytesForReplication": { + "Unit": "Bytes", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "TimeBucket", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "The size in bytes of the blob object pending for replication, please note, this metric is in preview and is subject to change before becoming generally available" + }, + "PendingOperationsForReplication": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "TimeBucket", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "The count of pending operations for replication, please note, this metric is in preview and is subject to change before becoming generally available" + } + }, + "microsoft.storage/storageaccounts/queueservices": { + "Availability": { + "Unit": "Percent", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The percentage of availability for the storage service or the specified API operation. Availability is calculated by taking the TotalBillableRequests value and dividing it by the number of applicable requests, including those that produced unexpected errors. All unexpected errors result in reduced availability for the storage service or the specified API operation." + }, + "Egress": { + "Unit": "Bytes", + "Aggregation": "Total, Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of egress data. This number includes egress to external client from Azure Storage as well as egress within Azure. As a result, this number does not reflect billable egress." + }, + "Ingress": { + "Unit": "Bytes", + "Aggregation": "Total, Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of ingress data, in bytes. This number includes ingress from an external client into Azure Storage as well as ingress within Azure." + }, + "QueueCapacity": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1H", + "DS Export": "Yes", + "Description": "The amount of Queue storage used by the storage account." + }, + "QueueCount": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1H", + "DS Export": "Yes", + "Description": "The number of queues in the storage account." + }, + "QueueMessageCount": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1H", + "DS Export": "Yes", + "Description": "The number of unexpired queue messages in the storage account." + }, + "SuccessE2ELatency": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average end-to-end latency of successful requests made to a storage service or the specified API operation, in milliseconds. This value includes the required processing time within Azure Storage to read the request, send the response, and receive acknowledgment of the response." + }, + "SuccessServerLatency": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average time used to process a successful request by Azure Storage. This value does not include the network latency specified in SuccessE2ELatency." + }, + "Transactions": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ResponseType, GeoType, ApiName, Authentication, TransactionType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of requests made to a storage service or the specified API operation. This number includes successful and failed requests, as well as requests which produced errors. Use ResponseType dimension for the number of different type of response." + } + }, + "microsoft.storage/storageaccounts/storagetasks": { + "ObjectsOperatedCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "AccountName, TaskAssignmentId", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The number of objects operated in storage task" + }, + "ObjectsOperationFailedCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "AccountName, TaskAssignmentId", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The number of objects failed in storage task" + }, + "ObjectsTargetedCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "AccountName, TaskAssignmentId", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The number of objects targeted in storage task" + } + }, + "microsoft.storage/storageaccounts/tableservices": { + "Availability": { + "Unit": "Percent", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The percentage of availability for the storage service or the specified API operation. Availability is calculated by taking the TotalBillableRequests value and dividing it by the number of applicable requests, including those that produced unexpected errors. All unexpected errors result in reduced availability for the storage service or the specified API operation." + }, + "Egress": { + "Unit": "Bytes", + "Aggregation": "Total, Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of egress data. This number includes egress to external client from Azure Storage as well as egress within Azure. As a result, this number does not reflect billable egress." + }, + "Ingress": { + "Unit": "Bytes", + "Aggregation": "Total, Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of ingress data, in bytes. This number includes ingress from an external client into Azure Storage as well as ingress within Azure." + }, + "SuccessE2ELatency": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average end-to-end latency of successful requests made to a storage service or the specified API operation, in milliseconds. This value includes the required processing time within Azure Storage to read the request, send the response, and receive acknowledgment of the response." + }, + "SuccessServerLatency": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "GeoType, ApiName, Authentication", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average time used to process a successful request by Azure Storage. This value does not include the network latency specified in SuccessE2ELatency." + }, + "TableCapacity": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1H", + "DS Export": "Yes", + "Description": "The amount of Table storage used by the storage account." + }, + "TableCount": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1H", + "DS Export": "Yes", + "Description": "The number of tables in the storage account." + }, + "TableEntityCount": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1H", + "DS Export": "Yes", + "Description": "The number of table entities in the storage account." + }, + "Transactions": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ResponseType, GeoType, ApiName, Authentication, TransactionType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of requests made to a storage service or the specified API operation. This number includes successful and failed requests, as well as requests which produced errors. Use ResponseType dimension for the number of different type of response." + } + }, + "microsoft.storage/storagetasks": { + "ObjectsOperatedCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "AccountName, TaskAssignmentId", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The number of objects operated in storage task" + }, + "ObjectsOperationFailedCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "AccountName, TaskAssignmentId", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The number of objects failed in storage task" + }, + "ObjectsOperationSucceededCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "AccountName, TaskAssignmentId", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The number of objects succeeded in storage task" + }, + "ObjectsTargetedCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "AccountName, TaskAssignmentId", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The number of objects targeted in storage task" + }, + "StorageTasksRunCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "AccountName, TaskAssignmentId", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The number of runs in storage task" + }, + "StorageTasksRunFailureCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "AccountName, TaskAssignmentId", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The number of runs failed in storage task" + }, + "StorageTasksRunSuccessCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "AccountName, TaskAssignmentId", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The number of runs succeeded in storage task" + }, + "StorageTasksRunWithFailedOperationCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "AccountName, TaskAssignmentId", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The number of runs failed with at least one opeartion count in storage task" + } + }, + "microsoft.storagecache/amlfilesystems": { + "ClientReadOps": { + "Unit": "Count", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "ostnum", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of client read ops performed." + }, + "ClientReadThroughput": { + "Unit": "BytesPerSecond", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "ostnum", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Client read data transfer rate." + }, + "ClientWriteOps": { + "Unit": "Count", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "ostnum", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of client write ops performed." + }, + "ClientWriteThroughput": { + "Unit": "BytesPerSecond", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "ostnum", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Client write data transfer rate." + }, + "MDTBytesAvailable": { + "Unit": "Bytes", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "mdtnum", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of bytes marked as available on the MDT." + }, + "MDTBytesTotal": { + "Unit": "Bytes", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "mdtnum", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total number of bytes supported on the MDT." + }, + "MDTBytesUsed": { + "Unit": "Bytes", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "mdtnum", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of bytes available for use minus the number of bytes marked as free on the MDT." + }, + "MDTClientLatency": { + "Unit": "MilliSeconds", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "mdtnum, operation", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Client latency for all operations to MDTs." + }, + "MDTClientOps": { + "Unit": "Count", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "mdtnum, operation", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of client MDT metadata ops performed." + }, + "MDTConnectedClients": { + "Unit": "Count", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "mdtnum", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of client connections (exports) to the MDT" + }, + "MDTFilesFree": { + "Unit": "Count", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "mdtnum", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Count of free files (inodes) on the MDT." + }, + "MDTFilesTotal": { + "Unit": "Count", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "mdtnum", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total number of files supported on the MDT." + }, + "MDTFilesUsed": { + "Unit": "Count", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "mdtnum", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of total supported files minus the number of free files on the MDT." + }, + "OSTBytesAvailable": { + "Unit": "Bytes", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "ostnum", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of bytes marked as available on the OST." + }, + "OSTBytesTotal": { + "Unit": "Bytes", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "ostnum", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total number of bytes supported on the OST." + }, + "OSTBytesUsed": { + "Unit": "Bytes", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "ostnum", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of bytes available for use minus the number of bytes marked as free on the OST." + }, + "OSTClientLatency": { + "Unit": "MilliSeconds", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "ostnum, operation", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Client latency for all operations to OSTs." + }, + "OSTClientOps": { + "Unit": "Count", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "ostnum, operation", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of client OST metadata ops performed." + }, + "OSTConnectedClients": { + "Unit": "Count", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "ostnum", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of client connections (exports) to the OST" + }, + "OSTFilesFree": { + "Unit": "Count", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "ostnum", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Count of free files (inodes) on the OST." + }, + "OSTFilesTotal": { + "Unit": "Count", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "ostnum", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total number of files supported on the OST." + }, + "OSTFilesUsed": { + "Unit": "Count", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "ostnum", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of total supported files minus the number of free files on the OST." + } + }, + "microsoft.storagecache/caches": { + "ClientIOPS": { + "Unit": "Count", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The rate of client file operations processed by the Cache." + }, + "ClientLatency": { + "Unit": "MilliSeconds", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average latency of client file operations to the Cache." + }, + "ClientLockIOPS": { + "Unit": "CountPerSecond", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Client file locking operations per second." + }, + "ClientMetadataReadIOPS": { + "Unit": "CountPerSecond", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The rate of client file operations sent to the Cache, excluding data reads, that do not modify persistent state." + }, + "ClientMetadataWriteIOPS": { + "Unit": "CountPerSecond", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The rate of client file operations sent to the Cache, excluding data writes, that modify persistent state." + }, + "ClientReadIOPS": { + "Unit": "CountPerSecond", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Client read operations per second." + }, + "ClientReadThroughput": { + "Unit": "BytesPerSecond", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Client read data transfer rate." + }, + "ClientStatus": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ClientSource, CacheAddress, ClientAddress, Protocol, ConnectionType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Client connection information." + }, + "ClientWriteIOPS": { + "Unit": "CountPerSecond", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Client write operations per second." + }, + "ClientWriteThroughput": { + "Unit": "BytesPerSecond", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Client write data transfer rate." + }, + "FileOps": { + "Unit": "CountPerSecond", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "SourceFile, Rank, FileType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of file operations per second." + }, + "FileReads": { + "Unit": "BytesPerSecond", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "SourceFile, Rank, FileType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of bytes per second read from a file." + }, + "FileUpdates": { + "Unit": "CountPerSecond", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "SourceFile, Rank, FileType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of directory updates and metadata operations per second." + }, + "FileWrites": { + "Unit": "BytesPerSecond", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "SourceFile, Rank, FileType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of bytes per second written to a file." + }, + "StorageTargetAccessErrors": { + "Unit": "Count", + "Aggregation": "Minimum, Maximum, Average, Total", + "Dimensions": "StorageTarget", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The rate of access error responses received by the cache from a specific StorageTarget. For more details, see https://www.rfc-editor.org/rfc/rfc1813#section-2.6 (NFS3ERR_ACCES)." + }, + "StorageTargetAsyncWriteThroughput": { + "Unit": "BytesPerSecond", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "StorageTarget", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The rate the Cache asynchronously writes data to a particular StorageTarget. These are opportunistic writes that do not cause clients to block." + }, + "StorageTargetBlocksRecycled": { + "Unit": "Count", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "StorageTarget", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of 16k cache blocks recycled (freed) per Storage Target." + }, + "StorageTargetFileTooLargeErrors": { + "Unit": "Count", + "Aggregation": "Minimum, Maximum, Average, Total", + "Dimensions": "StorageTarget", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The rate of file too large error responses received by the cache from a specific StorageTarget. For more details, see https://www.rfc-editor.org/rfc/rfc1813#section-2.6 (NFS3ERR_FBIG)." + }, + "StorageTargetFillThroughput": { + "Unit": "BytesPerSecond", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "StorageTarget", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The rate the Cache reads data from the StorageTarget to handle a cache miss." + }, + "StorageTargetFlushFailureErrors": { + "Unit": "Count", + "Aggregation": "Minimum, Maximum, Average, Total", + "Dimensions": "StorageTarget", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The rate of file flush request failures reported by the writeback state machine for a specific StorageTarget." + }, + "StorageTargetFreeReadSpace": { + "Unit": "Bytes", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "StorageTarget", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Read space available for caching files associated with a storage target." + }, + "StorageTargetFreeWriteSpace": { + "Unit": "Bytes", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "StorageTarget", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Write space available for changed files associated with a storage target." + }, + "StorageTargetHealth": { + "Unit": "Count", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Boolean results of connectivity test between the Cache and Storage Targets." + }, + "StorageTargetIOPS": { + "Unit": "Count", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "StorageTarget", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The rate of all file operations the Cache sends to a particular StorageTarget." + }, + "StorageTargetLatency": { + "Unit": "MilliSeconds", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "StorageTarget", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average round trip latency of all the file operations the Cache sends to a partricular StorageTarget." + }, + "StorageTargetMetadataReadIOPS": { + "Unit": "CountPerSecond", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "StorageTarget", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The rate of file operations that do not modify persistent state, and excluding the read operation, that the Cache sends to a particular StorageTarget." + }, + "StorageTargetMetadataWriteIOPS": { + "Unit": "CountPerSecond", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "StorageTarget", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The rate of file operations that do modify persistent state and excluding the write operation, that the Cache sends to a particular StorageTarget." + }, + "StorageTargetNoSpaceErrors": { + "Unit": "Count", + "Aggregation": "Minimum, Maximum, Average, Total", + "Dimensions": "StorageTarget", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The rate of no space available error responses received by the cache from a specific StorageTarget. For more details, see https://www.rfc-editor.org/rfc/rfc1813#section-2.6 (NFS3ERR_NOSPC)." + }, + "StorageTargetPermissionErrors": { + "Unit": "Count", + "Aggregation": "Minimum, Maximum, Average, Total", + "Dimensions": "StorageTarget", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The rate of permission error responses received by the cache from a specific StorageTarget. For more details, see https://www.rfc-editor.org/rfc/rfc1813#section-2.6 (NFS3ERR_PERM)." + }, + "StorageTargetQuotaLimitErrors": { + "Unit": "Count", + "Aggregation": "Minimum, Maximum, Average, Total", + "Dimensions": "StorageTarget", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The rate of quota limit error responses received by the cache from a specific StorageTarget. For more details, see https://www.rfc-editor.org/rfc/rfc1813#section-2.6 (NFS3ERR_DQUOT)." + }, + "StorageTargetReadAheadThroughput": { + "Unit": "BytesPerSecond", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "StorageTarget", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The rate the Cache opportunisticly reads data from the StorageTarget." + }, + "StorageTargetReadIOPS": { + "Unit": "CountPerSecond", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "StorageTarget", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The rate of file read operations the Cache sends to a particular StorageTarget." + }, + "StorageTargetReadOnlyErrors": { + "Unit": "Count", + "Aggregation": "Minimum, Maximum, Average, Total", + "Dimensions": "StorageTarget", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The rate of read-only filesystem error responses received by the cache from a specific StorageTarget. For more details, see https://www.rfc-editor.org/rfc/rfc1813#section-2.6 (NFS3ERR_ROFS)." + }, + "StorageTargetRecycleRate": { + "Unit": "BytesPerSecond", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "StorageTarget", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Cache space recycle rate associated with a storage target in the HPC Cache. This is the rate at which existing data is cleared from the cache to make room for new data." + }, + "StorageTargetRequestTooSmallErrors": { + "Unit": "Count", + "Aggregation": "Minimum, Maximum, Average, Total", + "Dimensions": "StorageTarget", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The rate of request too small error responses received by the cache from a specific StorageTarget. For more details, see https://www.rfc-editor.org/rfc/rfc1813#section-2.6 (NFS3ERR_TOOSMALL)." + }, + "StorageTargetRetryableFlushErrors": { + "Unit": "Count", + "Aggregation": "Minimum, Maximum, Average, Total", + "Dimensions": "StorageTarget", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The rate of retryable file flush errors reported by the writeback state machine for a specific StorageTarget." + }, + "StorageTargetSpaceAllocation": { + "Unit": "Bytes", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "StorageTarget", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total space (read and write) allocated for a storage target." + }, + "StorageTargetSyncWriteThroughput": { + "Unit": "BytesPerSecond", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "StorageTarget", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The rate the Cache synchronously writes data to a particular StorageTarget. These are writes that do cause clients to block." + }, + "StorageTargetTotalCacheOps": { + "Unit": "Count", + "Aggregation": "Minimum, Maximum, Average, Total", + "Dimensions": "StorageTarget", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The rate of operations the cache is servicing for the namespace represented by a specific StorageTarget." + }, + "StorageTargetTotalReadSpace": { + "Unit": "Bytes", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "StorageTarget", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total read space allocated for caching files associated with a storage target." + }, + "StorageTargetTotalReadThroughput": { + "Unit": "BytesPerSecond", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "StorageTarget", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total rate that the Cache reads data from a particular StorageTarget." + }, + "StorageTargetTotalWriteSpace": { + "Unit": "Bytes", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "StorageTarget", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total write space allocated for changed files associated with a storage target." + }, + "StorageTargetTotalWriteThroughput": { + "Unit": "BytesPerSecond", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "StorageTarget", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total rate that the Cache writes data to a particular StorageTarget." + }, + "StorageTargetUnrecoverableFlushErrors": { + "Unit": "Count", + "Aggregation": "Minimum, Maximum, Average, Total", + "Dimensions": "StorageTarget", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The rate of unrecoverable file flush errors reported by the writeback state machine for a specific StorageTarget." + }, + "StorageTargetUpdateFoundAsyncCacheOps": { + "Unit": "Count", + "Aggregation": "Minimum, Maximum, Average, Total", + "Dimensions": "StorageTarget", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The rate of file updates discovered by asynchronous verification operations sent by the cache to a specific StorageTarget." + }, + "StorageTargetUpdateFoundSyncCacheOps": { + "Unit": "Count", + "Aggregation": "Minimum, Maximum, Average, Total", + "Dimensions": "StorageTarget", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The rate of file updates discovered by synchronous verification operations sent by the cache to a specific StorageTarget." + }, + "StorageTargetUsedReadSpace": { + "Unit": "Bytes", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "StorageTarget", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Read space used by cached files associated with a storage target." + }, + "StorageTargetUsedWriteSpace": { + "Unit": "Bytes", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "StorageTarget", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Write space used by changed files associated with a storage target." + }, + "StorageTargetVerificationAsyncCacheOps": { + "Unit": "Count", + "Aggregation": "Minimum, Maximum, Average, Total", + "Dimensions": "StorageTarget", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The rate of asynchronous verification operations sent by the cache to a specific StorageTarget." + }, + "StorageTargetVerificationSyncCacheOps": { + "Unit": "Count", + "Aggregation": "Minimum, Maximum, Average, Total", + "Dimensions": "StorageTarget", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The rate of synchronous verification operations sent by the cache to a specific StorageTarget." + }, + "StorageTargetWriteIOPS": { + "Unit": "Count", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "StorageTarget", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The rate of the file write operations the Cache sends to a particular StorageTarget." + }, + "TotalBlocksRecycled": { + "Unit": "Count", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of 16k cache blocks recycled (freed) for the HPC Cache." + }, + "TotalFreeReadSpace": { + "Unit": "Bytes", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total space available for caching read files." + }, + "TotalFreeWriteSpace": { + "Unit": "Bytes", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total write space available to store changed data in the cache." + }, + "TotalRecycleRate": { + "Unit": "BytesPerSecond", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total cache space recycle rate in the HPC Cache. This is the rate at which existing data is cleared from the cache to make room for new data." + }, + "TotalUsedReadSpace": { + "Unit": "Bytes", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total read space used by changed files for the HPC Cache." + }, + "TotalUsedWriteSpace": { + "Unit": "Bytes", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total write space used by changed files for the HPC Cache." + }, + "Uptime": { + "Unit": "Count", + "Aggregation": "Minimum, Maximum, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Boolean results of connectivity test between the Cache and monitoring system." + } + }, + "microsoft.storagemover/storagemovers": { + "JobRunScanThroughputItems": { + "Unit": "CountPerSecond", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "JobRunName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Job Run scan throughput in items/sec" + }, + "JobRunTransferThroughputBytes": { + "Unit": "BytesPerSecond", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "JobRunName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Job Run transfer throughput in bytes/sec" + }, + "JobRunTransferThroughputItems": { + "Unit": "CountPerSecond", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "JobRunName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Job Run transfer throughput in items/sec" + } + }, + "microsoft.storagesync/storagesyncservices": { + "ServerSyncSessionResult": { + "Unit": "Count", + "Aggregation": "Average, Count, Total, Maximum, Minimum", + "Dimensions": "SyncGroupName, ServerEndpointName, SyncDirection", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Metric that logs a value of 1 each time the Server Endpoint successfully completes a Sync Session with the Cloud Endpoint" + }, + "StorageSyncBatchTransferredFileBytes": { + "Unit": "Bytes", + "Aggregation": "Average, Total", + "Dimensions": "SyncGroupName, ServerEndpointName, SyncDirection", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total file size transferred for Sync Sessions" + }, + "StorageSyncComputedCacheHitRate": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "SyncGroupName, ServerName, ServerEndpointName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of bytes that were served from the cache" + }, + "StorageSyncDataSizeByAccessPattern": { + "Unit": "Bytes", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "SyncGroupName, ServerName, ServerEndpointName, LastAccessTime", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Size of data by last access time" + }, + "StorageSyncIncrementalTieredDataSizeBytes": { + "Unit": "Bytes", + "Aggregation": "Total, Average, Maximum, Minimum", + "Dimensions": "SyncGroupName, ServerName, ServerEndpointName, TieringReason", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Size of data tiered during last maintenance job" + }, + "StorageSyncRecallComputedSuccessRate": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "SyncGroupName, ServerName, ServerEndpointName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of all recalls that were successful" + }, + "StorageSyncRecalledNetworkBytesByApplication": { + "Unit": "Bytes", + "Aggregation": "Average, Total", + "Dimensions": "SyncGroupName, ServerName, ApplicationName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Size of data recalled by application" + }, + "StorageSyncRecalledTotalNetworkBytes": { + "Unit": "Bytes", + "Aggregation": "Average, Total", + "Dimensions": "SyncGroupName, ServerName, ServerEndpointName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Size of data recalled" + }, + "StorageSyncRecallThroughputBytesPerSecond": { + "Unit": "BytesPerSecond", + "Aggregation": "Average, Total, Maximum, Minimum", + "Dimensions": "SyncGroupName, ServerName, ServerEndpointName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Size of data recall throughput" + }, + "StorageSyncServerHeartbeat": { + "Unit": "Count", + "Aggregation": "Average, Count, Total, Maximum, Minimum", + "Dimensions": "ServerName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Metric that logs a value of 1 each time the resigtered server successfully records a heartbeat with the Cloud Endpoint" + }, + "StorageSyncSyncSessionAppliedFilesCount": { + "Unit": "Count", + "Aggregation": "Average, Total", + "Dimensions": "SyncGroupName, ServerEndpointName, SyncDirection", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of Files synced" + }, + "StorageSyncSyncSessionPerItemErrorsCount": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "SyncGroupName, ServerEndpointName, SyncDirection", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of files failed to sync" + }, + "StorageSyncTieredDataSizeBytes": { + "Unit": "Bytes", + "Aggregation": "Average, Total, Maximum, Minimum", + "Dimensions": "SyncGroupName, ServerName, ServerEndpointName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Size of data tiered to Azure file share" + }, + "StorageSyncTieringCacheSizeBytes": { + "Unit": "Bytes", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "SyncGroupName, ServerName, ServerEndpointName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Size of data cached on the server" + } + }, + "microsoft.storagetasks/storagetasks": { + "ObjectsOperatedCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "AccountName, TaskAssignmentId", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The number of objects operated in storage task" + }, + "ObjectsOperationFailedCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "AccountName, TaskAssignmentId", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The number of objects failed in storage task" + }, + "ObjectsOperationSucceededCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "AccountName, TaskAssignmentId", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The number of objects succeeded in storage task" + }, + "ObjectsTargetedCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "AccountName, TaskAssignmentId", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The number of objects targeted in storage task" + }, + "StorageTasksRunCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "AccountName, TaskAssignmentId", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The number of runs in storage task" + }, + "StorageTasksRunFailureCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "AccountName, TaskAssignmentId", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The number of runs failed in storage task" + }, + "StorageTasksRunSuccessCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "AccountName, TaskAssignmentId", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The number of runs succeeded in storage task" + }, + "StorageTasksRunWithFailedOperationCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "AccountName, TaskAssignmentId", + "Time Grains": "PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "The number of runs failed with at least one opeartion count in storage task" + } + }, + "microsoft.streamanalytics/streamingjobs": { + "AMLCalloutFailedRequests": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "LogicalName, PartitionId, ProcessorInstance, NodeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Failed Function Requests" + }, + "AMLCalloutInputEvents": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "LogicalName, PartitionId, ProcessorInstance, NodeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Function Events" + }, + "AMLCalloutRequests": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "LogicalName, PartitionId, ProcessorInstance, NodeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Function Requests" + }, + "ConversionErrors": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "LogicalName, PartitionId, ProcessorInstance, NodeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Data Conversion Errors" + }, + "DeserializationError": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "LogicalName, PartitionId, ProcessorInstance, NodeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Input Deserialization Errors" + }, + "DroppedOrAdjustedEvents": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "LogicalName, PartitionId, ProcessorInstance, NodeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Out of order Events" + }, + "EarlyInputEvents": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "LogicalName, PartitionId, ProcessorInstance, NodeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Early Input Events" + }, + "Errors": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "LogicalName, PartitionId, ProcessorInstance, NodeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Runtime Errors" + }, + "InputEventBytes": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "LogicalName, PartitionId, ProcessorInstance, NodeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Input Event Bytes" + }, + "InputEvents": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "LogicalName, PartitionId, ProcessorInstance, NodeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Input Events" + }, + "InputEventsSourcesBacklogged": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "LogicalName, PartitionId, ProcessorInstance, NodeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Backlogged Input Events" + }, + "InputEventsSourcesPerSecond": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "LogicalName, PartitionId, ProcessorInstance, NodeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Input Sources Received" + }, + "LateInputEvents": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "LogicalName, PartitionId, ProcessorInstance, NodeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Late Input Events" + }, + "OutputEvents": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "LogicalName, PartitionId, ProcessorInstance, NodeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Output Events" + }, + "OutputWatermarkDelaySeconds": { + "Unit": "Seconds", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "LogicalName, PartitionId, ProcessorInstance, NodeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Watermark Delay" + }, + "ProcessCPUUsagePercentage": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "LogicalName, PartitionId, ProcessorInstance, NodeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "CPU % Utilization" + }, + "ResourceUtilization": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "LogicalName, PartitionId, ProcessorInstance, NodeName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "SU (Memory) % Utilization" + } + }, + "microsoft.synapse/workspaces/bigdatapools": { + "BigDataPoolAllocatedCores": { + "Unit": "Count", + "Aggregation": "Maximum, Minimum, Average, Total", + "Dimensions": "SubmitterId", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Allocated vCores for an Apache Spark Pool" + }, + "BigDataPoolAllocatedMemory": { + "Unit": "Count", + "Aggregation": "Maximum, Minimum, Average, Total", + "Dimensions": "SubmitterId", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Allocated Memory for Apach Spark Pool (GB)" + }, + "BigDataPoolApplicationsActive": { + "Unit": "Count", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "JobState", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total Active Apache Spark Pool Applications" + }, + "BigDataPoolApplicationsEnded": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "JobType, JobResult", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Count of Apache Spark pool applications ended" + } + }, + "microsoft.synapse/workspaces/kustopools": { + "BatchBlobCount": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "Database", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of data sources in an aggregated batch for ingestion." + }, + "BatchDuration": { + "Unit": "Seconds", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "Database", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The duration of the aggregation phase in the ingestion flow." + }, + "BatchesProcessed": { + "Unit": "Count", + "Aggregation": "Total, Average, Maximum, Minimum", + "Dimensions": "Database, SealReason", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of batches aggregated for ingestion. Batching Type: whether the batch reached batching time, data size or number of files limit set by batching policy" + }, + "BatchSize": { + "Unit": "Bytes", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "Database", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Uncompressed expected data size in an aggregated batch for ingestion." + }, + "BlobsDropped": { + "Unit": "Count", + "Aggregation": "Total, Average, Minimum, Maximum", + "Dimensions": "Database, ComponentType, ComponentName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of blobs permanently rejected by a component." + }, + "BlobsProcessed": { + "Unit": "Count", + "Aggregation": "Total, Average, Minimum, Maximum", + "Dimensions": "Database, ComponentType, ComponentName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of blobs processed by a component." + }, + "BlobsReceived": { + "Unit": "Count", + "Aggregation": "Total, Average, Minimum, Maximum", + "Dimensions": "Database, ComponentType, ComponentName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of blobs received from input stream by a component." + }, + "CacheUtilization": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Utilization level in the cluster scope. The metric is deprecated and presented for backward compatibility only, you should use the 'Cache utilization factor' metric instead." + }, + "CacheUtilizationFactor": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Percentage of utilized disk space dedicated for hot cache in the cluster. 100% means that the disk space assigned to hot data is optimally utilized. No action is needed in terms of the cache size. More than 100% means that the cluster's disk space is not large enough to accommodate the hot data, as defined by your caching policies. To ensure that sufficient space is available for all the hot data, the amount of hot data needs to be reduced or the cluster needs to be scaled out. Enabling auto scale is recommended." + }, + "ContinuousExportMaxLatenessMinutes": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The lateness (in minutes) reported by the continuous export jobs in the cluster" + }, + "ContinuousExportNumOfRecordsExported": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "ContinuousExportName, Database", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of records exported, fired for every storage artifact written during the export operation" + }, + "ContinuousExportPendingCount": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of pending continuous export jobs ready for execution" + }, + "ContinuousExportResult": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "ContinuousExportName, Result, Database", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Indicates whether Continuous Export succeeded or failed" + }, + "CPU": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "CPU utilization level" + }, + "DiscoveryLatency": { + "Unit": "Seconds", + "Aggregation": "Average", + "Dimensions": "ComponentType, ComponentName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Reported by data connections (if exist). Time in seconds from when a message is enqueued or event is created until it is discovered by data connection. This time is not included in the Azure Data Explorer total ingestion duration." + }, + "EventsDropped": { + "Unit": "Count", + "Aggregation": "Total, Average, Minimum, Maximum", + "Dimensions": "ComponentType, ComponentName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of events dropped permanently by data connection. An Ingestion result metric with a failure reason will be sent." + }, + "EventsProcessed": { + "Unit": "Count", + "Aggregation": "Total, Average, Minimum, Maximum", + "Dimensions": "ComponentType, ComponentName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of events processed by the cluster" + }, + "EventsProcessedForEventHubs": { + "Unit": "Count", + "Aggregation": "Maximum, Minimum, Total", + "Dimensions": "EventStatus", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of events processed by the cluster when ingesting from Event/IoT Hub" + }, + "EventsReceived": { + "Unit": "Count", + "Aggregation": "Total, Average, Minimum, Maximum", + "Dimensions": "ComponentType, ComponentName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of events received by data connection." + }, + "ExportUtilization": { + "Unit": "Percent", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Export utilization" + }, + "FollowerLatency": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "State, RoleInstance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The follower databases synchronize changes in the leader databases. Because of the synchronization, there's a data lag of a few seconds to a few minutes in data availability.This metric measures the length of the time lag. The time lag depends on the overall size of the leader database metadata.This is a cluster level metrics: the followers catch metadata of all databases that are followed. This metric represents the latency of the process." + }, + "IngestionLatencyInSeconds": { + "Unit": "Seconds", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Latency of data ingested, from the time the data was received in the cluster until it's ready for query. The ingestion latency period depends on the ingestion scenario." + }, + "IngestionResult": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IngestionResultDetails, FailureKind", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of sources that either failed or succeeded to be ingested. Splitting the metric by status, you can get detailed information about the status of the ingestion operations." + }, + "IngestionUtilization": { + "Unit": "Percent", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Ratio of used ingestion slots in the cluster" + }, + "IngestionVolumeInMB": { + "Unit": "Bytes", + "Aggregation": "Total, Maximum", + "Dimensions": "Database", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Overall volume of ingested data to the cluster" + }, + "InstanceCount": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum, Count, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total instance count" + }, + "KeepAlive": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Sanity check indicates the cluster responds to queries" + }, + "MaterializedViewAgeMinutes": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Database, MaterializedViewName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The materialized view age in minutes" + }, + "MaterializedViewAgeSeconds": { + "Unit": "Seconds", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "Database, MaterializedViewName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The materialized view age in seconds" + }, + "MaterializedViewDataLoss": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "Database, MaterializedViewName, Kind", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Indicates potential data loss in materialized view" + }, + "MaterializedViewExtentsRebuild": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Database, MaterializedViewName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of extents rebuild" + }, + "MaterializedViewHealth": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Database, MaterializedViewName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The health of the materialized view (1 for healthy, 0 for non-healthy)" + }, + "MaterializedViewRecordsInDelta": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Database, MaterializedViewName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of records in the non-materialized part of the view" + }, + "MaterializedViewResult": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Database, MaterializedViewName, Result", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The result of the materialization process" + }, + "QueryDuration": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Maximum, Minimum, Total", + "Dimensions": "QueryStatus", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Queries duration in seconds" + }, + "QueryResult": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "QueryStatus", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Total number of queries." + }, + "QueueLength": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "ComponentType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of pending messages in a component's queue." + }, + "QueueOldestMessage": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "ComponentType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Time in seconds from when the oldest message in queue was inserted." + }, + "ReceivedDataSizeBytes": { + "Unit": "Bytes", + "Aggregation": "Average, Total", + "Dimensions": "ComponentType, ComponentName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Size of data received by data connection. This is the size of the data stream, or of raw data size if provided." + }, + "StageLatency": { + "Unit": "Seconds", + "Aggregation": "Average", + "Dimensions": "Database, ComponentType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Cumulative time from when a message is discovered until it is received by the reporting component for processing (discovery time is set when message is enqueued for ingestion queue, or when discovered by data connection)." + }, + "StreamingIngestDataRate": { + "Unit": "Bytes", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Streaming ingest data rate" + }, + "StreamingIngestDuration": { + "Unit": "MilliSeconds", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Streaming ingest duration in milliseconds" + }, + "StreamingIngestResults": { + "Unit": "Count", + "Aggregation": "Count", + "Dimensions": "Result", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Streaming ingest result" + }, + "TotalNumberOfConcurrentQueries": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of concurrent queries" + }, + "TotalNumberOfExtents": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of data extents" + }, + "TotalNumberOfThrottledCommands": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum, Total", + "Dimensions": "CommandType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of throttled commands" + }, + "TotalNumberOfThrottledQueries": { + "Unit": "Count", + "Aggregation": "Average, Maximum, Minimum, Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total number of throttled queries" + }, + "WeakConsistencyLatency": { + "Unit": "Seconds", + "Aggregation": "Average, Maximum, Minimum", + "Dimensions": "Database, RoleInstance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The max latency between the previous metadata sync and the next one (in DB/node scope)" + } + }, + "microsoft.synapse/workspaces": { + "BuiltinSqlPoolDataProcessedBytes": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Amount of data processed by queries" + }, + "BuiltinSqlPoolLoginAttempts": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "Result", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Count of login attempts that succeded or failed" + }, + "BuiltinSqlPoolRequestsEnded": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum, Total", + "Dimensions": "Result", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Count of Requests that succeeded, failed, or were cancelled" + }, + "IntegrationActivityRunsEnded": { + "Unit": "Count", + "Aggregation": "Count, Total", + "Dimensions": "Result, FailureType, Activity, ActivityType, Pipeline", + "Time Grains": "PT1M, PT1H", + "DS Export": "No", + "Description": "Count of integration activities that succeeded, failed, or were cancelled" + }, + "IntegrationLinkConnectionEvents": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "EventType, LinkConnectionName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of Synapse Link connection events including start, stop and failure." + }, + "IntegrationLinkProcessedChangedRows": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "TableName, LinkConnectionName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Changed row count processed by Synapse Link." + }, + "IntegrationLinkProcessedDataVolume": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "TableName, LinkTableStatus, LinkConnectionName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Data volume in bytes processed by Synapse Link." + }, + "IntegrationLinkProcessingLatencyInSeconds": { + "Unit": "Count", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "LinkConnectionName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Synapse Link data processing latency in seconds." + }, + "IntegrationLinkTableEvents": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "TableName, EventType, LinkConnectionName", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Number of Synapse Link table events including snapshot, removal and failure." + }, + "IntegrationPipelineRunsEnded": { + "Unit": "Count", + "Aggregation": "Count, Total", + "Dimensions": "Result, FailureType, Pipeline", + "Time Grains": "PT1M, PT1H", + "DS Export": "No", + "Description": "Count of integration pipeline runs that succeeded, failed, or were cancelled" + }, + "IntegrationTriggerRunsEnded": { + "Unit": "Count", + "Aggregation": "Count, Total", + "Dimensions": "Result, FailureType, Trigger", + "Time Grains": "PT1M, PT1H", + "DS Export": "No", + "Description": "Count of integration triggers that succeeded, failed, or were cancelled" + }, + "SQLStreamingBackloggedInputEventSources": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "SQLPoolName, SQLDatabaseName, JobName, LogicalName, PartitionId, ProcessorInstance", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "This is a preview metric available in East US, West Europe. Number of input events sources backlogged." + }, + "SQLStreamingConversionErrors": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "SQLPoolName, SQLDatabaseName, JobName, LogicalName, PartitionId, ProcessorInstance", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "This is a preview metric available in East US, West Europe. Number of output events that could not be converted to the expected output schema. Error policy can be changed to 'Drop' to drop events that encounter this scenario." + }, + "SQLStreamingDeserializationError": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "SQLPoolName, SQLDatabaseName, JobName, LogicalName, PartitionId, ProcessorInstance", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "This is a preview metric available in East US, West Europe. Number of input events that could not be deserialized." + }, + "SQLStreamingEarlyInputEvents": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "SQLPoolName, SQLDatabaseName, JobName, LogicalName, PartitionId, ProcessorInstance", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "This is a preview metric available in East US, West Europe. Number of input events which application time is considered early compared to arrival time, according to early arrival policy." + }, + "SQLStreamingInputEventBytes": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "SQLPoolName, SQLDatabaseName, JobName, LogicalName, PartitionId, ProcessorInstance", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "This is a preview metric available in East US, West Europe. Amount of data received by the streaming job, in bytes. This can be used to validate that events are being sent to the input source." + }, + "SQLStreamingInputEvents": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "SQLPoolName, SQLDatabaseName, JobName, LogicalName, PartitionId, ProcessorInstance", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "This is a preview metric available in East US, West Europe. Number of input events." + }, + "SQLStreamingInputEventsSourcesPerSecond": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "SQLPoolName, SQLDatabaseName, JobName, LogicalName, PartitionId, ProcessorInstance", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "This is a preview metric available in East US, West Europe. Number of input events sources per second." + }, + "SQLStreamingLateInputEvents": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "SQLPoolName, SQLDatabaseName, JobName, LogicalName, PartitionId, ProcessorInstance", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "This is a preview metric available in East US, West Europe. Number of input events which application time is considered late compared to arrival time, according to late arrival policy." + }, + "SQLStreamingOutOfOrderEvents": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "SQLPoolName, SQLDatabaseName, JobName, LogicalName, PartitionId, ProcessorInstance", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "This is a preview metric available in East US, West Europe. Number of Event Hub Events (serialized messages) received by the Event Hub Input Adapter, received out of order that were either dropped or given an adjusted timestamp, based on the Event Ordering Policy." + }, + "SQLStreamingOutputEvents": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "SQLPoolName, SQLDatabaseName, JobName, LogicalName, PartitionId, ProcessorInstance", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "This is a preview metric available in East US, West Europe. Number of output events." + }, + "SQLStreamingOutputWatermarkDelaySeconds": { + "Unit": "Count", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "SQLPoolName, SQLDatabaseName, JobName, LogicalName, PartitionId, ProcessorInstance", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "This is a preview metric available in East US, West Europe. Output watermark delay in seconds." + }, + "SQLStreamingResourceUtilization": { + "Unit": "Percent", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "SQLPoolName, SQLDatabaseName, JobName, LogicalName, PartitionId, ProcessorInstance", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "This is a preview metric available in East US, West Europe. Resource utilization expressed as a percentage. High utilization indicates that the job is using close to the maximum allocated resources." + }, + "SQLStreamingRuntimeErrors": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "SQLPoolName, SQLDatabaseName, JobName, LogicalName, PartitionId, ProcessorInstance", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "This is a preview metric available in East US, West Europe. Total number of errors related to query processing (excluding errors found while ingesting events or outputting results)." + } + }, + "microsoft.synapse/workspaces/scopepools": { + "ScopePoolJobPNMetric": { + "Unit": "Milliseconds", + "Aggregation": "Maximum, Minimum, Average, Total, Count", + "Dimensions": "JobType, JobResult", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "PN (process node) duration (Milliseconds) used by each SCOPE job" + }, + "ScopePoolJobQueuedDurationMetric": { + "Unit": "Milliseconds", + "Aggregation": "Maximum, Minimum, Average, Total, Count", + "Dimensions": "JobType", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Queued duration (Milliseconds) used by each SCOPE job" + }, + "ScopePoolJobRunningDurationMetric": { + "Unit": "Milliseconds", + "Aggregation": "Maximum, Minimum, Average, Total, Count", + "Dimensions": "JobType, JobResult", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Running duration (Milliseconds) used by each SCOPE job" + } + }, + "microsoft.synapse/workspaces/sqlpools": { + "ActiveQueries": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IsUserDefined", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The active queries. Using this metric unfiltered and unsplit displays all active queries running on the system" + }, + "AdaptiveCacheHitPercent": { + "Unit": "Percent", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Measures how well workloads are utilizing the adaptive cache. Use this metric with the cache hit percentage metric to determine whether to scale for additional capacity or rerun workloads to hydrate the cache" + }, + "AdaptiveCacheUsedPercent": { + "Unit": "Percent", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Measures how well workloads are utilizing the adaptive cache. Use this metric with the cache used percentage metric to determine whether to scale for additional capacity or rerun workloads to hydrate the cache" + }, + "Connections": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Result", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of Total logins to the SQL pool" + }, + "ConnectionsBlockedByFirewall": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Count of connections blocked by firewall rules. Revisit access control policies for your SQL pool and monitor these connections if the count is high" + }, + "CPUPercent": { + "Unit": "Percent", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "CPU utilization across all nodes in the SQL pool" + }, + "DWULimit": { + "Unit": "Count", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Service level objective of the SQL pool" + }, + "DWUUsed": { + "Unit": "Count", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Represents a high-level representation of usage across the SQL pool. Measured by DWU limit * DWU percentage" + }, + "DWUUsedPercent": { + "Unit": "Percent", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Represents a high-level representation of usage across the SQL pool. Measured by taking the maximum between CPU percentage and Data IO percentage" + }, + "LocalTempDBUsedPercent": { + "Unit": "Percent", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Local tempdb utilization across all compute nodes - values are emitted every five minute" + }, + "MemoryUsedPercent": { + "Unit": "Percent", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Memory utilization across all nodes in the SQL pool" + }, + "QueuedQueries": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IsUserDefined", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Cumulative count of requests queued after the max concurrency limit was reached" + }, + "WLGActiveQueries": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IsUserDefined, WorkloadGroup", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The active queries within the workload group. Using this metric unfiltered and unsplit displays all active queries running on the system" + }, + "WLGActiveQueriesTimeouts": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IsUserDefined, WorkloadGroup", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Queries for the workload group that have timed out. Query timeouts reported by this metric are only once the query has started executing (it does not include wait time due to locking or resource waits)" + }, + "WLGAllocationByEffectiveCapResourcePercent": { + "Unit": "Percent", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "IsUserDefined, WorkloadGroup", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Displays the percentage allocation of resources relative to the Effective cap resource percent per workload group. This metric provides the effective utilization of the workload group" + }, + "WLGAllocationBySystemPercent": { + "Unit": "Percent", + "Aggregation": "Maximum, Minimum, Average, Total", + "Dimensions": "IsUserDefined, WorkloadGroup", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The percentage allocation of resources relative to the entire system" + }, + "WLGEffectiveCapResourcePercent": { + "Unit": "Percent", + "Aggregation": "Maximum, Minimum, Average", + "Dimensions": "IsUserDefined, WorkloadGroup", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The effective cap resource percent for the workload group. If there are other workload groups with min_percentage_resource > 0, the effective_cap_percentage_resource is lowered proportionally" + }, + "WLGEffectiveMinResourcePercent": { + "Unit": "Percent", + "Aggregation": "Minimum, Maximum, Average, Total", + "Dimensions": "IsUserDefined, WorkloadGroup", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "The effective min resource percentage setting allowed considering the service level and the workload group settings. The effective min_percentage_resource can be adjusted higher on lower service levels" + }, + "WLGQueuedQueries": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "IsUserDefined, WorkloadGroup", + "Time Grains": "PT1M", + "DS Export": "No", + "Description": "Cumulative count of requests queued after the max concurrency limit was reached" + } + }, + "microsoft.timeseriesinsights/environments/eventsources": { + "IngressReceivedBytes": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of bytes read from the event source" + }, + "IngressReceivedInvalidMessages": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of invalid messages read from the event source" + }, + "IngressReceivedMessages": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of messages read from the event source" + }, + "IngressReceivedMessagesCountLag": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Difference between the sequence number of last enqueued message in the event source partition and sequence number of messages being processed in Ingress" + }, + "IngressReceivedMessagesTimeLag": { + "Unit": "Seconds", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Difference between the time that the message is enqueued in the event source and the time it is processed in Ingress" + }, + "IngressStoredBytes": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total size of events successfully processed and available for query" + }, + "IngressStoredEvents": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of flattened events successfully processed and available for query" + }, + "WarmStorageMaxProperties": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Maximum number of properties used allowed by the environment for S1/S2 SKU and maximum number of properties allowed by Warm Store for PAYG SKU" + }, + "WarmStorageUsedProperties": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of properties used by the environment for S1/S2 SKU and number of properties used by Warm Store for PAYG SKU" + } + }, + "microsoft.timeseriesinsights/environments": { + "IngressReceivedBytes": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of bytes read from all event sources" + }, + "IngressReceivedInvalidMessages": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of invalid messages read from all Event hub or IoT hub event sources" + }, + "IngressReceivedMessages": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of messages read from all Event hub or IoT hub event sources" + }, + "IngressReceivedMessagesCountLag": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Difference between the sequence number of last enqueued message in the event source partition and sequence number of messages being processed in Ingress" + }, + "IngressReceivedMessagesTimeLag": { + "Unit": "Seconds", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Difference between the time that the message is enqueued in the event source and the time it is processed in Ingress" + }, + "IngressStoredBytes": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total size of events successfully processed and available for query" + }, + "IngressStoredEvents": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Count of flattened events successfully processed and available for query" + }, + "WarmStorageMaxProperties": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Maximum number of properties used allowed by the environment for S1/S2 SKU and maximum number of properties allowed by Warm Store for PAYG SKU" + }, + "WarmStorageUsedProperties": { + "Unit": "Count", + "Aggregation": "Maximum", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of properties used by the environment for S1/S2 SKU and number of properties used by Warm Store for PAYG SKU" + } + }, + "microsoft.voiceservices/communicationsgateways": { + "ActiveCallFailures": { + "Unit": "Percent", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "Region", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "Percentage of active call failures" + }, + "ActiveCalls": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "Region", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "Count of the total number of active calls (signaling sessions)" + }, + "ActiveEmergencyCalls": { + "Unit": "Count", + "Aggregation": "Average, Minimum, Maximum", + "Dimensions": "Region", + "Time Grains": "PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D", + "DS Export": "No", + "Description": "Count of the total number of active emergency calls" + } + }, + "microsoft.web/containerapps": { + "Replicas": { + "Unit": "Count", + "Aggregation": "Average, Total, Maximum, Minimum", + "Dimensions": "revisionName, deploymentName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of replicas count of container app" + }, + "Requests": { + "Unit": "Count", + "Aggregation": "Average, Total, Maximum, Minimum", + "Dimensions": "revisionName, podName, statusCodeCategory, statusCode", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Requests processed" + }, + "RestartCount": { + "Unit": "Count", + "Aggregation": "Average, Total, Maximum, Minimum", + "Dimensions": "revisionName, podName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Restart count of container app replicas" + }, + "RxBytes": { + "Unit": "Bytes", + "Aggregation": "Average, Total, Maximum, Minimum", + "Dimensions": "revisionName, podName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Network received bytes" + }, + "TxBytes": { + "Unit": "Bytes", + "Aggregation": "Average, Total, Maximum, Minimum", + "Dimensions": "revisionName, podName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Network transmitted bytes" + }, + "UsageNanoCores": { + "Unit": "NanoCores", + "Aggregation": "Total, Average, Maximum, Minimum", + "Dimensions": "revisionName, podName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "CPU consumed by the container app, in nano cores. 1,000,000,000 nano cores = 1 core" + }, + "WorkingSetBytes": { + "Unit": "Bytes", + "Aggregation": "Total, Average, Maximum, Minimum", + "Dimensions": "revisionName, podName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Container App working set memory used in bytes." + } + }, + "microsoft.web/hostingenvironments": { + "ActiveRequests": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of requests being actively handled by the App Service Environment at any given time" + }, + "AverageResponseTime": { + "Unit": "Seconds", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Average time taken for the ASE to serve requests" + }, + "BytesReceived": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Incoming bandwidth used across all front end instances" + }, + "BytesSent": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Outgoing bandwidth used across all front end instances" + }, + "CpuPercentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "CPU used across all front end instances" + }, + "DiskQueueLength": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of both read and write requests that were queued on storage" + }, + "Http101": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of requests resulting in an HTTP 101 status code" + }, + "Http2xx": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of requests resulting in an HTTP status code \u2265 200 but < 300" + }, + "Http3xx": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of requests resulting in an HTTP status code \u2265 300 but < 400" + }, + "Http401": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of requests resulting in an HTTP 401 status code" + }, + "Http403": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of requests resulting in an HTTP 403 status code" + }, + "Http404": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of requests resulting in an HTTP 404 status code" + }, + "Http406": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of requests resulting in an HTTP 406 status code" + }, + "Http4xx": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of requests resulting in an HTTP status code \u2265 400 but < 500" + }, + "Http5xx": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of requests resulting in an HTTP status code \u2265 500 but < 600" + }, + "HttpQueueLength": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of HTTP requests that had to sit on the queue before being fulfilled" + }, + "HttpResponseTime": { + "Unit": "Seconds", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Time taken for the ASE to serve requests" + }, + "LargeAppServicePlanInstances": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of large App Service Plan worker instances" + }, + "MediumAppServicePlanInstances": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of medium App Service Plan worker instances" + }, + "MemoryPercentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Memory used across all front end instances" + }, + "Requests": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of web requests served" + }, + "SmallAppServicePlanInstances": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of small App Service Plan worker instances" + }, + "TotalFrontEnds": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Number of front end instances" + } + }, + "microsoft.web/hostingenvironments/multirolepools": { + "ActiveRequests": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Active Requests" + }, + "AverageResponseTime": { + "Unit": "Seconds", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average time taken for the front end to serve requests, in seconds." + }, + "BytesReceived": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average incoming bandwidth used across all front ends, in MiB." + }, + "BytesSent": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average incoming bandwidth used across all front end, in MiB." + }, + "CpuPercentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average CPU used across all instances of front end." + }, + "DiskQueueLength": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average number of both read and write requests that were queued on storage. A high disk queue length is an indication of an app that might be slowing down because of excessive disk I/O." + }, + "Http101": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of requests resulting in an HTTP status code 101." + }, + "Http2xx": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of requests resulting in an HTTP status code \u2265 200 but < 300." + }, + "Http3xx": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of requests resulting in an HTTP status code \u2265 300 but < 400." + }, + "Http401": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of requests resulting in HTTP 401 status code." + }, + "Http403": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of requests resulting in HTTP 403 status code." + }, + "Http404": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of requests resulting in HTTP 404 status code." + }, + "Http406": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of requests resulting in HTTP 406 status code." + }, + "Http4xx": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of requests resulting in an HTTP status code \u2265 400 but < 500." + }, + "Http5xx": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of requests resulting in an HTTP status code \u2265 500 but < 600." + }, + "HttpQueueLength": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average number of HTTP requests that had to sit on the queue before being fulfilled. A high or increasing HTTP Queue length is a symptom of a plan under heavy load." + }, + "HttpResponseTime": { + "Unit": "Seconds", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The time taken for the front end to serve requests, in seconds." + }, + "LargeAppServicePlanInstances": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Large App Service Plan Workers" + }, + "MediumAppServicePlanInstances": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Medium App Service Plan Workers" + }, + "MemoryPercentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average memory used across all instances of front end." + }, + "Requests": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of requests regardless of their resulting HTTP status code." + }, + "SmallAppServicePlanInstances": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Small App Service Plan Workers" + }, + "TotalFrontEnds": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total Front Ends" + } + }, + "microsoft.web/hostingenvironments/workerpools": { + "CpuPercentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average CPU used across all instances of the worker pool." + }, + "MemoryPercentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average memory used across all instances of the worker pool." + }, + "WorkersAvailable": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Available Workers" + }, + "WorkersTotal": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total Workers" + }, + "WorkersUsed": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Used Workers" + } + }, + "microsoft.web/serverfarms": { + "BytesReceived": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average incoming bandwidth used across all instances of the plan." + }, + "BytesSent": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average outgoing bandwidth used across all instances of the plan." + }, + "CpuPercentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average CPU used across all instances of the plan." + }, + "DiskQueueLength": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average number of both read and write requests that were queued on storage. A high disk queue length is an indication of an app that might be slowing down because of excessive disk I/O." + }, + "HttpQueueLength": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average number of HTTP requests that had to sit on the queue before being fulfilled. A high or increasing HTTP Queue length is a symptom of a plan under heavy load." + }, + "MemoryPercentage": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average memory used across all instances of the plan." + }, + "SocketInboundAll": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average number of sockets used for incoming HTTP requests across all the instances of the plan." + }, + "SocketLoopback": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average number of sockets used for loopback connections across all the instances of the plan." + }, + "SocketOutboundAll": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average number of sockets used for outbound connections across all the instances of the plan irrespective of their TCP states. Having too many outbound connections can cause connectivity errors." + }, + "SocketOutboundEstablished": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average number of sockets in ESTABLISHED state used for outbound connections across all the instances of the plan." + }, + "SocketOutboundTimeWait": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average number of sockets in TIME_WAIT state used for outbound connections across all the instances of the plan. High or increasing outbound socket counts in TIME_WAIT state can cause connectivity errors." + }, + "TcpCloseWait": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average number of sockets in CLOSE_WAIT state across all the instances of the plan." + }, + "TcpClosing": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average number of sockets in CLOSING state across all the instances of the plan." + }, + "TcpEstablished": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average number of sockets in ESTABLISHED state across all the instances of the plan." + }, + "TcpFinWait1": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average number of sockets in FIN_WAIT_1 state across all the instances of the plan." + }, + "TcpFinWait2": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average number of sockets in FIN_WAIT_2 state across all the instances of the plan." + }, + "TcpLastAck": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average number of sockets in LAST_ACK state across all the instances of the plan." + }, + "TcpSynReceived": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average number of sockets in SYN_RCVD state across all the instances of the plan." + }, + "TcpSynSent": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average number of sockets in SYN_SENT state across all the instances of the plan." + }, + "TcpTimeWait": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average number of sockets in TIME_WAIT state across all the instances of the plan." + } + }, + "microsoft.web/sites": { + "AppConnections": { + "Unit": "Count", + "Aggregation": "Average, Count, Maximum, Minimum", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of bound sockets existing in the sandbox (w3wp.exe and its child processes). A bound socket is created by calling bind()/connect() APIs and remains until said socket is closed with CloseHandle()/closesocket(). For WebApps and FunctionApps." + }, + "AverageMemoryWorkingSet": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average amount of memory used by the app, in megabytes (MiB). For WebApps and FunctionApps." + }, + "AverageResponseTime": { + "Unit": "Seconds", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average time taken for the app to serve requests, in seconds. For WebApps and FunctionApps." + }, + "BytesReceived": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of incoming bandwidth consumed by the app, in MiB. For WebApps and FunctionApps." + }, + "BytesSent": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of outgoing bandwidth consumed by the app, in MiB. For WebApps and FunctionApps." + }, + "CpuTime": { + "Unit": "Seconds", + "Aggregation": "Count, Total, Minimum, Maximum", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of CPU consumed by the app, in seconds. For more information about this metric. Please see https://aka.ms/website-monitor-cpu-time-vs-cpu-percentage (CPU time vs CPU percentage). For WebApps only." + }, + "CurrentAssemblies": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The current number of Assemblies loaded across all AppDomains in this application. For WebApps and FunctionApps." + }, + "FileSystemUsage": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Percentage of filesystem quota consumed by the app. For WebApps and FunctionApps." + }, + "FunctionExecutionCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Function Execution Count. For FunctionApps only." + }, + "FunctionExecutionUnits": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Function Execution Units. For FunctionApps only." + }, + "Gen0Collections": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of times the generation 0 objects are garbage collected since the start of the app process. Higher generation GCs include all lower generation GCs. For WebApps and FunctionApps." + }, + "Gen1Collections": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of times the generation 1 objects are garbage collected since the start of the app process. Higher generation GCs include all lower generation GCs. For WebApps and FunctionApps." + }, + "Gen2Collections": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of times the generation 2 objects are garbage collected since the start of the app process. For WebApps and FunctionApps." + }, + "Handles": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of handles currently open by the app process. For WebApps and FunctionApps." + }, + "HealthCheckStatus": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT5M, PT1H, P1D", + "DS Export": "Yes", + "Description": "Health check status. For WebApps and FunctionApps." + }, + "Http101": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of requests resulting in an HTTP status code 101. For WebApps and FunctionApps." + }, + "Http2xx": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of requests resulting in an HTTP status code >= 200 but < 300. For WebApps and FunctionApps." + }, + "Http3xx": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of requests resulting in an HTTP status code >= 300 but < 400. For WebApps and FunctionApps." + }, + "Http401": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of requests resulting in HTTP 401 status code. For WebApps and FunctionApps." + }, + "Http403": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of requests resulting in HTTP 403 status code. For WebApps and FunctionApps." + }, + "Http404": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of requests resulting in HTTP 404 status code. For WebApps and FunctionApps." + }, + "Http406": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of requests resulting in HTTP 406 status code. For WebApps and FunctionApps." + }, + "Http4xx": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of requests resulting in an HTTP status code >= 400 but < 500. For WebApps and FunctionApps." + }, + "Http5xx": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of requests resulting in an HTTP status code >= 500 but < 600. For WebApps and FunctionApps." + }, + "HttpResponseTime": { + "Unit": "Seconds", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The time taken for the app to serve requests, in seconds. For WebApps and FunctionApps." + }, + "IoOtherBytesPerSecond": { + "Unit": "BytesPerSecond", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The rate at which the app process is issuing bytes to I/O operations that don't involve data, such as control operations. For WebApps and FunctionApps." + }, + "IoOtherOperationsPerSecond": { + "Unit": "BytesPerSecond", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The rate at which the app process is issuing I/O operations that aren't read or write operations. For WebApps and FunctionApps." + }, + "IoReadBytesPerSecond": { + "Unit": "BytesPerSecond", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The rate at which the app process is reading bytes from I/O operations. For WebApps and FunctionApps." + }, + "IoReadOperationsPerSecond": { + "Unit": "BytesPerSecond", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The rate at which the app process is issuing read I/O operations. For WebApps and FunctionApps." + }, + "IoWriteBytesPerSecond": { + "Unit": "BytesPerSecond", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The rate at which the app process is writing bytes to I/O operations. For WebApps and FunctionApps." + }, + "IoWriteOperationsPerSecond": { + "Unit": "BytesPerSecond", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The rate at which the app process is issuing write I/O operations. For WebApps and FunctionApps." + }, + "MemoryWorkingSet": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The current amount of memory used by the app, in MiB. For WebApps and FunctionApps." + }, + "PrivateBytes": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Private Bytes is the current size, in bytes, of memory that the app process has allocated that can't be shared with other processes. For WebApps and FunctionApps." + }, + "Requests": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of requests regardless of their resulting HTTP status code. For WebApps and FunctionApps." + }, + "RequestsInApplicationQueue": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of requests in the application request queue. For WebApps and FunctionApps." + }, + "Threads": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of threads currently active in the app process. For WebApps and FunctionApps." + }, + "TotalAppDomains": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The current number of AppDomains loaded in this application. For WebApps and FunctionApps." + }, + "TotalAppDomainsUnloaded": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of AppDomains unloaded since the start of the application. For WebApps and FunctionApps." + }, + "WorkflowActionsCompleted": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "workflowName, status", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Workflow Action Completed Count. For LogicApps only." + }, + "WorkflowActionsFailureRate": { + "Unit": "Percent", + "Aggregation": "Total", + "Dimensions": "workflowName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Workflow Actions Failure Rate. For LogicApps only." + }, + "WorkflowAppJobPullRate": { + "Unit": "CountPerSecond", + "Aggregation": "Total", + "Dimensions": "accountName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Logic Job Pull Rate per second. For LogicApps only." + }, + "WorkflowJobExecutionDelay": { + "Unit": "Seconds", + "Aggregation": "Average", + "Dimensions": "workflowName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Workflow Job Execution Delay. For LogicApps only." + }, + "WorkflowJobExecutionDuration": { + "Unit": "Seconds", + "Aggregation": "Average", + "Dimensions": "workflowName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Workflow Job Execution Duration. For LogicApps only." + }, + "WorkflowRunsCompleted": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "workflowName, status", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Workflow Runs Completed Count. For LogicApps only." + }, + "WorkflowRunsDispatched": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "workflowName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Workflow Runs Dispatched Count. For LogicApps only." + }, + "WorkflowRunsFailureRate": { + "Unit": "Percent", + "Aggregation": "Total", + "Dimensions": "workflowName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Workflow Runs Failure Rate. For LogicApps only." + }, + "WorkflowRunsStarted": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "workflowName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Workflow Runs Started Count. For LogicApps only." + }, + "WorkflowTriggersCompleted": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "workflowName, status", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Workflow Triggers Completed Count. For LogicApps only." + }, + "WorkflowTriggersFailureRate": { + "Unit": "Percent", + "Aggregation": "Total", + "Dimensions": "workflowName", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Workflow Triggers Failure Rate. For LogicApps only." + } + }, + "microsoft.web/sites/slots": { + "AppConnections": { + "Unit": "Count", + "Aggregation": "Average, Count, Maximum, Minimum", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of bound sockets existing in the sandbox (w3wp.exe and its child processes). A bound socket is created by calling bind()/connect() APIs and remains until said socket is closed with CloseHandle()/closesocket()." + }, + "AverageMemoryWorkingSet": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average amount of memory used by the app, in megabytes (MiB)." + }, + "AverageResponseTime": { + "Unit": "Seconds", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The average time taken for the app to serve requests, in seconds." + }, + "BytesReceived": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of incoming bandwidth consumed by the app, in MiB." + }, + "BytesSent": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of outgoing bandwidth consumed by the app, in MiB." + }, + "CpuTime": { + "Unit": "Seconds", + "Aggregation": "Count, Total, Minimum, Maximum", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The amount of CPU consumed by the app, in seconds. For more information about this metric. Please see https://aka.ms/website-monitor-cpu-time-vs-cpu-percentage (CPU time vs CPU percentage)." + }, + "CurrentAssemblies": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The current number of Assemblies loaded across all AppDomains in this application." + }, + "FileSystemUsage": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT6H, PT12H, P1D", + "DS Export": "Yes", + "Description": "Percentage of filesystem quota consumed by the app." + }, + "FunctionExecutionCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Function Execution Count" + }, + "FunctionExecutionUnits": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Function Execution Units" + }, + "Gen0Collections": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of times the generation 0 objects are garbage collected since the start of the app process. Higher generation GCs include all lower generation GCs." + }, + "Gen1Collections": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of times the generation 1 objects are garbage collected since the start of the app process. Higher generation GCs include all lower generation GCs." + }, + "Gen2Collections": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of times the generation 2 objects are garbage collected since the start of the app process." + }, + "Handles": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of handles currently open by the app process." + }, + "HealthCheckStatus": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT5M, PT1H, P1D", + "DS Export": "Yes", + "Description": "Health check status" + }, + "Http101": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of requests resulting in an HTTP status code 101." + }, + "Http2xx": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of requests resulting in an HTTP status code >= 200 but < 300." + }, + "Http3xx": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of requests resulting in an HTTP status code >= 300 but < 400." + }, + "Http401": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of requests resulting in HTTP 401 status code." + }, + "Http403": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of requests resulting in HTTP 403 status code." + }, + "Http404": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of requests resulting in HTTP 404 status code." + }, + "Http406": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of requests resulting in HTTP 406 status code." + }, + "Http4xx": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of requests resulting in an HTTP status code >= 400 but < 500." + }, + "Http5xx": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The count of requests resulting in an HTTP status code >= 500 but < 600." + }, + "HttpResponseTime": { + "Unit": "Seconds", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The time taken for the app to serve requests, in seconds." + }, + "IoOtherBytesPerSecond": { + "Unit": "BytesPerSecond", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The rate at which the app process is issuing bytes to I/O operations that don't involve data, such as control operations." + }, + "IoOtherOperationsPerSecond": { + "Unit": "BytesPerSecond", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The rate at which the app process is issuing I/O operations that aren't read or write operations." + }, + "IoReadBytesPerSecond": { + "Unit": "BytesPerSecond", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The rate at which the app process is reading bytes from I/O operations." + }, + "IoReadOperationsPerSecond": { + "Unit": "BytesPerSecond", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The rate at which the app process is issuing read I/O operations." + }, + "IoWriteBytesPerSecond": { + "Unit": "BytesPerSecond", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The rate at which the app process is writing bytes to I/O operations." + }, + "IoWriteOperationsPerSecond": { + "Unit": "BytesPerSecond", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The rate at which the app process is issuing write I/O operations." + }, + "MemoryWorkingSet": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The current amount of memory used by the app, in MiB." + }, + "PrivateBytes": { + "Unit": "Bytes", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Private Bytes is the current size, in bytes, of memory that the app process has allocated that can't be shared with other processes." + }, + "Requests": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of requests regardless of their resulting HTTP status code." + }, + "RequestsInApplicationQueue": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of requests in the application request queue." + }, + "Threads": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The number of threads currently active in the app process." + }, + "TotalAppDomains": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The current number of AppDomains loaded in this application." + }, + "TotalAppDomainsUnloaded": { + "Unit": "Count", + "Aggregation": "Average", + "Dimensions": "Instance", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The total number of AppDomains unloaded since the start of the application." + } + }, + "microsoft.web/staticsites": { + "BytesSent": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT1H, P1D", + "DS Export": "Yes", + "Description": "BytesSent" + }, + "CdnPercentageOf4XX": { + "Unit": "Percent", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT1H, P1D", + "DS Export": "Yes", + "Description": "CdnPercentageOf4XX" + }, + "CdnPercentageOf5XX": { + "Unit": "Percent", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT1H, P1D", + "DS Export": "Yes", + "Description": "CdnPercentageOf5XX" + }, + "CdnRequestCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT1H, P1D", + "DS Export": "Yes", + "Description": "CdnRequestCount" + }, + "CdnResponseSize": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT1H, P1D", + "DS Export": "Yes", + "Description": "CdnResponseSize" + }, + "CdnTotalLatency": { + "Unit": "MilliSeconds", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT1H, P1D", + "DS Export": "Yes", + "Description": "CdnTotalLatency" + }, + "DataApiErrors": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT1H, P1D", + "DS Export": "Yes", + "Description": "DataApiErrors" + }, + "DataApiHits": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT1H, P1D", + "DS Export": "Yes", + "Description": "DataApiHits" + }, + "FunctionErrors": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT1H, P1D", + "DS Export": "Yes", + "Description": "FunctionErrors" + }, + "FunctionHits": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT1H, P1D", + "DS Export": "Yes", + "Description": "FunctionHits" + }, + "SiteErrors": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT1H, P1D", + "DS Export": "Yes", + "Description": "SiteErrors" + }, + "SiteHits": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT5M, PT1H, P1D", + "DS Export": "Yes", + "Description": "SiteHits" + } + }, + "nginx.nginxplus/nginxdeployments": { + "nginx": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The NGINX metric." + } + }, + "wandisco.fusion/migrators/datatransferagents": { + "BytesPerSecond": { + "Unit": "BytesPerSecond", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Throughput speed of Bytes/second being utilised for a DTA." + }, + "DtaCPULoad": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "CPU consumption by the DTA process." + }, + "FileMigrationCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "This provides a running total of how many files have been migrated." + }, + "MigratedDataInBytes": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "This provides a view of the successfully migrated Bytes for a given DTA" + }, + "NumberOfFailedPaths": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "A count of which paths have failed to migrate." + }, + "SystemCPULoad": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total CPU consumption." + } + }, + "wandisco.fusion/migrators/livedatamigrations": { + "BytesMigratedByMigration": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Provides a detailed view of a migration's Bytes Transferred" + }, + "DataTransactionsByMigration": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Provides a detailed view of a migration's Data Transactions" + }, + "DirectoriesCreatedCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "This provides a running view of how many directories have been created as part of a migration." + }, + "FileMigrationCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "This provides a running total of how many files have been migrated." + }, + "InitialScanDataMigratedInBytes": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "This provides the view of the total bytes which have been transferred in a new migrator as a result of the initial scan of the On-Premises file system. Any data which is added to the migration after the initial scan migration, is NOT included in this metric." + }, + "LiveDataMigratedInBytes": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Provides a running total of LiveData which has been changed due to Client activity, since the migration started." + }, + "NumberOfExcludedPaths": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Provides a running count of the paths which have been excluded from the migration due to Exclusion Rules." + }, + "NumberOfFailedPaths": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "A count of which paths have failed to migrate." + }, + "RecurringScanDurationInSeconds": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "The metric shows the duration in seconds of each scan." + }, + "TotalBytesTransferred": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "This metric covers how many bytes have been transferred (does not reflect how many have successfully migrated, only how much has been transferred)." + }, + "TotalRecurringScans": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "This metric shows the count of how many scans have been completed on a recurring migration." + } + }, + "wandisco.fusion/migrators/metadatamigrations": { + "LiveHiveAddedAfterScan": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Provides a running total of how many items have been added after the initial scan." + }, + "LiveHiveDiscoveredItems": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Provides a running total of how many items have been discovered." + }, + "LiveHiveInitiallyDiscoveredItems": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "This provides the view of the total items discovered as a result of the initial scan of the On-Premises file system. Any items that are discovered after the initial scan, are NOT included in this metric." + }, + "LiveHiveInitiallyMigratedItems": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "This provides the view of the total items migrated as a result of the initial scan of the On-Premises file system. Any items that are added after the initial scan, are NOT included in this metric." + }, + "LiveHiveMigratedItems": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Provides a running total of how many items have been migrated." + } + }, + "wandisco.fusion/migrators": { + "BytesPerSecond": { + "Unit": "BytesPerSecond", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Throughput speed of Bytes/second being utilised for a migrator." + }, + "DirectoriesCreatedCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "This provides a running view of how many directories have been created as part of a migration." + }, + "FileMigrationCount": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "This provides a running total of how many files have been migrated." + }, + "InitialScanDataMigratedInBytes": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "This provides the view of the total bytes which have been transferred in a new migrator as a result of the initial scan of the On-Premises file system. Any data which is added to the migration after the initial scan migration, is NOT included in this metric." + }, + "LiveDataMigratedInBytes": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Provides a running total of LiveData which has been changed due to Client activity, since the migration started." + }, + "MigratorCPULoad": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "CPU consumption by the migrator process." + }, + "NumberOfExcludedPaths": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Provides a running count of the paths which have been excluded from the migration due to Exclusion Rules." + }, + "NumberOfFailedPaths": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "A count of which paths have failed to migrate." + }, + "SystemCPULoad": { + "Unit": "Percent", + "Aggregation": "Average", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "Total CPU consumption." + }, + "TotalMigratedDataInBytes": { + "Unit": "Bytes", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "This provides a view of the successfully migrated Bytes for a given migrator" + }, + "TotalTransactions": { + "Unit": "Count", + "Aggregation": "Total", + "Dimensions": "No Dimensions", + "Time Grains": "PT1M", + "DS Export": "Yes", + "Description": "This provides a running total of the Data Transactions for which the user could be billed." + } + } +} \ No newline at end of file diff --git a/tooling/query-metrics-alerts/parse_analysis.py b/tooling/query-metrics-alerts/parse_analysis.py new file mode 100644 index 000000000..fd2b962c3 --- /dev/null +++ b/tooling/query-metrics-alerts/parse_analysis.py @@ -0,0 +1,291 @@ +import json +import yaml +import argparse +import os + +import pandas as pd + +# Parse command line arguments +def parseArguments(): + parser = argparse.ArgumentParser(description='This script analyzes the results of a MetricAlertsRules query.') + parser.add_argument('-q', '--query-results', type=str, required=False, metavar='file', help='Path to analyze results', default='analysis_results.csv') + parser.add_argument('-p', '--provider-list', type=str, required=False, metavar='file', help='Path to provider list', default='provider_list.json') + parser.add_argument('-m', '--parse-metrics', type=str, required=False, metavar='dir', help='Path to Azure repo containing metric definitions', default="../../../azure-reference-other/azure-monitor-ref/supported-metrics/includes") + parser.add_argument('-l', '--load-metrics', type=str, required=False, metavar='file', help='Path to metric definitions', default="metric_definitions.json") + parser.add_argument('-s', '--save-metrics', type=str, required=False, metavar='file', help='Path to metric definitions', default="metric_definitions.json") + parser.add_argument('-a', '--amba-dir', type=str, required=False, metavar='file', help='Path to metric definitions', default="../..") + parser.add_argument('-t', '--threshold', type=str, required=False, metavar='file', help='Set minimum number for rules in order to be included in output', default=250) + + args = parser.parse_args() + + return args + +# Output the alerts to a JSON file +def outputToJsonFile(data, filename): + # Write the results to a file + with open(filename, "w+") as f: + json.dump(data, f, indent=2) + +# Output the query results to a JSON file +def outputToYamlFile(data, filename): + # Write the results to a file + with open(filename, "w+") as f: + yaml.dump(data, f, indent=2, default_flow_style=False, sort_keys=False) + +def getResourceTypes(file): + with open(file, "r", encoding="utf-8") as file: + providers = json.load(file) + + # Get a list of resource types from the provider list + resourceTypes = {} + + for p in providers: + category = p["namespace"] + if (category.startswith('Microsoft')): + for rt in p["resourceTypes"]: + type = rt["resourceType"] + resourceTypes[f"{category}/{type}".lower()] = { + "category": category, + "type": type + } + + return resourceTypes + +def parseMetricFile(file): + metrics = {} + + with open(file, 'r', encoding="utf-8") as f: + lines = f.readlines() + + # Remove lines that don't begin with | + lines = [line for line in lines if line.startswith('|')] + + # remove second line + lines.pop(1) + + header = lines[0].split('|') + header = [item.strip() for item in header if item.strip() != ''] + + for line in lines[1:]: + line = line.split('|') + line = line[1:-1] + line = [item.strip() for item in line] + + metric = {} + for i in range(len(header)): + metric[header[i]] = line[i] + + metric['Description'] = metric.pop("Metric").split('

')[-1] + key = metric['Name'].replace('`', '') + metric.pop('Name') + + metrics[key] = metric + + return metrics + +def parseMetricFiles(dir): + + metricDefinitions = {} + + # Loop through each file in the directory + for filename in os.listdir(dir): + if filename.endswith(".md"): + + category = '.'.join(filename.split('-')[0:2]) + type = '/'.join(filename.split('-')[2:-2]) + file = os.path.join(dir, filename) + metrics = parseMetricFile(file) + + # Check if category and type are in resourceTypes case insensitive + key = f"{category}/{type}".lower() + metricDefinitions[key] = metrics + + return metricDefinitions + +def parseAnalysisFile(file, resourceTypes): + # Read the CSV file using Pandas + alerts = pd.read_csv(file, header=0).to_dict('records') + + + for alert in alerts: + type = alert['resourceType'] + metric = alert['metricName'] + + # Check if the metric is in the metrics list for each resource type + if type in resourceTypes.keys(): + if 'metrics' in resourceTypes[type].keys(): + # find key in metrics that matches lowercase metric name + key = [k for k in resourceTypes[type]['metrics'].keys() if k.lower() == metric.lower()] + if len(key) > 0: + # drop first keys in alert + alert.pop('resourceType') + alert.pop('metricName') + resourceTypes[type]['metrics'][key[0]]['alert'] = alert + else: + print(f"Did not find metric: {metric} in {type}") + +def formatOperator(value): + match value.lower(): + case 'lessthan': + return 'LessThan' + case 'lessthanorequal': + return 'LessThanOrEqual' + case 'greaterthan': + return 'GreaterThan' + case 'greaterthanorequal': + return 'GreaterThanOrEqual' + case 'greaterorlessthan': + return 'GreaterOrLessThan' + case 'equal': + return 'Equal' + case _: + return value + +def formatCriterion(value): + match value.lower(): + case 'staticthresholdcriterion': + return 'StaticThresholdCriterion' + case 'dynamicthresholdcriterion': + return 'DynamicThresholdCriterion' + case _: + return value + +def main(): + + args = parseArguments() + + resourceTypes = getResourceTypes(args.provider_list) + + metricDefinitions = {} + if args.load_metrics: + with open(args.load_metrics, "r", encoding="utf-8") as file: + metricDefinitions = json.load(file) + else: + metricDefinitions = parseMetricFiles(args.parse_metrics) + outputToJsonFile(metricDefinitions, args.save_metrics) + + # add metrics to resourceTypes + for key in metricDefinitions: + if not key in resourceTypes.keys(): + print(f"Did not find resource type: {key}") + continue + + resourceTypes[key]['metrics'] = metricDefinitions[key] + + parseAnalysisFile(args.query_results, resourceTypes) + + # remove metrics that don't have alerts + for rt in resourceTypes: + if not 'metrics' in resourceTypes[rt].keys(): continue + + for metric in list(resourceTypes[rt]['metrics']): + if not 'alert' in resourceTypes[rt]['metrics'][metric].keys(): + resourceTypes[rt]['metrics'].pop(metric) + + dir = '../../services' + for rt in resourceTypes: + if not 'metrics' in resourceTypes[rt].keys(): continue + + # sort metrics based on alert numRules descending if alerts exist + resourceTypes[rt]['metrics'] = dict(sorted(resourceTypes[rt]['metrics'].items(), key=lambda item: item[1]['alert']['numRules'], reverse=True)) + + for metric in resourceTypes[rt]["metrics"]: + if not 'alert' in resourceTypes[rt]["metrics"][metric].keys(): continue + + if resourceTypes[rt]["metrics"][metric]["alert"]["numRules"] < args.threshold: continue + + category = resourceTypes[rt]['category'] + type = resourceTypes[rt]['type'] + alert = resourceTypes[rt]["metrics"][metric]["alert"] + description = resourceTypes[rt]["metrics"][metric]["Description"] + + # create directory based on category if it doesn't exist + category = resourceTypes[rt]['category'].replace('Microsoft.', '') + if not os.path.exists(os.path.join(dir, category, '_index.md')): + os.makedirs(os.path.join(dir, category), exist_ok=True) + with open(os.path.join(dir, category, '_index.md'), 'w+') as f: + f.write(f"---\ntitle: {category}\ngeekdocCollapseSection: true\ngeekdocHidden: true\n---\n") + + # create directory based on type if it doesn't exist + subdir = type.split('/')[0] + if not os.path.exists(os.path.join(dir, category, subdir, '_index.md')): + os.makedirs(os.path.join(dir, category, subdir), exist_ok=True) + with open(os.path.join(dir, category, subdir, '_index.md'), 'w+') as f: + f.write(f"---\ntitle: {type}\ngeekdocCollapseSection: true\ngeekdocHidden: true\n---\n\n") + f.write('{{< alertList name="alertList" >}}') + + # load existing yaml file if it exists + filename = os.path.join(dir, category, subdir, "alerts.yaml") + if not os.path.exists(filename): + mode = 'w' + else: + mode = 'r+' + + with open(filename, mode) as f: + try: + data = yaml.load(f, Loader=yaml.FullLoader) + except: + data = [] + + addAlert = True + + # Find record where proerpites.metricName == metric + for i in range(len(data)): + if data[i]['type'] == 'Metric': + if data[i]['properties']['metricName'] == metric: + data[i]['description'] = description + break + + # find record where properties.metricName == metric and tag contains auto-generated + for i in range(len(data)): + if data[i]['type'] != 'Metric': continue + if "tags" not in data[i].keys(): continue + + if data[i]['properties']['metricName'] == metric and 'auto-generated' in data[i]['tags']: + if data[i]['verified'] == False: + data.pop(i) + break + else: + addAlert = False + break + + if addAlert: + # add alert to yaml file + new_alert = { + "name": metric, + "description": description, + "type": "Metric", + "verified": False, + "visible": False, + "tags": ["auto-generated", f"agc-{alert['numRules']}"], + "properties": { + "metricName": metric, + "metricNamespace": f"{resourceTypes[rt]['category']}/{type}", + "severity": alert['severity'], + "windowSize": alert['windowSize'], + "evaluationFrequency": alert['frequency'], + "timeAggregation": alert['timeAggregation'].capitalize(), + "operator": formatOperator(alert['operator']), + "criterionType": formatCriterion(alert['criterionType']) + } + } + + if 'dimensions' in alert.keys(): + if alert['dimensions'] != '[]': + new_alert['properties']['dimensions'] = json.loads(alert['dimensions']) + + if new_alert['properties']['criterionType'] == 'DynamicThresholdCriterion': + new_alert['properties']['failingPeriods'] = json.loads(alert['failingPeriods']) + new_alert['properties']['alertSensitivity'] = alert['alertSensitivity'].capitalize() + else: + new_alert['properties']['threshold'] = alert['threshold'] + + data.append(new_alert) + + # write yaml file + outputToYamlFile(data, filename) + + print(f"Adding alert defintion: resource: {category}/{type} metric: {metric} numRules: {alert['numRules']}") + +if __name__ == "__main__": + main() diff --git a/tooling/query-metrics-alerts/provider_list.json b/tooling/query-metrics-alerts/provider_list.json new file mode 100644 index 000000000..4389be374 --- /dev/null +++ b/tooling/query-metrics-alerts/provider_list.json @@ -0,0 +1,156566 @@ +[ + { + "authorizations": [ + { + "applicationId": "a6aa9161-5291-40bb-8c5c-923b567bee3b", + "roleDefinitionId": "070ab87f-0efc-4423-b18b-756f3bdb0236" + }, + { + "applicationId": "e406a681-f3d4-42a8-90b6-c2b029497af1" + }, + { + "applicationId": "1609d3a1-0db2-4818-b854-fe1614f0718a" + }, + { + "applicationId": "05d97c70-cb7c-4e66-8138-d5ca7c59d206", + "roleDefinitionId": "3185b772-d635-455a-8d37-0a41169c8cf9" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Storage", + "namespace": "Microsoft.Storage", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "Registered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-09-01", + "2022-05-01", + "2021-09-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-01-01", + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "North Central US", + "South Central US", + "Central US", + "North Europe", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada East", + "Canada Central", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "storageAccounts/storageTaskAssignments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-09-01", + "2022-05-01", + "2021-09-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-02-01", + "2021-01-01", + "2020-08-01-preview", + "2019-06-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-01-01", + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "North Central US", + "South Central US", + "Central US", + "North Europe", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada East", + "Canada Central", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "storageAccounts/encryptionScopes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-09-01", + "2022-05-01", + "2021-09-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-02-01", + "2021-01-01", + "2020-08-01-preview", + "2019-06-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-01-01", + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "North Central US", + "South Central US", + "Central US", + "North Europe", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada East", + "Canada Central", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "deletedAccounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-09-01", + "2022-05-01", + "2021-09-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-02-01", + "2021-01-01", + "2020-08-01-preview", + "2019-06-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-01-01", + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "North Central US", + "South Central US", + "Central US", + "North Europe", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada East", + "Canada Central", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/deletedAccounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-10-01", + "profileVersion": "2019-03-01-hybrid" + }, + { + "apiVersion": "2016-01-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-01-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2017-10-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-01-01", + "2022-09-01", + "2022-05-01", + "2021-09-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-02-01", + "2021-01-01", + "2020-08-01-preview", + "2019-06-01", + "2019-04-01", + "2018-11-01", + "2018-07-01", + "2018-03-01-preview", + "2018-02-01", + "2017-10-01", + "2017-06-01", + "2016-12-01", + "2016-05-01", + "2016-01-01", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-01-01", + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "North Central US", + "South Central US", + "Central US", + "North Europe", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada East", + "Canada Central", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "storageAccounts", + "zoneMappings": [ + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Korea Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Central US", + "zones": [] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Poland Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Qatar Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Sweden Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Switzerland North", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UAE North", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US", + "zones": [] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Italy North", + "zones": [ + "2", + "1", + "3" + ] + } + ] + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-09-01", + "2022-05-01", + "2021-09-01" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-01-01", + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "North Central US", + "South Central US", + "Central US", + "North Europe", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada East", + "Canada Central", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "storageTasks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-10-01", + "profileVersion": "2019-03-01-hybrid" + }, + { + "apiVersion": "2016-01-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-01-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2017-10-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-01-01", + "2022-09-01", + "2022-05-01", + "2021-09-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-02-01", + "2021-01-01", + "2020-08-01-preview", + "2019-06-01", + "2019-04-01", + "2018-11-01", + "2018-07-01", + "2018-03-01-preview", + "2018-02-01", + "2017-10-01", + "2017-06-01", + "2016-12-01", + "2016-05-01", + "2016-01-01", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-01-01", + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "North Central US", + "South Central US", + "Central US", + "North Europe", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada East", + "Canada Central", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-01-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-01-01", + "profileVersion": "2018-03-01-hybrid" + } + ], + "apiVersions": [ + "2023-01-01", + "2022-09-01", + "2022-05-01", + "2021-09-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-02-01", + "2021-01-01", + "2020-08-01-preview", + "2019-06-01", + "2019-04-01", + "2018-11-01", + "2018-07-01", + "2018-03-01-preview", + "2018-02-01", + "2017-10-01", + "2017-06-01", + "2016-12-01", + "2016-05-01", + "2016-01-01", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-01-01", + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "North Central US", + "South Central US", + "Central US", + "North Europe", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada East", + "Canada Central", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/asyncoperations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-10-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-01-01", + "2022-09-01", + "2022-05-01", + "2021-09-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-02-01", + "2021-01-01", + "2020-08-01-preview", + "2019-06-01", + "2019-04-01", + "2018-11-01", + "2018-07-01", + "2018-03-01-preview", + "2018-02-01", + "2017-10-01", + "2017-06-01", + "2016-12-01", + "2016-05-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-01-01", + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "North Central US", + "South Central US", + "Central US", + "North Europe", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada East", + "Canada Central", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "storageAccounts/listAccountSas", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-10-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-01-01", + "2022-09-01", + "2022-05-01", + "2021-09-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-02-01", + "2021-01-01", + "2020-08-01-preview", + "2019-06-01", + "2019-04-01", + "2018-11-01", + "2018-07-01", + "2018-03-01-preview", + "2018-02-01", + "2017-10-01", + "2017-06-01", + "2016-12-01", + "2016-05-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-01-01", + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "North Central US", + "South Central US", + "Central US", + "North Europe", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada East", + "Canada Central", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "storageAccounts/listServiceSas", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-10-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2023-01-01", + "2022-09-01", + "2022-05-01", + "2021-09-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-02-01", + "2021-01-01", + "2020-08-01-preview", + "2019-06-01", + "2019-04-01", + "2018-11-01", + "2018-07-01", + "2018-03-01-preview", + "2018-02-01", + "2017-10-01", + "2017-06-01", + "2016-12-01", + "2016-05-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-01-01", + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "North Central US", + "South Central US", + "Central US", + "North Europe", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada East", + "Canada Central", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "storageAccounts/blobServices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-10-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2023-01-01", + "2022-09-01", + "2022-05-01", + "2021-09-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-02-01", + "2021-01-01", + "2020-08-01-preview", + "2019-06-01", + "2019-04-01", + "2018-11-01", + "2018-07-01", + "2018-03-01-preview", + "2018-02-01", + "2017-10-01", + "2017-06-01", + "2016-12-01", + "2016-05-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-01-01", + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "North Central US", + "South Central US", + "Central US", + "North Europe", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada East", + "Canada Central", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "storageAccounts/tableServices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-10-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2023-01-01", + "2022-09-01", + "2022-05-01", + "2021-09-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-02-01", + "2021-01-01", + "2020-08-01-preview", + "2019-06-01", + "2019-04-01", + "2018-11-01", + "2018-07-01", + "2018-03-01-preview", + "2018-02-01", + "2017-10-01", + "2017-06-01", + "2016-12-01", + "2016-05-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-01-01", + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "North Central US", + "South Central US", + "Central US", + "North Europe", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada East", + "Canada Central", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "storageAccounts/queueServices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-09-01", + "2022-05-01", + "2021-09-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-02-01", + "2021-01-01", + "2020-08-01-preview", + "2019-06-01", + "2019-04-01", + "2018-11-01", + "2018-07-01", + "2018-03-01-preview", + "2018-02-01", + "2017-10-01", + "2017-06-01", + "2016-12-01", + "2016-05-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-01-01", + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "North Central US", + "South Central US", + "Central US", + "North Europe", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada East", + "Canada Central", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "storageAccounts/fileServices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-10-01", + "profileVersion": "2019-03-01-hybrid" + }, + { + "apiVersion": "2016-01-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-01-01", + "profileVersion": "2018-03-01-hybrid" + } + ], + "apiVersions": [ + "2023-01-01", + "2022-09-01", + "2022-05-01", + "2021-09-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-02-01", + "2021-01-01", + "2020-08-01-preview", + "2019-06-01", + "2019-04-01", + "2018-11-01", + "2018-07-01", + "2018-03-01-preview", + "2018-02-01", + "2017-10-01", + "2017-06-01", + "2016-12-01", + "2016-07-01", + "2016-01-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-01-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-01-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-01-01", + "profileVersion": "2018-03-01-hybrid" + } + ], + "apiVersions": [ + "2023-01-01", + "2022-09-01", + "2022-05-01", + "2021-09-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-02-01", + "2021-01-01", + "2020-08-01-preview", + "2019-06-01", + "2019-04-01", + "2018-11-01", + "2018-07-01", + "2018-03-01-preview", + "2018-02-01", + "2017-10-01", + "2017-06-01", + "2016-12-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-01-01", + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "North Central US", + "South Central US", + "Central US", + "North Europe", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada East", + "Canada Central", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/usages", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-09-01", + "2022-05-01", + "2021-09-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-02-01", + "2021-01-01", + "2020-08-01-preview", + "2019-06-01", + "2019-04-01", + "2018-11-01", + "2018-07-01", + "2018-03-01-preview", + "2018-02-01", + "2017-10-01", + "2017-06-01", + "2016-12-01", + "2016-07-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-01-01", + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "North Central US", + "South Central US", + "Central US", + "North Europe", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada East", + "Canada Central", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/deleteVirtualNetworkOrSubnets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-10-01", + "profileVersion": "2019-03-01-hybrid" + }, + { + "apiVersion": "2016-01-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-01-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2017-10-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-01-01", + "2022-09-01", + "2022-05-01", + "2021-09-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-02-01", + "2021-01-01", + "2020-08-01-preview", + "2019-06-01", + "2019-04-01", + "2018-11-01", + "2018-07-01", + "2018-03-01-preview", + "2018-02-01", + "2017-10-01", + "2017-06-01", + "2016-12-01", + "2016-05-01", + "2016-01-01", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-01-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "usages", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-10-01", + "profileVersion": "2019-03-01-hybrid" + }, + { + "apiVersion": "2016-01-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-01-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2017-10-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-01-01", + "2022-09-01", + "2022-05-01", + "2021-09-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-02-01", + "2021-01-01", + "2020-08-01-preview", + "2019-06-01", + "2019-04-01", + "2018-11-01", + "2018-07-01", + "2018-03-01-preview", + "2018-02-01", + "2017-10-01", + "2017-06-01", + "2016-12-01", + "2016-05-01", + "2016-01-01", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-01-01", + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "North Central US", + "South Central US", + "Central US", + "North Europe", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada East", + "Canada Central", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-09-01", + "2022-05-01", + "2021-09-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-02-01", + "2021-01-01", + "2020-08-01-preview", + "2019-06-01", + "2019-04-01", + "2018-11-01", + "2018-07-01", + "2018-02-01", + "2017-10-01", + "2017-06-01", + "2016-12-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-01-01", + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "North Central US", + "South Central US", + "Central US", + "North Europe", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada East", + "Canada Central", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West US", + "East US 2 (Stage)", + "West Europe", + "North Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "North Central US", + "South Central US", + "East US 2", + "Central US", + "Australia East", + "Australia Southeast", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada East", + "Canada Central", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "storageAccounts/services", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West US", + "East US 2 (Stage)", + "West Europe", + "North Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "North Central US", + "South Central US", + "East US 2", + "Central US", + "Australia East", + "Australia Southeast", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada East", + "Canada Central", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "storageAccounts/services/metricDefinitions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-09-01", + "2022-05-01", + "2021-09-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-01-01", + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "North Central US", + "South Central US", + "Central US", + "North Europe", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada East", + "Canada Central", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/notifyNetworkSecurityPerimeterUpdatesAvailable", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "408992c7-2af6-4ff1-92e3-65b73d2b5092", + "roleDefinitionId": "20FA3191-87CF-4C3D-9510-74CCB594A310" + }, + { + "applicationId": "880da380-985e-4198-81b9-e05b1cc53158", + "roleDefinitionId": "d2e67903-baaa-4696-926b-61ab86235aaf" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Search", + "namespace": "Microsoft.Search", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "Registered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01", + "2021-06-06-Preview", + "2021-04-01-Preview", + "2020-08-01-Preview", + "2020-08-01", + "2020-03-13", + "2019-10-01-Preview", + "2015-08-19", + "2015-02-28", + "2014-07-31-Preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-09-01", + "locationMappings": null, + "locations": [ + "Germany North", + "Qatar Central", + "Poland Central", + "Italy North", + "Sweden Central", + "UK West", + "Korea South", + "Canada East", + "Jio India West", + "West US 3", + "Germany West Central", + "Norway East", + "Switzerland West", + "Switzerland North", + "West US", + "West US 2", + "East US", + "East US 2", + "North Europe", + "West Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Central US", + "Japan West", + "Japan East", + "Korea Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Central India", + "West Central US", + "Canada Central", + "UK South", + "France Central", + "South Africa North", + "UAE North" + ], + "properties": null, + "resourceType": "searchServices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2015-02-28", + "2014-07-31-Preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkServiceNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01", + "2021-06-06-Preview", + "2021-04-01-Preview", + "2020-08-01-Preview", + "2020-08-01", + "2020-03-13", + "2019-10-01-Preview", + "2015-08-19" + ], + "capabilities": "None", + "defaultApiVersion": "2022-09-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01", + "2021-06-06-Preview", + "2021-04-01-Preview", + "2020-08-01-Preview", + "2020-08-01", + "2020-03-13", + "2019-10-01-Preview", + "2015-08-19" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Germany North", + "Qatar Central", + "Poland Central", + "Italy North", + "Sweden Central", + "UK West", + "Korea South", + "Canada East", + "Jio India West", + "West US 3", + "Germany West Central", + "Norway East", + "Switzerland West", + "Switzerland North", + "West US", + "West US 2", + "East US", + "East US 2", + "North Europe", + "West Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Central US", + "Japan West", + "Japan East", + "Korea Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Central India", + "West Central US", + "Canada Central", + "UK South", + "France Central", + "South Africa North", + "UAE North" + ], + "properties": null, + "resourceType": "resourceHealthMetadata", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01", + "2021-06-06-Preview", + "2021-04-01-Preview", + "2020-08-01-Preview", + "2020-08-01", + "2020-03-13", + "2019-10-01-Preview", + "2015-08-19", + "2015-02-28" + ], + "capabilities": "None", + "defaultApiVersion": "2022-09-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-06-06-Preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-06-06-Preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Germany North", + "Central US EUAP", + "East US 2 EUAP", + "Qatar Central", + "Poland Central", + "Italy North", + "Sweden Central", + "UK West", + "Korea South", + "Canada East", + "Jio India West", + "West US 3", + "Germany West Central", + "Norway East", + "Switzerland West", + "Switzerland North", + "West US", + "West US 2", + "East US", + "East US 2", + "North Europe", + "West Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Central US", + "Japan West", + "Japan East", + "Korea Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Central India", + "West Central US", + "Canada Central", + "UK South", + "France Central", + "South Africa North", + "UAE North" + ], + "properties": null, + "resourceType": "locations/notifyNetworkSecurityPerimeterUpdatesAvailable", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-06-06-Preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "East US 2", + "West US 2", + "South Central US", + "East US", + "West US" + ], + "properties": null, + "resourceType": "locations/operationResults", + "zoneMappings": null + } + ] + }, + { + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.ManagedIdentity", + "namespace": "Microsoft.ManagedIdentity", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "Registered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-31", + "2022-01-31-PREVIEW", + "2021-09-30-PREVIEW", + "2018-11-30", + "2015-08-31-PREVIEW" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": "2023-01-31", + "locationMappings": null, + "locations": [ + "Global", + "Asia", + "Australia", + "Brazil", + "Canada", + "Europe", + "France", + "Germany", + "India", + "Japan", + "Korea", + "Norway", + "South Africa", + "Switzerland", + "UAE", + "UK", + "United States", + "Singapore", + "South Africa North", + "South Africa West", + "UAE North", + "Australia Central", + "Australia East", + "Australia Southeast", + "Canada Central", + "Canada East", + "Brazil South", + "Central India", + "West India", + "Jio India West", + "South India", + "Japan West", + "Japan East", + "East Asia", + "Southeast Asia", + "Italy North", + "Korea Central", + "Korea South", + "North Europe", + "Poland Central", + "Qatar Central", + "West Europe", + "UK West", + "UK South", + "Sweden Central", + "Switzerland West", + "Switzerland North", + "Germany West Central", + "Central US", + "North Central US", + "East US", + "East US 2", + "South Central US", + "West US", + "West US 2", + "West US 3", + "West Central US", + "France Central", + "Norway East" + ], + "properties": null, + "resourceType": "Identities", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-31", + "2022-01-31-PREVIEW", + "2021-09-30-PREVIEW", + "2018-11-30", + "2015-08-31-PREVIEW" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-01-31", + "locationMappings": null, + "locations": [ + "South Africa North", + "South Africa West", + "UAE North", + "Australia Central", + "Australia East", + "Australia Southeast", + "Canada Central", + "Canada East", + "Brazil South", + "Central India", + "West India", + "Jio India West", + "South India", + "Japan West", + "Japan East", + "East Asia", + "Italy North", + "Southeast Asia", + "Korea Central", + "Korea South", + "North Europe", + "Poland Central", + "Qatar Central", + "West Europe", + "UK West", + "UK South", + "Sweden Central", + "Switzerland West", + "Switzerland North", + "Germany West Central", + "Central US", + "North Central US", + "East US", + "East US 2", + "South Central US", + "West US", + "West US 2", + "West US 3", + "West Central US", + "France Central", + "Norway East" + ], + "properties": null, + "resourceType": "userAssignedIdentities", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-31", + "2022-01-31-PREVIEW", + "2021-09-30-PREVIEW", + "2018-11-30", + "2015-08-31-PREVIEW" + ], + "capabilities": "None", + "defaultApiVersion": "2023-01-31", + "locationMappings": null, + "locations": [ + "South Africa North", + "South Africa West", + "UAE North", + "Australia Central", + "Australia East", + "Australia Southeast", + "Canada Central", + "Canada East", + "Brazil South", + "Central India", + "West India", + "Jio India West", + "South India", + "Japan West", + "Japan East", + "East Asia", + "Italy North", + "Southeast Asia", + "Korea Central", + "Korea South", + "North Europe", + "Poland Central", + "Qatar Central", + "West Europe", + "UK West", + "UK South", + "Sweden Central", + "Switzerland West", + "Switzerland North", + "Germany West Central", + "Central US", + "North Central US", + "East US", + "East US 2", + "South Central US", + "West US", + "West US 2", + "West US 3", + "West Central US", + "France Central", + "Norway East" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-31", + "2022-01-31-PREVIEW" + ], + "capabilities": "None", + "defaultApiVersion": "2023-01-31", + "locationMappings": null, + "locations": [ + "South Africa North", + "South Africa West", + "UAE North", + "Australia Central", + "Australia East", + "Australia Southeast", + "Canada Central", + "Canada East", + "Brazil South", + "Central India", + "West India", + "Jio India West", + "South India", + "Japan West", + "Japan East", + "East Asia", + "Italy North", + "Southeast Asia", + "Korea Central", + "Korea South", + "North Europe", + "Poland Central", + "Qatar Central", + "West Europe", + "UK West", + "UK South", + "Sweden Central", + "Switzerland West", + "Switzerland North", + "Germany West Central", + "Central US", + "North Central US", + "East US", + "East US 2", + "South Central US", + "West US", + "West US 2", + "West US 3", + "West Central US", + "France Central", + "Norway East" + ], + "properties": null, + "resourceType": "userAssignedIdentities/federatedIdentityCredentials", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "d2a0a418-0aac-4541-82b2-b3142c89da77", + "roleDefinitionId": "86695298-2eb9-48a7-9ec3-2fdb38b6878b" + }, + { + "applicationId": "ca7f3f0b-7d91-482c-8e09-c5d840d0eac5", + "roleDefinitionId": "5d5a2e56-9835-44aa-93db-d2f19e155438" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.OperationalInsights", + "namespace": "Microsoft.OperationalInsights", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "Registered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01", + "2021-12-01-preview", + "2021-06-01", + "2021-03-01-privatepreview", + "2020-10-01", + "2020-08-01", + "2020-03-01-preview", + "2017-04-26-preview", + "2017-03-15-preview", + "2017-03-03-preview", + "2017-01-01-preview", + "2015-11-01-preview", + "2015-03-20" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-10-01", + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Southeast Asia", + "Australia Southeast", + "West Central US", + "Japan East", + "UK South", + "Central India", + "Canada Central", + "West US 2", + "Australia Central", + "Australia East", + "France Central", + "Korea Central", + "North Europe", + "Central US", + "East Asia", + "East US 2", + "South Central US", + "North Central US", + "West US", + "UK West", + "South Africa North", + "Brazil South", + "Switzerland North", + "Switzerland West", + "Germany West Central", + "Australia Central 2", + "UAE Central", + "UAE North", + "Japan West", + "Brazil Southeast", + "Norway East", + "Norway West", + "France South", + "South India", + "Korea South", + "Jio India Central", + "Jio India West", + "Qatar Central", + "Canada East", + "West US 3", + "Sweden Central", + "South Africa West", + "Germany North", + "Poland Central", + "Israel Central", + "Italy North" + ], + "properties": null, + "resourceType": "workspaces", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-09-01-preview", + "2019-09-01" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "East US", + "South Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "West US 2", + "UK South", + "Canada Central", + "Central India", + "Japan East", + "Australia East", + "Korea Central", + "France Central", + "Central US", + "East US 2", + "East Asia", + "West US", + "South Africa North", + "North Central US", + "Brazil South", + "Switzerland North", + "Norway East", + "Australia Southeast", + "Australia Central 2", + "Germany West Central", + "Switzerland West", + "UAE Central", + "UK West", + "Brazil Southeast", + "Japan West", + "UAE North", + "Australia Central", + "France South", + "South India", + "Korea South", + "Jio India Central", + "Jio India West", + "Qatar Central", + "Canada East", + "West US 3", + "Sweden Central" + ], + "properties": null, + "resourceType": "querypacks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-10-01", + "2020-08-01", + "2020-03-01-preview", + "2019-08-01-preview", + "2017-04-26-preview", + "2017-03-15-preview", + "2017-03-03-preview", + "2017-01-01-preview", + "2015-11-01-preview", + "2015-03-20" + ], + "capabilities": "None", + "defaultApiVersion": "2020-08-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview", + "2022-10-01", + "2022-09-01-privatepreview", + "2021-12-01-preview", + "2020-10-01", + "2020-08-01", + "2020-03-01-preview", + "2019-08-01-preview", + "2017-04-26-preview", + "2017-03-15-preview", + "2017-03-03-preview", + "2017-01-01-preview", + "2015-11-01-preview", + "2015-03-20" + ], + "capabilities": "None", + "defaultApiVersion": "2022-10-01", + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Southeast Asia", + "Australia Southeast", + "West Central US", + "Japan East", + "UK South", + "Central India", + "Canada Central", + "West US 2", + "Australia Central", + "Australia East", + "France Central", + "Korea Central", + "North Europe", + "Central US", + "East Asia", + "East US 2", + "South Central US", + "North Central US", + "West US", + "UK West", + "South Africa North", + "Brazil South", + "Switzerland North", + "Switzerland West", + "Germany West Central", + "Australia Central 2", + "UAE Central", + "UAE North", + "Japan West", + "Brazil Southeast", + "Norway East", + "Norway West", + "France South", + "South India", + "Korea South", + "Jio India Central", + "Jio India West", + "Qatar Central", + "Canada East", + "West US 3", + "Sweden Central", + "South Africa West", + "Germany North", + "Poland Central", + "Israel Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/operationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-03-01-preview", + "2019-08-01-preview", + "2015-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2020-03-01-preview", + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Southeast Asia", + "Australia Southeast", + "West Central US", + "Japan East", + "UK South", + "Central India", + "Canada Central", + "West US 2", + "Australia Central", + "Australia East", + "France Central", + "Korea Central", + "North Europe", + "Central US", + "East Asia", + "East US 2", + "South Central US", + "North Central US", + "West US", + "UK West", + "South Africa North", + "Brazil South", + "Switzerland North", + "Switzerland West", + "Germany West Central", + "Australia Central 2", + "UAE Central", + "UAE North", + "Japan West", + "Brazil Southeast", + "Norway East", + "Norway West", + "France South", + "South India", + "Korea South", + "Jio India Central", + "Jio India West", + "Qatar Central", + "Canada East", + "West US 3", + "Sweden Central", + "South Africa West", + "Germany North", + "Poland Central", + "Israel Central", + "Italy North" + ], + "properties": null, + "resourceType": "workspaces/scopedPrivateLinkProxies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-08-01", + "2020-03-01-preview", + "2017-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "workspaces/api", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-10-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "workspaces/query", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-10-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "workspaces/metadata", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01", + "2020-10-01", + "2020-08-01", + "2017-04-26-preview", + "2015-03-20" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "workspaces/purge", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01", + "2020-08-01", + "2017-04-26-preview", + "2015-03-20" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "workspaces/operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-08-01", + "2020-03-01-preview", + "2015-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2020-08-01", + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Southeast Asia", + "Australia Southeast", + "West Central US", + "Japan East", + "UK South", + "Central India", + "Canada Central", + "West US 2", + "Australia Central", + "Australia East", + "France Central", + "Korea Central", + "North Europe", + "Central US", + "East Asia", + "East US 2", + "South Central US", + "North Central US", + "West US", + "UK West", + "South Africa North", + "Brazil South", + "Switzerland North", + "Switzerland West", + "Germany West Central", + "Australia Central 2", + "UAE Central", + "UAE North", + "Japan West", + "Brazil Southeast", + "Norway East", + "Norway West", + "France South", + "South India", + "Korea South", + "Jio India Central", + "Jio India West", + "Qatar Central", + "Canada East", + "West US 3", + "Sweden Central", + "South Africa West", + "Germany North", + "Poland Central", + "Israel Central", + "Italy North" + ], + "properties": null, + "resourceType": "workspaces/dataSources", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-08-01", + "2020-03-01-preview", + "2019-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2020-08-01", + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Southeast Asia", + "Australia Southeast", + "West Central US", + "Japan East", + "UK South", + "Central India", + "Canada Central", + "West US 2", + "Australia Central", + "Australia East", + "France Central", + "Korea Central", + "North Europe", + "Central US", + "East Asia", + "East US 2", + "South Central US", + "North Central US", + "West US", + "UK West", + "South Africa North", + "Brazil South", + "Switzerland North", + "Switzerland West", + "Germany West Central", + "Australia Central 2", + "UAE Central", + "UAE North", + "Japan West", + "Brazil Southeast", + "Norway East", + "Norway West", + "France South", + "South India", + "Korea South", + "Jio India Central", + "Jio India West", + "Qatar Central", + "Canada East", + "West US 3", + "Sweden Central", + "South Africa West", + "Germany North", + "Poland Central", + "Israel Central", + "Italy North" + ], + "properties": null, + "resourceType": "workspaces/linkedStorageAccounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01", + "2021-12-01-preview", + "2020-08-01", + "2020-03-01-preview", + "2017-04-26-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Southeast Asia", + "Australia Southeast", + "West Central US", + "Japan East", + "UK South", + "Central India", + "Canada Central", + "West US 2", + "Australia East", + "Australia Central", + "France Central", + "Korea Central", + "North Europe", + "Central US", + "East Asia", + "East US 2", + "South Central US", + "North Central US", + "West US", + "UK West", + "South Africa North", + "Brazil South", + "Switzerland North", + "Switzerland West", + "Germany West Central", + "Australia Central 2", + "UAE Central", + "UAE North", + "Japan West", + "Brazil Southeast", + "Norway East", + "Norway West", + "France South", + "South India", + "Korea South", + "Jio India Central", + "Jio India West", + "Qatar Central", + "Canada East", + "West US 3", + "Sweden Central", + "South Africa West", + "Germany North", + "Poland Central", + "Israel Central", + "Italy North" + ], + "properties": null, + "resourceType": "workspaces/tables", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-08-01", + "2020-03-01-preview", + "2017-04-26-preview", + "2017-03-15-preview", + "2017-03-03-preview", + "2017-01-01-preview", + "2015-11-01-preview", + "2015-03-20" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Southeast Asia", + "Australia Southeast", + "West Central US", + "Japan East", + "UK South", + "Central India", + "Canada Central", + "West US 2", + "Australia East", + "Australia Central", + "France Central", + "Korea Central", + "North Europe", + "Central US", + "East Asia", + "East US 2", + "South Central US", + "North Central US", + "West US", + "UK West", + "South Africa North", + "Brazil South", + "Switzerland North", + "Switzerland West", + "Germany West Central", + "Australia Central 2", + "UAE Central", + "UAE North", + "Japan West", + "Brazil Southeast", + "Norway East", + "Norway West", + "France South", + "South India", + "Korea South", + "Jio India Central", + "Jio India West", + "Qatar Central", + "Canada East", + "West US 3", + "Sweden Central", + "South Africa West", + "Germany North", + "Poland Central", + "Israel Central", + "Italy North" + ], + "properties": null, + "resourceType": "workspaces/storageInsightConfigs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-08-01", + "2020-03-01-preview", + "2014-10-10" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "storageInsightConfigs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-08-01", + "2020-03-01-preview", + "2019-08-01-preview", + "2015-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2020-08-01", + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Southeast Asia", + "Australia Southeast", + "West Central US", + "Japan East", + "UK South", + "Central India", + "Canada Central", + "West US 2", + "Australia Central", + "Australia East", + "France Central", + "Korea Central", + "North Europe", + "Central US", + "East Asia", + "East US 2", + "South Central US", + "North Central US", + "West US", + "UK West", + "South Africa North", + "Brazil South", + "Switzerland North", + "Switzerland West", + "Germany West Central", + "Australia Central 2", + "UAE Central", + "UAE North", + "Japan West", + "Brazil Southeast", + "Norway East", + "Norway West", + "France South", + "South India", + "Korea South", + "Jio India Central", + "Jio India West", + "Qatar Central", + "Canada East", + "West US 3", + "Sweden Central", + "South Africa West", + "Germany North", + "Poland Central", + "Israel Central", + "Italy North" + ], + "properties": null, + "resourceType": "workspaces/linkedServices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-03-01-preview", + "2015-03-20" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US" + ], + "properties": null, + "resourceType": "linkTargets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01", + "2021-12-01-preview", + "2020-10-01", + "2020-08-01", + "2020-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2022-10-01", + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Southeast Asia", + "Australia Southeast", + "West Central US", + "Japan East", + "UK South", + "Central India", + "Canada Central", + "West US 2", + "Australia Central", + "Australia East", + "France Central", + "Korea Central", + "North Europe", + "Central US", + "East Asia", + "East US 2", + "South Central US", + "North Central US", + "West US", + "UK West", + "South Africa North", + "Brazil South", + "Switzerland North", + "Switzerland West", + "Germany West Central", + "Australia Central 2", + "UAE Central", + "UAE North", + "Japan West", + "Brazil Southeast", + "Norway East", + "Norway West", + "France South", + "South India", + "Korea South", + "Jio India Central", + "Jio India West", + "Qatar Central", + "Canada East", + "West US 3", + "Sweden Central", + "South Africa West", + "Germany North", + "Poland Central", + "Israel Central", + "Italy North" + ], + "properties": null, + "resourceType": "deletedWorkspaces", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01", + "2021-12-01-preview", + "2020-10-01", + "2020-08-01", + "2020-03-01-preview", + "2015-11-01-preview", + "2014-11-10" + ], + "capabilities": "None", + "defaultApiVersion": "2020-08-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-06-01", + "2020-10-01", + "2020-08-01", + "2020-03-01-preview", + "2019-08-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2021-06-01", + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Southeast Asia", + "Australia Southeast", + "West Central US", + "Japan East", + "UK South", + "Central India", + "Canada Central", + "West US 2", + "Australia Central", + "Australia East", + "France Central", + "Korea Central", + "North Europe", + "Central US", + "East Asia", + "East US 2", + "South Central US", + "North Central US", + "West US", + "UK West", + "South Africa North", + "Switzerland North", + "Switzerland West", + "Germany West Central", + "Australia Central 2", + "UAE Central", + "Brazil South", + "UAE North", + "Japan West", + "Brazil Southeast", + "Norway East", + "Norway West", + "France South", + "South India", + "Korea South", + "Jio India Central", + "Jio India West", + "Qatar Central", + "Canada East", + "West US 3", + "Sweden Central", + "South Africa West", + "Germany North", + "Poland Central", + "Israel Central", + "Italy North" + ], + "properties": null, + "resourceType": "clusters", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-08-01", + "2020-03-01-preview", + "2019-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2020-08-01", + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Southeast Asia", + "Australia Southeast", + "West Central US", + "Japan East", + "UK South", + "Central India", + "Canada Central", + "West US 2", + "Australia Central", + "Australia East", + "France Central", + "Korea Central", + "North Europe", + "Central US", + "East Asia", + "East US 2", + "South Central US", + "North Central US", + "West US", + "UK West", + "South Africa North", + "Brazil South", + "Switzerland North", + "Switzerland West", + "Germany West Central", + "Australia Central 2", + "UAE Central", + "UAE North", + "Japan West", + "Brazil Southeast", + "Norway East", + "Norway West", + "France South", + "South India", + "Korea South", + "Jio India Central", + "Jio India West", + "Qatar Central", + "Canada East", + "West US 3", + "Sweden Central", + "South Africa West", + "Germany North", + "Poland Central", + "Israel Central", + "Italy North" + ], + "properties": null, + "resourceType": "workspaces/dataExports", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-10-01" + ], + "capabilities": "None", + "defaultApiVersion": "2021-10-01", + "locationMappings": null, + "locations": [ + "East US 2 EUAP", + "East US", + "East US 2", + "North Central US", + "South Central US", + "West US", + "West US 2" + ], + "properties": null, + "resourceType": "locations/notifyNetworkSecurityPerimeterUpdatesAvailable", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "abfa0a7c-a6b6-4736-8310-5855508787cd", + "managedByRoleDefinitionId": "c29dde9f-14fa-40fb-9fe8-5a07be183f1e", + "roleDefinitionId": "f47ed98b-b063-4a5b-9e10-4b9b44fa7735" + }, + { + "applicationId": "7e3bc4fd-85a3-4192-b177-5b8bfc87f42c", + "roleDefinitionId": "39a74f72-b40f-4bdc-b639-562fe2260bf0" + }, + { + "applicationId": "3734c1a4-2bed-4998-a37a-ff1a9e7bf019", + "roleDefinitionId": "5c779a4f-5cb2-4547-8c41-478d9be8ba90" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Web", + "namespace": "Microsoft.Web", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "Registered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-03-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-03-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2016-03-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-11-01", + "2018-02-01", + "2016-03-01", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01", + "2014-11-01", + "2014-06-01", + "2014-04-01-preview", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "Korea Central", + "Korea South", + "West US", + "East US", + "Japan West", + "Japan East", + "East Asia", + "East US 2", + "North Central US", + "South Central US", + "Brazil South", + "Australia East", + "Australia Southeast", + "West India", + "Central India", + "South India", + "Canada Central", + "Canada East", + "West Central US", + "UK West", + "UK South", + "West US 2", + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "East Asia (Stage)", + "Central US (Stage)", + "North Central US (Stage)", + "France Central", + "South Africa North", + "West US 3", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "publishingUsers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-03-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-03-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2016-03-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-11-01", + "2018-02-01", + "2016-03-01", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01", + "2014-11-01", + "2014-06-01", + "2014-04-01-preview", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "Korea Central", + "Korea South", + "West US", + "East US", + "Japan West", + "Japan East", + "East Asia", + "East US 2", + "North Central US", + "South Central US", + "Brazil South", + "Australia East", + "Australia Southeast", + "West India", + "Central India", + "South India", + "Canada Central", + "Canada East", + "West Central US", + "UK West", + "UK South", + "West US 2", + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "East Asia (Stage)", + "Central US (Stage)", + "North Central US (Stage)", + "France Central", + "South Africa North", + "West US 3", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "ishostnameavailable", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-03-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-03-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2016-03-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-11-01", + "2018-02-01", + "2016-03-01", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01", + "2014-11-01", + "2014-06-01", + "2014-04-01-preview", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "Korea Central", + "Korea South", + "West US", + "East US", + "Japan West", + "Japan East", + "East Asia", + "East US 2", + "North Central US", + "South Central US", + "Brazil South", + "Australia East", + "Australia Southeast", + "West India", + "Central India", + "South India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "East Asia (Stage)", + "Central US (Stage)", + "North Central US (Stage)", + "France Central", + "South Africa North", + "West US 3", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "validate", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-03-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-03-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2016-03-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-11-01", + "2018-02-01", + "2016-03-01", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01", + "2014-11-01", + "2014-06-01", + "2014-04-01-preview", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "Korea Central", + "Korea South", + "West US", + "East US", + "Japan West", + "Japan East", + "East Asia", + "East US 2", + "North Central US", + "South Central US", + "Brazil South", + "Australia East", + "Australia Southeast", + "West India", + "Central India", + "South India", + "Canada Central", + "Canada East", + "West Central US", + "UK West", + "UK South", + "West US 2", + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "East Asia (Stage)", + "Central US (Stage)", + "North Central US (Stage)", + "France Central", + "South Africa North", + "West US 3", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "isusernameavailable", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "Central US (Stage)", + "South Central US", + "South Africa North", + "West US", + "Australia East", + "Brazil South", + "Southeast Asia", + "Central US", + "Japan West", + "Central India", + "UK South", + "Canada East", + "Korea Central", + "France Central", + "North Europe", + "West US 2", + "East US", + "West India", + "East US 2", + "Australia Central", + "Germany West Central", + "Norway East", + "UAE North", + "Sweden Central", + "Qatar Central", + "Switzerland North", + "North Central US", + "UK West", + "Australia Southeast", + "Korea South", + "Canada Central", + "West Europe", + "South India", + "West Central US", + "East Asia (Stage)", + "North Central US (Stage)", + "West US 3", + "East Asia", + "Japan East", + "Jio India West", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "generateGithubAccessTokenForAppserviceCLI", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-03-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-03-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2016-03-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-11-01", + "2018-02-01", + "2016-03-01", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01", + "2014-11-01", + "2014-06-01", + "2014-04-01-preview", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "Korea Central", + "Korea South", + "West US", + "East US", + "Japan West", + "Japan East", + "East Asia", + "East US 2", + "North Central US", + "South Central US", + "Brazil South", + "Australia East", + "Australia Southeast", + "West India", + "Central India", + "South India", + "Canada Central", + "Canada East", + "West Central US", + "UK West", + "UK South", + "West US 2", + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "East Asia (Stage)", + "Central US (Stage)", + "North Central US (Stage)", + "France Central", + "South Africa North", + "West US 3", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "sourceControls", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-03-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-03-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2016-03-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-11-01", + "2018-02-01", + "2016-03-01", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01", + "2014-11-01", + "2014-06-01", + "2014-04-01-preview", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "Korea Central", + "Korea South", + "West US", + "East US", + "Japan West", + "Japan East", + "East Asia", + "East US 2", + "North Central US", + "South Central US", + "Brazil South", + "Australia East", + "Australia Southeast", + "West India", + "Central India", + "South India", + "Canada Central", + "Canada East", + "West Central US", + "UK West", + "UK South", + "West US 2", + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "East Asia (Stage)", + "Central US (Stage)", + "North Central US (Stage)", + "France Central", + "South Africa North", + "West US 3", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "availableStacks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "Korea Central", + "Korea South", + "West US", + "East US", + "Japan West", + "Japan East", + "East Asia", + "East US 2", + "North Central US", + "South Central US", + "Brazil South", + "Australia East", + "Australia Southeast", + "West India", + "Central India", + "South India", + "Canada Central", + "Canada East", + "West Central US", + "UK West", + "UK South", + "West US 2", + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "East Asia (Stage)", + "Central US (Stage)", + "North Central US (Stage)", + "France Central", + "South Africa North", + "West US 3", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "webAppStacks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "Central US (Stage)", + "South Central US", + "South Africa North", + "East Asia", + "Japan East", + "West US", + "Australia East", + "Brazil South", + "Southeast Asia", + "Central US", + "Japan West", + "Central India", + "UK South", + "Canada East", + "Korea Central", + "France Central", + "North Europe", + "West US 2", + "East US", + "West India", + "East US 2", + "Australia Central", + "Germany West Central", + "Norway East", + "UAE North", + "Sweden Central", + "Qatar Central", + "Switzerland North", + "North Central US", + "UK West", + "Australia Southeast", + "Korea South", + "Canada Central", + "West Europe", + "South India", + "West Central US", + "East Asia (Stage)", + "North Central US (Stage)", + "West US 3", + "Jio India West", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/webAppStacks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "Korea Central", + "Korea South", + "West US", + "East US", + "Japan West", + "Japan East", + "East Asia", + "East US 2", + "North Central US", + "South Central US", + "Brazil South", + "Australia East", + "Australia Southeast", + "West India", + "Central India", + "South India", + "Canada Central", + "Canada East", + "West Central US", + "UK West", + "UK South", + "West US 2", + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "East Asia (Stage)", + "Central US (Stage)", + "North Central US (Stage)", + "France Central", + "South Africa North", + "West US 3", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "functionAppStacks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "Central US (Stage)", + "South Central US", + "South Africa North", + "East Asia", + "Japan East", + "West US", + "Australia East", + "Brazil South", + "Southeast Asia", + "Central US", + "Japan West", + "Central India", + "UK South", + "Canada East", + "Korea Central", + "France Central", + "North Europe", + "West US 2", + "East US", + "West India", + "East US 2", + "Australia Central", + "Germany West Central", + "Norway East", + "UAE North", + "Sweden Central", + "Qatar Central", + "Switzerland North", + "North Central US", + "UK West", + "Australia Southeast", + "Korea South", + "Canada Central", + "West Europe", + "South India", + "West Central US", + "East Asia (Stage)", + "North Central US (Stage)", + "West US 3", + "Jio India West", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/functionAppStacks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-12-01-preview", + "2019-08-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "Central US", + "East US 2", + "West Europe", + "East Asia", + "East Asia (Stage)" + ], + "properties": null, + "resourceType": "staticSites", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-12-01-preview", + "2019-08-01" + ], + "capabilities": "None", + "defaultApiVersion": "2020-06-01", + "locationMappings": null, + "locations": [ + "West US 2", + "Central US", + "East US 2", + "West Europe", + "East Asia", + "East Asia (Stage)" + ], + "properties": null, + "resourceType": "locations/previewStaticSiteWorkflowFile", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01" + ], + "capabilities": "None", + "defaultApiVersion": "2020-12-01", + "locationMappings": null, + "locations": [ + "West US 2", + "Central US", + "East US 2", + "West Europe", + "East Asia", + "East Asia (Stage)" + ], + "properties": null, + "resourceType": "staticSites/userProvidedFunctionApps", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-12-01-preview", + "2019-08-01" + ], + "capabilities": "None", + "defaultApiVersion": "2020-06-01", + "locationMappings": null, + "locations": [ + "West US 2", + "Central US", + "East US 2", + "West Europe", + "East Asia", + "East Asia (Stage)" + ], + "properties": null, + "resourceType": "staticSites/linkedBackends", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-12-01-preview", + "2019-08-01" + ], + "capabilities": "None", + "defaultApiVersion": "2020-06-01", + "locationMappings": null, + "locations": [ + "West US 2", + "Central US", + "East US 2", + "West Europe", + "East Asia", + "East Asia (Stage)" + ], + "properties": null, + "resourceType": "staticSites/builds/linkedBackends", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-12-01-preview", + "2019-08-01" + ], + "capabilities": "None", + "defaultApiVersion": "2020-06-01", + "locationMappings": null, + "locations": [ + "West US 2", + "Central US", + "East US 2", + "West Europe", + "East Asia", + "East Asia (Stage)" + ], + "properties": null, + "resourceType": "staticSites/databaseConnections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-12-01-preview", + "2019-08-01" + ], + "capabilities": "None", + "defaultApiVersion": "2020-06-01", + "locationMappings": null, + "locations": [ + "West US 2", + "Central US", + "East US 2", + "West Europe", + "East Asia", + "East Asia (Stage)" + ], + "properties": null, + "resourceType": "staticSites/builds/databaseConnections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-12-01-preview", + "2019-08-01" + ], + "capabilities": "None", + "defaultApiVersion": "2020-06-01", + "locationMappings": null, + "locations": [ + "West US 2", + "Central US", + "East US 2", + "West Europe", + "East Asia", + "East Asia (Stage)" + ], + "properties": null, + "resourceType": "staticSites/builds", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01" + ], + "capabilities": "None", + "defaultApiVersion": "2020-12-01", + "locationMappings": null, + "locations": [ + "West US 2", + "Central US", + "East US 2", + "West Europe", + "East Asia", + "East Asia (Stage)" + ], + "properties": null, + "resourceType": "staticSites/builds/userProvidedFunctionApps", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East Asia (Stage)" + ], + "properties": null, + "resourceType": "freeTrialStaticWebApps", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-03-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-03-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2016-03-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-11-01", + "2018-02-01", + "2016-03-01", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "Korea Central", + "Korea South", + "West US", + "East US", + "Japan West", + "Japan East", + "East Asia", + "East US 2", + "North Central US", + "South Central US", + "Brazil South", + "Australia East", + "Australia Southeast", + "West India", + "Central India", + "South India", + "Canada Central", + "Canada East", + "West Central US", + "UK West", + "UK South", + "West US 2", + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "East Asia (Stage)", + "Central US (Stage)", + "North Central US (Stage)", + "France Central", + "South Africa North", + "West US 3", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "listSitesAssignedToHostName", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-08-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-08-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-02-01", + "2016-08-01" + ], + "capabilities": "None", + "defaultApiVersion": "2018-02-01", + "locationMappings": null, + "locations": [ + "Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "Korea Central", + "Korea South", + "West US", + "East US", + "Japan West", + "Japan East", + "East Asia", + "East US 2", + "North Central US", + "South Central US", + "Brazil South", + "Australia East", + "Australia Southeast", + "West India", + "Central India", + "South India", + "Canada Central", + "Canada East", + "UK West", + "UK South", + "West US 2", + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "Central US (Stage)", + "France Central", + "West Central US", + "East Asia (Stage)", + "North Central US (Stage)", + "Jio India West" + ], + "properties": null, + "resourceType": "locations/getNetworkPolicies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-08-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-08-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-12-01-preview", + "2019-08-01", + "2019-01-01", + "2018-11-01", + "2018-02-01", + "2016-08-01" + ], + "capabilities": "None", + "defaultApiVersion": "2019-01-01", + "locationMappings": null, + "locations": [ + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "Central US (Stage)", + "South Central US", + "South Africa North", + "West US 2", + "East US 2", + "East US", + "UK South", + "Southeast Asia", + "North Europe", + "Japan East", + "West Europe", + "East Asia", + "West US", + "Australia East", + "Brazil South", + "Central US", + "Japan West", + "Central India", + "Canada East", + "Korea Central", + "France Central", + "West India", + "Australia Central", + "Germany West Central", + "Norway East", + "UAE North", + "Sweden Central", + "Qatar Central", + "Switzerland North", + "North Central US", + "UK West", + "Australia Southeast", + "Korea South", + "Canada Central", + "South India", + "West Central US", + "East Asia (Stage)", + "North Central US (Stage)", + "West US 3", + "Jio India West", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-08-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-08-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-12-01-preview", + "2019-08-01", + "2019-01-01", + "2018-11-01", + "2018-02-01", + "2016-08-01" + ], + "capabilities": "None", + "defaultApiVersion": "2019-01-01", + "locationMappings": null, + "locations": [ + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "Central US (Stage)", + "South Central US", + "South Africa North", + "West US 2", + "East US 2", + "East US", + "UK South", + "Southeast Asia", + "North Europe", + "Japan East", + "West Europe", + "East Asia", + "West US", + "Australia East", + "Brazil South", + "Central US", + "Japan West", + "Central India", + "Canada East", + "Korea Central", + "France Central", + "West India", + "Australia Central", + "Germany West Central", + "Norway East", + "UAE North", + "Sweden Central", + "Qatar Central", + "Switzerland North", + "North Central US", + "UK West", + "Australia Southeast", + "Korea South", + "Canada Central", + "South India", + "West Central US", + "East Asia (Stage)", + "North Central US (Stage)", + "West US 3", + "Jio India West", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-08-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-08-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-11-01", + "2018-02-01", + "2016-08-01", + "2016-03-01", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "Central US (Stage)", + "South Central US", + "South Africa North", + "East Asia", + "Japan East", + "West US", + "Australia East", + "Brazil South", + "Southeast Asia", + "Central US", + "Japan West", + "Central India", + "UK South", + "Canada East", + "Korea Central", + "France Central", + "North Europe", + "West US 2", + "East US", + "West India", + "East US 2", + "Australia Central", + "Germany West Central", + "Norway East", + "UAE North", + "Sweden Central", + "Qatar Central", + "Switzerland North", + "North Central US", + "UK West", + "Australia Southeast", + "Korea South", + "Canada Central", + "West Europe", + "South India", + "West Central US", + "East Asia (Stage)", + "North Central US (Stage)", + "West US 3", + "Jio India West", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "sites/networkConfig", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-08-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-08-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-11-01", + "2018-02-01", + "2016-08-01", + "2016-03-01", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "Central US (Stage)", + "South Central US", + "South Africa North", + "East Asia", + "Japan East", + "West US", + "Australia East", + "Brazil South", + "Southeast Asia", + "Central US", + "Japan West", + "Central India", + "UK South", + "Canada East", + "Korea Central", + "France Central", + "North Europe", + "West US 2", + "East US", + "West India", + "East US 2", + "Australia Central", + "Germany West Central", + "Norway East", + "UAE North", + "Sweden Central", + "Qatar Central", + "Switzerland North", + "North Central US", + "UK West", + "Australia Southeast", + "Korea South", + "Canada Central", + "West Europe", + "South India", + "West Central US", + "East Asia (Stage)", + "North Central US (Stage)", + "West US 3", + "Jio India West", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "sites/slots/networkConfig", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-08-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-08-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-11-01", + "2018-02-01", + "2016-08-01", + "2016-03-01", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "Central US (Stage)", + "South Central US", + "South Africa North", + "East Asia", + "Japan East", + "West US", + "Australia East", + "Brazil South", + "Southeast Asia", + "Central US", + "Japan West", + "Central India", + "UK South", + "Canada East", + "Korea Central", + "France Central", + "North Europe", + "West US 2", + "East US", + "West India", + "East US 2", + "Australia Central", + "Germany West Central", + "Norway East", + "UAE North", + "Sweden Central", + "Qatar Central", + "Switzerland North", + "North Central US", + "UK West", + "Australia Southeast", + "Korea South", + "Canada Central", + "West Europe", + "South India", + "West Central US", + "East Asia (Stage)", + "North Central US (Stage)", + "West US 3", + "Jio India West", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "sites/hostNameBindings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-08-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-08-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-11-01", + "2018-02-01", + "2016-08-01", + "2016-03-01", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "Central US (Stage)", + "South Central US", + "South Africa North", + "East Asia", + "Japan East", + "West US", + "Australia East", + "Brazil South", + "Southeast Asia", + "Central US", + "Japan West", + "Central India", + "UK South", + "Canada East", + "Korea Central", + "France Central", + "North Europe", + "West US 2", + "East US", + "West India", + "East US 2", + "Australia Central", + "Germany West Central", + "Norway East", + "UAE North", + "Sweden Central", + "Qatar Central", + "Switzerland North", + "North Central US", + "UK West", + "Australia Southeast", + "Korea South", + "Canada Central", + "West Europe", + "South India", + "West Central US", + "East Asia (Stage)", + "North Central US (Stage)", + "West US 3", + "Jio India West", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "sites/slots/hostNameBindings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-03-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-03-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-11-01", + "2018-02-01", + "2016-03-01", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01", + "2014-11-01", + "2014-06-01", + "2014-04-01-preview", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "Korea Central", + "Korea South", + "West US", + "East US", + "Japan West", + "Japan East", + "East Asia", + "East US 2", + "North Central US", + "South Central US", + "Brazil South", + "Australia East", + "Australia Southeast", + "West India", + "Central India", + "South India", + "Canada Central", + "Canada East", + "West Central US", + "UK West", + "UK South", + "West US 2", + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "East Asia (Stage)", + "Central US (Stage)", + "North Central US (Stage)", + "France Central", + "South Africa North", + "West US 3", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-03-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-03-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-11-01", + "2018-02-01", + "2016-03-01", + "2015-08-01-preview", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01", + "2014-11-01", + "2014-06-01", + "2014-04-01-preview", + "2014-04-01" + ], + "capabilities": "CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "Central US (Stage)", + "South Central US", + "South Africa North", + "East Asia", + "Japan East", + "West US", + "Australia East", + "Brazil South", + "Southeast Asia", + "Central US", + "Japan West", + "Central India", + "UK South", + "Canada East", + "Korea Central", + "France Central", + "North Europe", + "West US 2", + "East US", + "West India", + "East US 2", + "Australia Central", + "Germany West Central", + "Norway East", + "UAE North", + "Sweden Central", + "Qatar Central", + "Switzerland North", + "North Central US", + "UK West", + "Australia Southeast", + "Korea South", + "Canada Central", + "West Europe", + "South India", + "West Central US", + "East Asia (Stage)", + "North Central US (Stage)", + "West US 3", + "Jio India West", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "certificates", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-09-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2017-08-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-11-01", + "2018-02-01", + "2017-08-01", + "2016-09-01", + "2016-03-01", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01", + "2014-11-01", + "2014-06-01", + "2014-04-01-preview", + "2014-04-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "Central US (Stage)", + "South Central US", + "South Africa North", + "West US", + "Australia East", + "Brazil South", + "Southeast Asia", + "Central US", + "Japan West", + "Central India", + "UK South", + "Canada East", + "Korea Central", + "France Central", + "North Europe", + "West US 2", + "East US", + "West India", + "East US 2", + "Australia Central", + "Germany West Central", + "Norway East", + "UAE North", + "Sweden Central", + "Qatar Central", + "Switzerland North", + "North Central US", + "UK West", + "Australia Southeast", + "Korea South", + "Canada Central", + "West Europe", + "South India", + "West Central US", + "East Asia (Stage)", + "North Central US (Stage)", + "West US 3", + "East Asia", + "Japan East", + "Jio India West", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "serverFarms", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-08-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-08-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-11-01", + "2018-02-01", + "2017-08-01", + "2016-09-01", + "2016-08-01", + "2016-03-01", + "2015-11-01", + "2015-08-01-preview", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01", + "2015-01-01", + "2014-11-01", + "2014-06-01", + "2014-04-01-preview", + "2014-04-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "Central US (Stage)", + "South Central US", + "South Africa North", + "West US", + "Australia East", + "Brazil South", + "Southeast Asia", + "Central US", + "Japan West", + "Central India", + "UK South", + "Canada East", + "Korea Central", + "France Central", + "North Europe", + "West US 2", + "East US", + "West India", + "East US 2", + "Australia Central", + "Germany West Central", + "Norway East", + "UAE North", + "Sweden Central", + "Qatar Central", + "Switzerland North", + "North Central US", + "UK West", + "Australia Southeast", + "Korea South", + "Canada Central", + "West Europe", + "South India", + "West Central US", + "East Asia (Stage)", + "North Central US (Stage)", + "West US 3", + "East Asia", + "Japan East", + "Jio India West", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "sites", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-08-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-08-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-11-01", + "2018-02-01", + "2017-08-01", + "2016-09-01", + "2016-08-01", + "2016-03-01", + "2015-11-01", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01", + "2015-01-01", + "2014-11-01", + "2014-06-01", + "2014-04-01-preview", + "2014-04-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "Central US (Stage)", + "South Central US", + "South Africa North", + "West US", + "Australia East", + "Brazil South", + "Southeast Asia", + "Central US", + "Japan West", + "Central India", + "UK South", + "Canada East", + "Korea Central", + "France Central", + "North Europe", + "West US 2", + "East US", + "West India", + "East US 2", + "Australia Central", + "Germany West Central", + "Norway East", + "UAE North", + "Sweden Central", + "Qatar Central", + "Switzerland North", + "North Central US", + "UK West", + "Australia Southeast", + "Korea South", + "Canada Central", + "West Europe", + "South India", + "West Central US", + "East Asia (Stage)", + "North Central US (Stage)", + "West US 3", + "East Asia", + "Japan East", + "Jio India West", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "sites/slots", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-03-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-03-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2016-03-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-11-01", + "2018-02-01", + "2016-03-01", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01", + "2014-11-01", + "2014-06-01", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "runtimes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-03-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-03-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2016-03-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-11-01", + "2018-02-01", + "2016-03-01", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01", + "2014-11-01", + "2014-06-01", + "2014-04-01-preview", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "recommendations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-03-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-03-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2016-03-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-11-01", + "2018-02-01", + "2016-03-01", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01", + "2014-11-01", + "2014-06-01", + "2014-04-01-preview", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "resourceHealthMetadata", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-03-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-03-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2016-03-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-11-01", + "2018-02-01", + "2016-03-01", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01", + "2014-11-01", + "2014-06-01", + "2014-04-01-preview", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "georegions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-03-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-03-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2016-03-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-11-01", + "2018-02-01", + "2016-03-01", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "Central US (Stage)", + "South Central US", + "South Africa North", + "East Asia", + "Japan East", + "West US", + "Australia East", + "Brazil South", + "Southeast Asia", + "Central US", + "Japan West", + "Central India", + "UK South", + "Canada East", + "Korea Central", + "France Central", + "North Europe", + "West US 2", + "East US", + "West India", + "East US 2", + "Australia Central", + "Germany West Central", + "Norway East", + "UAE North", + "Sweden Central", + "Qatar Central", + "Switzerland North", + "North Central US", + "UK West", + "Australia Southeast", + "Korea South", + "Canada Central", + "West Europe", + "South India", + "West Central US", + "East Asia (Stage)", + "North Central US (Stage)", + "West US 3", + "Jio India West", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "sites/premieraddons", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-09-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2017-08-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2019-02-01", + "2019-01-01", + "2018-11-01", + "2018-08-01", + "2018-05-01-preview", + "2018-02-01", + "2017-08-01", + "2016-09-01", + "2016-03-01", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01", + "2014-11-01", + "2014-06-01", + "2014-04-01" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "Central US (Stage)", + "South Central US", + "South Africa North", + "West US 2", + "East US 2", + "East US", + "UK South", + "Southeast Asia", + "North Europe", + "Japan East", + "West Europe", + "East Asia", + "West US", + "Australia East", + "Brazil South", + "Central US", + "Japan West", + "Central India", + "Canada East", + "Korea Central", + "France Central", + "West India", + "Australia Central", + "Germany West Central", + "Norway East", + "UAE North", + "Sweden Central", + "Qatar Central", + "Switzerland North", + "North Central US", + "UK West", + "Australia Southeast", + "Korea South", + "Canada Central", + "South India", + "West Central US", + "East Asia (Stage)", + "North Central US (Stage)", + "West US 3", + "Jio India West", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "hostingEnvironments", + "zoneMappings": [ + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East Asia", + "zones": [] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "North Central US", + "zones": [] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "Poland Central", + "zones": [] + }, + { + "location": "Qatar Central", + "zones": [] + }, + { + "location": "South Africa North", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Sweden Central", + "zones": [] + }, + { + "location": "Switzerland North", + "zones": [] + }, + { + "location": "UAE North", + "zones": [] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US", + "zones": [] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 3", + "zones": [] + }, + { + "location": "Italy North", + "zones": [] + } + ] + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-09-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2017-08-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2019-02-01", + "2018-11-01", + "2018-08-01", + "2018-02-01", + "2017-08-01", + "2016-09-01", + "2016-03-01", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01", + "2014-11-01", + "2014-06-01", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "Central US (Stage)", + "South Central US", + "South Africa North", + "East Asia", + "Japan East", + "West US", + "Australia East", + "Brazil South", + "Southeast Asia", + "Central US", + "Japan West", + "Central India", + "UK South", + "Canada East", + "Korea Central", + "France Central", + "North Europe", + "West US 2", + "East US", + "West India", + "East US 2", + "Australia Central", + "Germany West Central", + "Norway East", + "UAE North", + "Sweden Central", + "Qatar Central", + "Switzerland North", + "North Central US", + "UK West", + "Australia Southeast", + "Korea South", + "Canada Central", + "West Europe", + "South India", + "West Central US", + "East Asia (Stage)", + "North Central US (Stage)", + "West US 3", + "Jio India West", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "hostingEnvironments/multiRolePools", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-09-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2017-08-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2019-02-01", + "2018-11-01", + "2018-08-01", + "2018-02-01", + "2017-08-01", + "2016-09-01", + "2016-03-01", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01", + "2014-11-01", + "2014-06-01", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "Central US (Stage)", + "South Central US", + "South Africa North", + "East Asia", + "Japan East", + "West US", + "Australia East", + "Brazil South", + "Southeast Asia", + "Central US", + "Japan West", + "Central India", + "UK South", + "Canada East", + "Korea Central", + "France Central", + "North Europe", + "West US 2", + "East US", + "West India", + "East US 2", + "Australia Central", + "Germany West Central", + "Norway East", + "UAE North", + "Sweden Central", + "Qatar Central", + "Switzerland North", + "North Central US", + "UK West", + "Australia Southeast", + "Korea South", + "Canada Central", + "West Europe", + "South India", + "West Central US", + "East Asia (Stage)", + "North Central US (Stage)", + "West US 3", + "Jio India West", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "hostingEnvironments/workerPools", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-09-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2017-08-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2021-03-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US (Stage)", + "West Central US", + "East US", + "West Europe", + "Jio India West", + "North Europe", + "Canada Central", + "East US 2" + ], + "properties": null, + "resourceType": "kubeEnvironments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-03-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-03-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-11-01", + "2018-02-01", + "2016-03-01", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01", + "2014-11-01", + "2014-06-01", + "2014-04-01-preview", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "Korea Central", + "Korea South", + "West US", + "East US", + "Japan West", + "Japan East", + "East Asia", + "East US 2", + "North Central US", + "South Central US", + "Brazil South", + "Australia East", + "Australia Southeast", + "West India", + "Central India", + "South India", + "Canada Central", + "Canada East", + "West Central US", + "UK West", + "UK South", + "West US 2", + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "Central US (Stage)", + "North Central US (Stage)", + "France Central", + "South Africa North", + "West US 3", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "deploymentLocations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-03-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-03-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-11-01", + "2018-02-01", + "2016-03-01", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01", + "2014-11-01", + "2014-06-01", + "2014-04-01-preview", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "Central US (Stage)", + "South Central US", + "South Africa North", + "East Asia", + "Japan East", + "West US", + "Australia East", + "Brazil South", + "Southeast Asia", + "Central US", + "Japan West", + "Central India", + "UK South", + "Canada East", + "Korea Central", + "France Central", + "North Europe", + "West US 2", + "East US", + "West India", + "East US 2", + "Australia Central", + "Germany West Central", + "Norway East", + "UAE North", + "Sweden Central", + "Qatar Central", + "Switzerland North", + "North Central US", + "UK West", + "Australia Southeast", + "Korea South", + "Canada Central", + "West Europe", + "South India", + "West Central US", + "East Asia (Stage)", + "North Central US (Stage)", + "West US 3", + "Jio India West", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "deletedSites", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-03-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-03-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-11-01", + "2018-02-01", + "2016-03-01", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01", + "2014-11-01", + "2014-06-01", + "2014-04-01-preview", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": "2018-02-01", + "locationMappings": null, + "locations": [ + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "Central US (Stage)", + "South Central US", + "South Africa North", + "East Asia", + "Japan East", + "West US", + "Australia East", + "Brazil South", + "Southeast Asia", + "Central US", + "Japan West", + "Central India", + "UK South", + "Canada East", + "Korea Central", + "France Central", + "North Europe", + "West US 2", + "East US", + "West India", + "East US 2", + "Australia Central", + "Germany West Central", + "Norway East", + "UAE North", + "Sweden Central", + "Qatar Central", + "Switzerland North", + "North Central US", + "UK West", + "Australia Southeast", + "Korea South", + "Canada Central", + "West Europe", + "South India", + "West Central US", + "East Asia (Stage)", + "North Central US (Stage)", + "West US 3", + "Jio India West", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/deletedSites", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-03-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-03-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-11-01", + "2018-02-01", + "2016-03-01", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01", + "2014-11-01", + "2014-06-01", + "2014-04-01-preview", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "ishostingenvironmentnameavailable", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-02-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-11-01", + "2018-02-01", + "2016-11-01", + "2016-08-01", + "2016-03-01", + "2015-08-01-preview", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01", + "2014-11-01", + "2014-06-01", + "2014-04-01-preview", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": "2018-02-01", + "locationMappings": null, + "locations": [ + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "Central US (Stage)", + "South Central US", + "South Africa North", + "West US", + "Australia East", + "Brazil South", + "Southeast Asia", + "Central US", + "Japan West", + "Central India", + "UK South", + "Canada East", + "Korea Central", + "France Central", + "North Europe", + "West US 2", + "East US", + "West India", + "East US 2", + "Australia Central", + "Germany West Central", + "Norway East", + "UAE North", + "Sweden Central", + "Qatar Central", + "Switzerland North", + "North Central US", + "UK West", + "Australia Southeast", + "Korea South", + "Canada Central", + "West Europe", + "South India", + "West Central US", + "East Asia (Stage)", + "North Central US (Stage)", + "West US 3", + "East Asia", + "Japan East", + "Jio India West", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/deleteVirtualNetworkOrSubnets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-02-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-11-01", + "2018-02-01", + "2016-11-01", + "2016-08-01", + "2016-03-01", + "2015-08-01-preview", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01", + "2014-11-01", + "2014-06-01", + "2014-04-01-preview", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": "2018-02-01", + "locationMappings": null, + "locations": [ + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "Central US (Stage)", + "South Central US", + "South Africa North", + "West US", + "Australia East", + "Brazil South", + "Southeast Asia", + "Central US", + "Japan West", + "Central India", + "UK South", + "Canada East", + "Korea Central", + "France Central", + "North Europe", + "West US 2", + "East US", + "West India", + "East US 2", + "Australia Central", + "Germany West Central", + "Norway East", + "UAE North", + "Sweden Central", + "Qatar Central", + "Switzerland North", + "North Central US", + "UK West", + "Australia Southeast", + "Korea South", + "Canada Central", + "West Europe", + "South India", + "West Central US", + "East Asia (Stage)", + "North Central US (Stage)", + "West US 3", + "East Asia", + "Japan East", + "Jio India West", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/validateDeleteVirtualNetworkOrSubnets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-06-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-06-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-03-01-preview", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2018-07-01-preview", + "2018-03-01-preview", + "2016-06-01", + "2015-08-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "West US", + "East US", + "East US 2", + "Japan West", + "Japan East", + "Brazil South", + "Australia East", + "Brazil Southeast", + "Australia Southeast", + "South India", + "Central India", + "West India", + "West US 2", + "West US 3", + "Jio India West", + "West Central US", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "France Central", + "France South", + "Korea Central", + "Korea South", + "South Africa West", + "South Africa North", + "UAE Central", + "UAE North", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany North", + "Germany West Central", + "Sweden Central", + "Poland Central", + "Qatar Central" + ], + "properties": null, + "resourceType": "connections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-06-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-06-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-03-01-preview", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2018-07-01-preview", + "2018-03-01-preview", + "2016-06-01", + "2015-08-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "West US", + "East US", + "East US 2", + "Japan West", + "Japan East", + "Brazil South", + "Australia East", + "Brazil Southeast", + "Australia Southeast", + "South India", + "Central India", + "West India", + "West US 2", + "West US 3", + "Jio India West", + "West Central US", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "France Central", + "France South", + "Korea Central", + "Korea South", + "South Africa West", + "South Africa North", + "UAE Central", + "UAE North", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany North", + "Germany West Central", + "Sweden Central", + "Poland Central", + "Qatar Central" + ], + "properties": null, + "resourceType": "customApis", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-06-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-06-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-03-01-preview", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2018-07-01-preview", + "2018-03-01-preview", + "2016-06-01", + "2015-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-06-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-06-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-03-01-preview", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2018-03-01-preview", + "2016-06-01", + "2015-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "West US", + "East US", + "East US 2", + "Japan West", + "Japan East", + "Brazil South", + "Australia East", + "Australia Southeast", + "Brazil Southeast", + "South India", + "Central India", + "West India", + "West US 2", + "West US 3", + "Jio India West", + "West Central US", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "France Central", + "France South", + "Korea Central", + "Korea South", + "South Africa West", + "South Africa North", + "UAE Central", + "UAE North", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany North", + "Germany West Central", + "Sweden Central", + "Poland Central", + "Qatar Central" + ], + "properties": null, + "resourceType": "locations/listWsdlInterfaces", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-06-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-06-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-03-01-preview", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2018-03-01-preview", + "2016-06-01", + "2015-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "West US", + "East US", + "East US 2", + "Japan West", + "Japan East", + "Brazil South", + "Australia East", + "Australia Southeast", + "Brazil Southeast", + "South India", + "Central India", + "West India", + "West US 2", + "West US 3", + "Jio India West", + "West Central US", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "France Central", + "France South", + "Korea Central", + "Korea South", + "South Africa West", + "South Africa North", + "UAE Central", + "UAE North", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany North", + "Germany West Central", + "Sweden Central", + "Poland Central", + "Qatar Central" + ], + "properties": null, + "resourceType": "locations/extractApiDefinitionFromWsdl", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-06-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-06-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-03-01-preview", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2022-09-01-preview", + "2018-07-01-preview", + "2018-03-01-preview", + "2016-06-01", + "2015-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "West US", + "East US", + "East US 2", + "Japan West", + "Japan East", + "Brazil South", + "Australia East", + "Brazil Southeast", + "Australia Southeast", + "South India", + "Central India", + "West India", + "West US 2", + "West US 3", + "Jio India West", + "West Central US", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "France Central", + "France South", + "Korea Central", + "Korea South", + "South Africa West", + "South Africa North", + "UAE Central", + "UAE North", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany North", + "Germany West Central", + "Sweden Central", + "Poland Central", + "Qatar Central" + ], + "properties": null, + "resourceType": "locations/managedApis", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-06-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-06-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-03-01-preview", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2018-03-01-preview", + "2016-06-01", + "2015-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "West US", + "East US", + "East US 2", + "Japan West", + "Japan East", + "Brazil South", + "Australia East", + "Australia Southeast", + "Brazil Southeast", + "South India", + "Central India", + "West India", + "West US 2", + "West US 3", + "Jio India West", + "West Central US", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "France Central", + "France South", + "Korea Central", + "Korea South", + "South Africa West", + "South Africa North", + "UAE Central", + "UAE North", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany North", + "Germany West Central", + "Sweden Central", + "Poland Central", + "Qatar Central" + ], + "properties": null, + "resourceType": "locations/runtimes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-06-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-06-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-03-01-preview", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2022-09-01-preview", + "2018-07-01-preview", + "2018-03-01-preview", + "2016-06-01", + "2015-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "West US", + "East US", + "East US 2", + "Japan West", + "Japan East", + "Brazil South", + "Australia East", + "Brazil Southeast", + "Australia Southeast", + "South India", + "Central India", + "West India", + "West US 2", + "West US 3", + "Jio India West", + "West Central US", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "France Central", + "France South", + "Korea Central", + "Korea South", + "South Africa West", + "South Africa North", + "UAE Central", + "UAE North", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany North", + "Germany West Central", + "Sweden Central", + "Poland Central", + "Qatar Central" + ], + "properties": null, + "resourceType": "locations/apiOperations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-06-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-06-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-03-01-preview", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2018-03-01-preview", + "2016-06-01", + "2015-08-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "West US", + "East US", + "East US 2", + "Japan West", + "Japan East", + "Brazil South", + "Australia East", + "Australia Southeast", + "Brazil Southeast", + "South India", + "Central India", + "West India", + "West US 2", + "West US 3", + "Jio India West", + "West Central US", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "France Central", + "France South", + "Korea Central", + "Korea South", + "South Africa West", + "South Africa North", + "UAE Central", + "UAE North", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany North", + "Germany West Central", + "Sweden Central", + "Poland Central", + "Qatar Central" + ], + "properties": null, + "resourceType": "connectionGateways", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-06-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-06-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-03-01-preview", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2018-03-01-preview", + "2016-06-01", + "2015-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "West US", + "East US", + "East US 2", + "Japan West", + "Japan East", + "Brazil South", + "Australia East", + "Australia Southeast", + "Brazil Southeast", + "South India", + "Central India", + "West India", + "West US 2", + "West US 3", + "Jio India West", + "West Central US", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "France Central", + "France South", + "Korea Central", + "Korea South", + "South Africa West", + "South Africa North", + "UAE Central", + "UAE North", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany North", + "Germany West Central", + "Sweden Central", + "Poland Central", + "Qatar Central" + ], + "properties": null, + "resourceType": "locations/connectionGatewayInstallations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-03-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-03-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-11-01", + "2018-02-01", + "2016-03-01", + "2015-08-01-preview", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01", + "2014-11-01", + "2014-06-01", + "2014-04-01-preview", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "Korea Central", + "Korea South", + "West US", + "East US", + "Japan West", + "Japan East", + "East Asia", + "East US 2", + "North Central US", + "South Central US", + "Brazil South", + "Australia East", + "Australia Southeast", + "West India", + "Central India", + "South India", + "Canada Central", + "Canada East", + "West Central US", + "UK West", + "UK South", + "West US 2", + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "East Asia (Stage)", + "Central US (Stage)", + "North Central US (Stage)", + "France Central", + "South Africa North", + "West US 3", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-03-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-03-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-11-01", + "2018-02-01", + "2016-03-01", + "2015-08-01-preview", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01", + "2014-11-01", + "2014-06-01", + "2014-04-01-preview", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "Korea Central", + "Korea South", + "West US", + "East US", + "Japan West", + "Japan East", + "East Asia", + "East US 2", + "North Central US", + "South Central US", + "Brazil South", + "Australia East", + "Australia Southeast", + "West India", + "Central India", + "South India", + "Canada Central", + "Canada East", + "West Central US", + "UK West", + "UK South", + "West US 2", + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "East Asia (Stage)", + "Central US (Stage)", + "North Central US (Stage)", + "France Central", + "South Africa North", + "West US 3", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "billingMeters", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-03-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-03-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-11-01", + "2018-02-01", + "2016-03-01", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01", + "2014-11-01", + "2014-06-01", + "2014-04-01-preview", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "Korea Central", + "Korea South", + "West US", + "East US", + "Japan West", + "Japan East", + "East Asia", + "East US 2", + "North Central US", + "South Central US", + "Brazil South", + "Australia East", + "Australia Southeast", + "West India", + "Central India", + "South India", + "Canada Central", + "Canada East", + "West Central US", + "UK West", + "UK South", + "West US 2", + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "East Asia (Stage)", + "Central US (Stage)", + "North Central US (Stage)", + "France Central", + "South Africa North", + "West US 3", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "verifyHostingEnvironmentVnet", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-11-01", + "2018-02-01", + "2017-08-01", + "2016-09-01", + "2016-03-01", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01", + "2014-11-01", + "2014-06-01", + "2014-04-01-preview", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "Central US (Stage)", + "South Central US", + "South Africa North", + "West US", + "Australia East", + "Brazil South", + "Southeast Asia", + "Central US", + "Japan West", + "Central India", + "UK South", + "Canada East", + "Korea Central", + "France Central", + "North Europe", + "West US 2", + "East US", + "West India", + "East US 2", + "Australia Central", + "Germany West Central", + "Norway West", + "Norway East", + "UAE North", + "Sweden Central", + "Qatar Central", + "Switzerland North", + "North Central US", + "UK West", + "Australia Southeast", + "Korea South", + "Canada Central", + "West Europe", + "South India", + "West Central US", + "East Asia (Stage)", + "North Central US (Stage)", + "West US 3", + "East Asia", + "Japan East", + "South Africa West", + "Jio India West", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "serverFarms/eventGridFilters", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-11-01", + "2018-02-01", + "2017-08-01", + "2016-09-01", + "2016-08-01", + "2016-03-01", + "2015-11-01", + "2015-08-01-preview", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01", + "2015-01-01", + "2014-11-01", + "2014-06-01", + "2014-04-01-preview", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "Central US (Stage)", + "South Central US", + "South Africa North", + "West US", + "Australia East", + "Brazil South", + "Southeast Asia", + "Central US", + "Japan West", + "Central India", + "UK South", + "Canada East", + "Korea Central", + "France Central", + "North Europe", + "West US 2", + "East US", + "West India", + "East US 2", + "Australia Central", + "Germany West Central", + "Norway West", + "Norway East", + "UAE North", + "Sweden Central", + "Qatar Central", + "Switzerland North", + "North Central US", + "UK West", + "Australia Southeast", + "Korea South", + "Canada Central", + "West Europe", + "South India", + "West Central US", + "East Asia (Stage)", + "North Central US (Stage)", + "West US 3", + "East Asia", + "Japan East", + "South Africa West", + "Jio India West", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "sites/eventGridFilters", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-11-01", + "2018-02-01", + "2017-08-01", + "2016-09-01", + "2016-08-01", + "2016-03-01", + "2015-11-01", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01", + "2015-01-01", + "2014-11-01", + "2014-06-01", + "2014-04-01-preview", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "Central US (Stage)", + "South Central US", + "South Africa North", + "West US", + "Australia East", + "Brazil South", + "Southeast Asia", + "Central US", + "Japan West", + "Central India", + "UK South", + "Canada East", + "Korea Central", + "France Central", + "North Europe", + "West US 2", + "East US", + "West India", + "East US 2", + "Australia Central", + "Germany West Central", + "Norway West", + "Norway East", + "Switzerland North", + "UAE North", + "Sweden Central", + "Qatar Central", + "North Central US", + "UK West", + "Australia Southeast", + "Korea South", + "Canada Central", + "West Europe", + "South India", + "West Central US", + "East Asia (Stage)", + "North Central US (Stage)", + "West US 3", + "East Asia", + "Japan East", + "South Africa West", + "Jio India West", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "sites/slots/eventGridFilters", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2019-02-01", + "2019-01-01", + "2018-11-01", + "2018-08-01", + "2018-05-01-preview", + "2018-02-01", + "2017-08-01", + "2016-09-01", + "2016-03-01", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01", + "2014-11-01", + "2014-06-01", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "North Central US", + "Brazil South", + "Canada East", + "UK West", + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "Central US (Stage)", + "South Central US", + "South Africa North", + "West US 2", + "East US 2", + "East US", + "UK South", + "Southeast Asia", + "North Europe", + "Japan East", + "West Europe", + "East Asia", + "Australia East", + "Central US", + "Japan West", + "Central India", + "Korea Central", + "France Central", + "West India", + "Australia Central", + "Germany West Central", + "Norway East", + "Switzerland North", + "UAE North", + "Sweden Central", + "Qatar Central", + "Australia Southeast", + "Korea South", + "Canada Central", + "South India", + "West Central US", + "East Asia (Stage)", + "North Central US (Stage)", + "West US 3", + "Jio India West", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "hostingEnvironments/eventGridFilters", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-11-01", + "2018-02-01", + "2017-08-01", + "2016-09-01", + "2016-03-01", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01", + "2014-11-01", + "2014-06-01", + "2014-04-01-preview", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "Central US (Stage)", + "South Central US", + "South Africa North", + "West US", + "Australia East", + "Brazil South", + "Southeast Asia", + "Central US", + "Japan West", + "Central India", + "UK South", + "Canada East", + "Korea Central", + "France Central", + "North Europe", + "West US 2", + "East US", + "West India", + "East US 2", + "Australia Central", + "Germany West Central", + "Norway West", + "Norway East", + "UAE North", + "Sweden Central", + "Qatar Central", + "Switzerland North", + "North Central US", + "UK West", + "Australia Southeast", + "Korea South", + "Canada Central", + "West Europe", + "South India", + "West Central US", + "East Asia (Stage)", + "North Central US (Stage)", + "West US 3", + "East Asia", + "Japan East", + "South Africa West", + "Jio India West", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "serverFarms/firstPartyApps", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-11-01", + "2018-02-01", + "2017-08-01", + "2016-09-01", + "2016-03-01", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01", + "2014-11-01", + "2014-06-01", + "2014-04-01-preview", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "Central US (Stage)", + "South Central US", + "South Africa North", + "West US", + "Australia East", + "Brazil South", + "Southeast Asia", + "Central US", + "Japan West", + "Central India", + "UK South", + "Canada East", + "Korea Central", + "France Central", + "North Europe", + "West US 2", + "East US", + "West India", + "East US 2", + "Australia Central", + "Germany West Central", + "Norway West", + "Norway East", + "UAE North", + "Sweden Central", + "Qatar Central", + "Switzerland North", + "North Central US", + "UK West", + "Australia Southeast", + "Korea South", + "Canada Central", + "West Europe", + "South India", + "West Central US", + "East Asia (Stage)", + "North Central US (Stage)", + "West US 3", + "East Asia", + "Japan East", + "South Africa West", + "Jio India West", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "serverFarms/firstPartyApps/keyVaultSettings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2021-02-01", + "locationMappings": null, + "locations": [ + "North Central US (Stage)" + ], + "properties": null, + "resourceType": "workerApps", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-03-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2021-03-01", + "locationMappings": null, + "locations": [ + "North Central US (Stage)", + "East US", + "North Europe", + "Canada Central", + "East US 2", + "West Europe" + ], + "properties": null, + "resourceType": "containerApps", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-03-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-03-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2016-03-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-11-01", + "2018-02-01", + "2016-08-01", + "2016-03-01", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "Central US (Stage)", + "South Central US", + "South Africa North", + "East Asia", + "Japan East", + "West US", + "Australia East", + "Brazil South", + "Southeast Asia", + "Central US", + "Japan West", + "Central India", + "UK South", + "Canada East", + "Korea Central", + "France Central", + "North Europe", + "West US 2", + "East US", + "West India", + "East US 2", + "Australia Central", + "Germany West Central", + "Norway East", + "UAE North", + "Sweden Central", + "Qatar Central", + "Switzerland North", + "North Central US", + "UK West", + "Australia Southeast", + "Korea South", + "Canada Central", + "West Europe", + "South India", + "West Central US", + "East Asia (Stage)", + "North Central US (Stage)", + "West US 3", + "Jio India West", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "customhostnameSites", + "zoneMappings": null + } + ] + }, + { + "authorization": { + "applicationId": "66c6d0d1-f2e7-4a18-97a9-ed10f3347016", + "roleDefinitionId": "1e86f807-6ec0-40b3-8b5f-686b7e43a0a2" + }, + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.ManagedServices", + "namespace": "Microsoft.ManagedServices", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "Registered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01", + "2022-01-01-preview", + "2020-02-01-preview", + "2019-09-01", + "2019-06-01", + "2019-04-01-preview", + "2018-06-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "registrationDefinitions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01", + "2022-01-01-preview", + "2020-02-01-preview", + "2019-09-01", + "2019-06-01", + "2019-04-01-preview", + "2018-06-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "registrationAssignments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01", + "2022-01-01-preview", + "2020-02-01-preview", + "2019-09-01", + "2019-06-01", + "2019-04-01-preview", + "2018-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01", + "2022-01-01-preview", + "2020-02-01-preview", + "2019-09-01", + "2019-06-01", + "2019-04-01-preview", + "2018-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "marketplaceRegistrationDefinitions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01", + "2022-01-01-preview", + "2020-02-01-preview", + "2019-09-01", + "2019-06-01", + "2019-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operationStatuses", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "6bccf540-eb86-4037-af03-7fa058c2db75", + "roleDefinitionId": "89dcede2-9219-403a-9723-d3c6473f9472" + }, + { + "applicationId": "11c174dc-1945-4a9a-a36b-c79a0f246b9b", + "roleDefinitionId": "dd9d4347-f397-45f2-b538-85f21c90037b" + }, + { + "applicationId": "035f9e1d-4f00-4419-bf50-bf2d87eb4878", + "roleDefinitionId": "323795fe-ba3d-4f5a-ad42-afb4e1ea9485" + }, + { + "applicationId": "f5c26e74-f226-4ae8-85f0-b4af0080ac9e", + "roleDefinitionId": "529d7ae6-e892-4d43-809d-8547aeb90643" + }, + { + "applicationId": "b503eb83-1222-4dcc-b116-b98ed5216e05", + "roleDefinitionId": "68699c37-c689-44d4-9248-494b782d46ae" + }, + { + "applicationId": "ca7f3f0b-7d91-482c-8e09-c5d840d0eac5", + "roleDefinitionId": "5d5a2e56-9835-44aa-93db-d2f19e155438" + }, + { + "applicationId": "3af5a1e8-2459-45cb-8683-bcd6cccbcc13", + "roleDefinitionId": "b1309299-720d-4159-9897-6158a61aee41" + }, + { + "applicationId": "6a0a243c-0886-468a-a4c2-eff52c7445da", + "roleDefinitionId": "d2eda64b-c5e6-4930-8642-2d80ecd7c2e2" + }, + { + "applicationId": "707be275-6b9d-4ee7-88f9-c0c2bd646e0f", + "roleDefinitionId": "fa027d90-6ba0-4c33-9a54-59edaf2327e7" + }, + { + "applicationId": "461e8683-5575-4561-ac7f-899cc907d62a", + "roleDefinitionId": "68699c37-c689-44d4-9248-494b782d46ae" + }, + { + "applicationId": "562db366-1b96-45d2-aa4a-f2148cef2240", + "roleDefinitionId": "4109c8be-c1c8-4be0-af52-9d3c76c140ab" + }, + { + "applicationId": "e933bd07-d2ee-4f1d-933c-3752b819567b", + "roleDefinitionId": "abbcfd44-e662-419a-9b5a-478f8e2f57c9" + }, + { + "applicationId": "f6b60513-f290-450e-a2f3-9930de61c5e7", + "roleDefinitionId": "4ef11659-08ac-48af-98a7-25fb6b1e1bc4" + }, + { + "applicationId": "12743ff8-d3de-49d0-a4ce-6c91a4245ea0", + "roleDefinitionId": "207b20a7-6802-4ae4-aaa2-1a36dd45bba0" + }, + { + "applicationId": "58ef1dbd-684c-47d6-8ffc-61ea7a197b95", + "roleDefinitionId": "dd9d4347-f397-45f2-b538-85f21c90037b" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/microsoft.insights", + "namespace": "microsoft.insights", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "Registered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-02-02-preview", + "2020-02-02", + "2018-05-01-preview", + "2015-05-01", + "2014-12-01-preview", + "2014-08-01", + "2014-04-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "West US 2", + "UK South", + "Canada Central", + "Central India", + "Japan East", + "Australia East", + "Korea Central", + "France Central", + "Central US", + "East US 2", + "East Asia", + "West US", + "South Africa North", + "North Central US", + "Brazil South", + "Switzerland North", + "Norway East", + "Norway West", + "Australia Southeast", + "Australia Central 2", + "Germany West Central", + "Switzerland West", + "UAE Central", + "UK West", + "Japan West", + "Brazil Southeast", + "UAE North", + "Australia Central", + "France South", + "South India", + "West US 3", + "Korea South", + "Sweden Central", + "Canada East", + "Jio India Central", + "Jio India West", + "Qatar Central", + "South Africa West", + "Germany North", + "Poland Central" + ], + "properties": null, + "resourceType": "components", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-04-20" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "components/query", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-04-20" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "components/metadata", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-04-20", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central 2", + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Europe", + "West US 2", + "West US 3", + "West US" + ], + "properties": null, + "resourceType": "components/metrics", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-04-20" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "West US 2", + "UK South", + "Central India", + "Canada Central", + "Japan East", + "Australia East", + "Korea Central", + "France Central", + "East US 2", + "East Asia", + "West US", + "Central US", + "South Africa North", + "North Central US" + ], + "properties": null, + "resourceType": "components/events", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-02-02-preview", + "2020-02-02", + "2018-05-01-preview", + "2015-05-01", + "2014-12-01-preview", + "2014-08-01", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "West US 2", + "UK South", + "Canada Central", + "Central India", + "Japan East", + "Australia East", + "Korea Central", + "France Central", + "Central US", + "East US 2", + "East Asia", + "West US", + "South Africa North", + "North Central US", + "Brazil South", + "Switzerland North", + "Norway East", + "Norway West", + "Australia Southeast", + "Australia Central 2", + "Germany West Central", + "Switzerland West", + "UAE Central", + "UK West", + "Japan West", + "Brazil Southeast", + "UAE North", + "Australia Central", + "France South", + "South India", + "West US 3", + "Korea South", + "Sweden Central", + "Canada East", + "Jio India Central", + "Jio India West", + "Qatar Central", + "South Africa West", + "Germany North", + "Poland Central" + ], + "properties": null, + "resourceType": "components/syntheticmonitorlocations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-02-02-preview", + "2020-02-02", + "2018-05-01-preview", + "2015-05-01", + "2014-12-01-preview", + "2014-08-01", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "West US 2", + "UK South", + "Canada Central", + "Central India", + "Japan East", + "Australia East", + "Korea Central", + "France Central", + "Central US", + "East US 2", + "East Asia", + "West US", + "South Africa North", + "North Central US", + "Brazil South", + "Switzerland North", + "Norway East", + "Norway West", + "Australia Southeast", + "Australia Central 2", + "Germany West Central", + "Switzerland West", + "UAE Central", + "UK West", + "Japan West", + "Brazil Southeast", + "UAE North", + "Australia Central", + "France South", + "South India", + "West US 3", + "Korea South", + "Sweden Central", + "Canada East", + "Jio India Central", + "Jio India West", + "Qatar Central", + "South Africa West", + "Germany North", + "Poland Central" + ], + "properties": null, + "resourceType": "components/analyticsItems", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-06-15", + "2020-02-02-preview", + "2020-02-02", + "2018-05-01-preview", + "2015-05-01", + "2014-12-01-preview", + "2014-08-01", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "West US 2", + "UK South", + "Canada Central", + "Central India", + "Japan East", + "Australia East", + "Korea Central", + "France Central", + "Central US", + "East US 2", + "East Asia", + "West US", + "South Africa North", + "North Central US", + "Brazil South", + "Switzerland North", + "Norway East", + "Norway West", + "Australia Southeast", + "Australia Central 2", + "Germany West Central", + "Switzerland West", + "UAE Central", + "UK West", + "Japan West", + "Brazil Southeast", + "UAE North", + "Australia Central", + "France South", + "South India", + "West US 3", + "Korea South", + "Sweden Central", + "Canada East", + "Jio India Central", + "Jio India West", + "Qatar Central", + "South Africa West", + "Germany North", + "Poland Central" + ], + "properties": null, + "resourceType": "components/webtests", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-02-02-preview", + "2020-02-02", + "2018-05-01-preview", + "2015-05-01", + "2014-12-01-preview", + "2014-08-01", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "West US 2", + "UK South", + "Canada Central", + "Central India", + "Japan East", + "Australia East", + "Korea Central", + "France Central", + "Central US", + "East US 2", + "East Asia", + "West US", + "South Africa North", + "North Central US", + "Brazil South", + "Switzerland North", + "Norway East", + "Norway West", + "Australia Southeast", + "Australia Central 2", + "Germany West Central", + "Switzerland West", + "UAE Central", + "UK West", + "Japan West", + "Brazil Southeast", + "UAE North", + "Australia Central", + "France South", + "South India", + "West US 3", + "Korea South", + "Sweden Central", + "Canada East", + "Jio India Central", + "Jio India West", + "Qatar Central", + "South Africa West", + "Germany North", + "Poland Central" + ], + "properties": null, + "resourceType": "components/workItemConfigs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-02-02-preview", + "2020-02-02", + "2018-05-01-preview", + "2015-05-01", + "2014-12-01-preview", + "2014-08-01", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "West US 2", + "UK South", + "Canada Central", + "Central India", + "Japan East", + "Australia East", + "Korea Central", + "France Central", + "Central US", + "East US 2", + "East Asia", + "West US", + "South Africa North", + "North Central US", + "Brazil South", + "Switzerland North", + "Norway East", + "Norway West", + "Australia Southeast", + "Australia Central 2", + "Germany West Central", + "Switzerland West", + "UAE Central", + "UK West", + "Japan West", + "Brazil Southeast", + "UAE North", + "Australia Central", + "France South", + "South India", + "West US 3", + "Korea South", + "Sweden Central", + "Canada East", + "Jio India Central", + "Jio India West", + "Qatar Central", + "South Africa West", + "Germany North", + "Poland Central" + ], + "properties": null, + "resourceType": "components/myFavorites", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-02-02-preview", + "2020-02-02", + "2018-05-01-preview", + "2015-05-01", + "2014-12-01-preview", + "2014-08-01", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central 2", + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Europe", + "West US 2", + "West US 3", + "West US", + "Qatar Central" + ], + "properties": null, + "resourceType": "components/operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-02-02-preview", + "2020-02-02", + "2018-05-01-preview", + "2015-05-01", + "2014-12-01-preview", + "2014-08-01", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "West US 2", + "UK South", + "Canada Central", + "Central India", + "Japan East", + "Australia East", + "Korea Central", + "France Central", + "Central US", + "East US 2", + "East Asia", + "West US", + "South Africa North", + "North Central US", + "Brazil South", + "Switzerland North", + "Norway East", + "Norway West", + "Australia Southeast", + "Australia Central 2", + "Germany West Central", + "Switzerland West", + "UAE Central", + "UK West", + "Japan West", + "Brazil Southeast", + "UAE North", + "Australia Central", + "France South", + "South India", + "West US 3", + "Korea South", + "Sweden Central", + "Canada East", + "Jio India Central", + "Jio India West", + "Qatar Central" + ], + "properties": null, + "resourceType": "components/exportConfiguration", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-02-02-preview", + "2020-02-02", + "2018-05-01-preview", + "2015-05-01", + "2014-12-01-preview", + "2014-08-01", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central 2", + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Europe", + "West US 2", + "West US 3", + "West US", + "Qatar Central" + ], + "properties": null, + "resourceType": "components/purge", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-02-02-preview", + "2020-02-02", + "2018-05-01-preview", + "2015-05-01", + "2014-12-01-preview", + "2014-08-01", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central 2", + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Europe", + "West US 2", + "West US 3", + "West US", + "Qatar Central" + ], + "properties": null, + "resourceType": "components/api", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-02-02-preview", + "2020-02-02", + "2018-05-01-preview", + "2015-05-01", + "2014-12-01-preview", + "2014-08-01", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "West US 2", + "UK South", + "Canada Central", + "Central India", + "Japan East", + "Australia East", + "Korea Central", + "France Central", + "Central US", + "East US 2", + "East Asia", + "West US", + "South Africa North", + "North Central US", + "Brazil South", + "Switzerland North", + "Norway East", + "Norway West", + "Australia Southeast", + "Australia Central 2", + "Germany West Central", + "Switzerland West", + "UAE Central", + "UK West", + "Japan West", + "Brazil Southeast", + "UAE North", + "Australia Central", + "France South", + "South India", + "West US 3", + "Korea South", + "Sweden Central", + "Canada East", + "Jio India Central", + "Jio India West", + "Qatar Central", + "South Africa West", + "Germany North", + "Poland Central" + ], + "properties": null, + "resourceType": "components/aggregate", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-02-02-preview", + "2020-02-02", + "2018-05-01-preview", + "2015-05-01", + "2014-12-01-preview", + "2014-08-01", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "West US 2", + "UK South", + "Canada Central", + "Central India", + "Japan East", + "Australia East", + "Korea Central", + "France Central", + "Central US", + "East US 2", + "East Asia", + "West US", + "South Africa North", + "North Central US", + "Brazil South", + "Switzerland North", + "Norway East", + "Norway West", + "Australia Southeast", + "Australia Central 2", + "Germany West Central", + "Switzerland West", + "UAE Central", + "UK West", + "Japan West", + "Brazil Southeast", + "UAE North", + "Australia Central", + "France South", + "South India", + "West US 3", + "Korea South", + "Sweden Central", + "Canada East", + "Jio India Central", + "Jio India West", + "Qatar Central", + "South Africa West", + "Germany North", + "Poland Central" + ], + "properties": null, + "resourceType": "components/metricDefinitions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-02-02-preview", + "2020-02-02", + "2018-05-01-preview", + "2015-05-01", + "2014-12-01-preview", + "2014-08-01", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central 2", + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Europe", + "West US 2", + "West US 3", + "West US", + "Qatar Central" + ], + "properties": null, + "resourceType": "components/extendQueries", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-02-02-preview", + "2020-02-02", + "2018-05-01-preview", + "2015-05-01", + "2014-12-01-preview", + "2014-08-01", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "West US 2", + "UK South", + "Canada Central", + "Central India", + "Japan East", + "Australia East", + "Korea Central", + "France Central", + "Central US", + "East US 2", + "East Asia", + "West US", + "South Africa North", + "North Central US", + "Brazil South", + "Switzerland North", + "Norway East", + "Norway West", + "Australia Southeast", + "Australia Central 2", + "Germany West Central", + "Switzerland West", + "UAE Central", + "UK West", + "Japan West", + "Brazil Southeast", + "UAE North", + "Australia Central", + "France South", + "South India", + "West US 3", + "Korea South", + "Sweden Central", + "Canada East", + "Jio India Central", + "Jio India West", + "Qatar Central", + "South Africa West", + "Germany North", + "Poland Central" + ], + "properties": null, + "resourceType": "components/apiKeys", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-02-02-preview", + "2020-02-02", + "2018-05-01-preview", + "2015-05-01", + "2014-12-01-preview", + "2014-08-01", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "West US 2", + "UK South", + "Canada Central", + "Central India", + "Japan East", + "Australia East", + "Korea Central", + "France Central", + "Central US", + "East US 2", + "East Asia", + "West US", + "South Africa North", + "North Central US", + "Brazil South", + "Switzerland North", + "Norway East", + "Norway West", + "Australia Southeast", + "Australia Central 2", + "Germany West Central", + "Switzerland West", + "UAE Central", + "UK West", + "Japan West", + "Brazil Southeast", + "UAE North", + "Australia Central", + "France South", + "South India", + "West US 3", + "Korea South", + "Sweden Central", + "Canada East", + "Jio India Central", + "Jio India West", + "Qatar Central", + "South Africa West", + "Germany North", + "Poland Central" + ], + "properties": null, + "resourceType": "components/myAnalyticsItems", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-02-02-preview", + "2020-02-02", + "2018-05-01-preview", + "2015-05-01", + "2014-12-01-preview", + "2014-08-01", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "West US 2", + "UK South", + "Canada Central", + "Central India", + "Japan East", + "Australia East", + "Korea Central", + "France Central", + "Central US", + "East US 2", + "East Asia", + "West US", + "South Africa North", + "North Central US", + "Brazil South", + "Switzerland North", + "Norway East", + "Norway West", + "Australia Southeast", + "Australia Central 2", + "Germany West Central", + "Switzerland West", + "UAE Central", + "UK West", + "Japan West", + "Brazil Southeast", + "UAE North", + "Australia Central", + "France South", + "South India", + "West US 3", + "Korea South", + "Sweden Central", + "Canada East", + "Jio India Central", + "Jio India West", + "Qatar Central", + "South Africa West", + "Germany North", + "Poland Central" + ], + "properties": null, + "resourceType": "components/favorites", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-02-02-preview", + "2020-02-02", + "2018-05-01-preview", + "2015-05-01", + "2014-12-01-preview", + "2014-08-01", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "West US 2", + "UK South", + "Canada Central", + "Central India", + "Japan East", + "Australia East", + "Korea Central", + "France Central", + "Central US", + "East US 2", + "East Asia", + "West US", + "South Africa North", + "North Central US", + "Brazil South", + "Switzerland North", + "Norway East", + "Norway West", + "Australia Southeast", + "Australia Central 2", + "Germany West Central", + "Switzerland West", + "UAE Central", + "UK West", + "Japan West", + "Brazil Southeast", + "UAE North", + "Australia Central", + "France South", + "South India", + "West US 3", + "Korea South", + "Sweden Central", + "Canada East", + "Jio India Central", + "Jio India West", + "Qatar Central", + "South Africa West", + "Germany North", + "Poland Central" + ], + "properties": null, + "resourceType": "components/defaultWorkItemConfig", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-02-02-preview", + "2020-02-02", + "2018-05-01-preview", + "2015-05-01", + "2014-12-01-preview", + "2014-08-01", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "West US 2", + "UK South", + "Canada Central", + "Central India", + "Japan East", + "Australia East", + "Korea Central", + "France Central", + "Central US", + "East US 2", + "East Asia", + "West US", + "South Africa North", + "North Central US", + "Brazil South", + "Switzerland North", + "Norway East", + "Norway West", + "Australia Southeast", + "Australia Central 2", + "Germany West Central", + "Switzerland West", + "UAE Central", + "UK West", + "Japan West", + "Brazil Southeast", + "UAE North", + "Australia Central", + "France South", + "South India", + "West US 3", + "Korea South", + "Sweden Central", + "Canada East", + "Jio India Central", + "Jio India West", + "Qatar Central", + "South Africa West", + "Germany North", + "Poland Central" + ], + "properties": null, + "resourceType": "components/annotations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-02-02-preview", + "2020-02-02", + "2018-05-01-preview", + "2015-05-01", + "2014-12-01-preview", + "2014-08-01", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "West US 2", + "UK South", + "Canada Central", + "Central India", + "Japan East", + "Australia East", + "Korea Central", + "France Central", + "Central US", + "East US 2", + "East Asia", + "West US", + "South Africa North", + "North Central US", + "Brazil South", + "Switzerland North", + "Norway East", + "Norway West", + "Australia Southeast", + "Australia Central 2", + "Germany West Central", + "Switzerland West", + "UAE Central", + "UK West", + "Japan West", + "Brazil Southeast", + "UAE North", + "Australia Central", + "France South", + "South India", + "West US 3", + "Korea South", + "Sweden Central", + "Canada East", + "Jio India Central", + "Jio India West", + "Qatar Central", + "South Africa West", + "Germany North", + "Poland Central" + ], + "properties": null, + "resourceType": "components/proactiveDetectionConfigs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-02-02-preview", + "2020-02-02", + "2018-05-01-preview", + "2015-05-01", + "2014-12-01-preview", + "2014-08-01", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "West US 2", + "UK South", + "Canada Central", + "Central India", + "Japan East", + "Australia East", + "Korea Central", + "France Central", + "Central US", + "East US 2", + "East Asia", + "West US", + "South Africa North", + "North Central US", + "Brazil South", + "Switzerland North", + "Norway East", + "Norway West", + "Australia Southeast", + "Australia Central 2", + "Germany West Central", + "Switzerland West", + "UAE Central", + "UK West", + "Japan West", + "Brazil Southeast", + "UAE North", + "Australia Central", + "France South", + "South India", + "West US 3", + "Korea South", + "Sweden Central", + "Canada East", + "Jio India Central", + "Jio India West", + "Qatar Central", + "South Africa West", + "Germany North", + "Poland Central" + ], + "properties": null, + "resourceType": "components/move", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-02-02-preview", + "2020-02-02", + "2018-05-01-preview", + "2015-05-01", + "2014-12-01-preview", + "2014-08-01", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "West US 2", + "UK South", + "Canada Central", + "Central India", + "Japan East", + "Australia East", + "Korea Central", + "France Central", + "Central US", + "East US 2", + "East Asia", + "West US", + "South Africa North", + "North Central US", + "Brazil South", + "Switzerland North", + "Norway East", + "Norway West", + "Australia Southeast", + "Australia Central 2", + "Germany West Central", + "Switzerland West", + "UAE Central", + "UK West", + "Japan West", + "Brazil Southeast", + "UAE North", + "Australia Central", + "France South", + "South India", + "West US 3", + "Korea South", + "Sweden Central", + "Canada East", + "Jio India Central", + "Jio India West", + "Qatar Central", + "South Africa West", + "Germany North", + "Poland Central" + ], + "properties": null, + "resourceType": "components/currentBillingFeatures", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-02-02-preview", + "2020-02-02", + "2018-05-01-preview", + "2015-05-01", + "2014-12-01-preview", + "2014-08-01", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "West US 2", + "UK South", + "Canada Central", + "Central India", + "Japan East", + "Australia East", + "Korea Central", + "France Central", + "Central US", + "East US 2", + "East Asia", + "West US", + "South Africa North", + "North Central US", + "Brazil South", + "Switzerland North", + "Norway East", + "Norway West", + "Australia Southeast", + "Australia Central 2", + "Germany West Central", + "Switzerland West", + "UAE Central", + "UK West", + "Japan West", + "Brazil Southeast", + "UAE North", + "Australia Central", + "France South", + "South India", + "West US 3", + "Korea South", + "Sweden Central", + "Canada East", + "Jio India Central", + "Jio India West", + "Qatar Central", + "South Africa West", + "Germany North", + "Poland Central" + ], + "properties": null, + "resourceType": "components/quotaStatus", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-02-02-preview", + "2020-02-02", + "2018-05-01-preview", + "2015-05-01", + "2014-12-01-preview", + "2014-08-01", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "West US 2", + "UK South", + "Canada Central", + "Central India", + "Japan East", + "Australia East", + "Korea Central", + "France Central", + "Central US", + "East US 2", + "East Asia", + "West US", + "South Africa North", + "North Central US", + "Brazil South", + "Switzerland North", + "Norway East", + "Norway West", + "Australia Southeast", + "Australia Central 2", + "Germany West Central", + "Switzerland West", + "UAE Central", + "UK West", + "Japan West", + "Brazil Southeast", + "UAE North", + "Australia Central", + "France South", + "South India", + "West US 3", + "Korea South", + "Sweden Central", + "Canada East", + "Jio India Central", + "Jio India West", + "Qatar Central", + "South Africa West", + "Germany North", + "Poland Central" + ], + "properties": null, + "resourceType": "components/featureCapabilities", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-02-02-preview", + "2020-02-02", + "2018-05-01-preview", + "2015-05-01", + "2014-12-01-preview", + "2014-08-01", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "West US 2", + "UK South", + "Canada Central", + "Central India", + "Japan East", + "Australia East", + "Korea Central", + "France Central", + "Central US", + "East US 2", + "East Asia", + "West US", + "South Africa North", + "North Central US", + "Brazil South", + "Switzerland North", + "Norway East", + "Norway West", + "Australia Southeast", + "Australia Central 2", + "Germany West Central", + "Switzerland West", + "UAE Central", + "UK West", + "Japan West", + "Brazil Southeast", + "UAE North", + "Australia Central", + "France South", + "South India", + "West US 3", + "Korea South", + "Sweden Central", + "Canada East", + "Jio India Central", + "Jio India West", + "Qatar Central", + "South Africa West", + "Germany North", + "Poland Central" + ], + "properties": null, + "resourceType": "components/getAvailableBillingFeatures", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-06-15", + "2018-05-01-preview", + "2015-05-01", + "2014-08-01", + "2014-04-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "West US 2", + "UK South", + "Central India", + "Canada Central", + "Japan East", + "Australia East", + "Korea Central", + "France Central", + "Central US", + "East US 2", + "East Asia", + "West US", + "South Africa North", + "North Central US", + "Brazil South", + "Switzerland North", + "Norway East", + "Norway West", + "Australia Southeast", + "Australia Central 2", + "Germany West Central", + "Switzerland West", + "UAE Central", + "UK West", + "Brazil Southeast", + "Japan West", + "UAE North", + "Australia Central", + "France South", + "South India", + "West US 3", + "Korea South", + "Sweden Central", + "Canada East", + "Jio India Central", + "Jio India West", + "Qatar Central", + "South Africa West", + "Germany North", + "Poland Central" + ], + "properties": null, + "resourceType": "webtests", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-02-10-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "West US 2", + "UK South", + "Central India", + "Canada Central", + "Japan East", + "Australia East", + "Korea Central", + "France Central", + "East US 2", + "East Asia", + "West US", + "Central US", + "South Africa North", + "North Central US" + ], + "properties": null, + "resourceType": "webtests/getTestResultFile", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-15-preview", + "2022-08-01-preview", + "2022-06-15", + "2021-08-01", + "2021-02-01-preview", + "2020-05-01-preview", + "2018-04-16", + "2017-09-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-03-15-preview", + "locationMappings": null, + "locations": [ + "West Central US", + "West Europe", + "Australia East", + "Central US", + "East US", + "East US 2", + "France Central", + "Japan East", + "North Europe", + "South Africa North", + "Southeast Asia", + "UK South", + "West US 2", + "Central India", + "Canada Central", + "Australia Southeast", + "South Central US", + "Australia Central", + "Korea Central", + "East Asia", + "West US", + "North Central US", + "Brazil South", + "UK West", + "Switzerland North", + "Switzerland West", + "UAE Central", + "Germany West Central", + "Australia Central 2", + "Brazil SouthEast", + "Norway East", + "UAE North", + "Japan West", + "South India", + "France South", + "Norway West", + "West US 3", + "Sweden Central", + "Korea South", + "Jio India West", + "Canada East", + "Jio India Central", + "Qatar Central", + "South Africa West", + "Germany North", + "Israel Central", + "Italy North", + "Poland Central" + ], + "properties": null, + "resourceType": "scheduledqueryrules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-10-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "West US 2", + "UK South", + "Canada Central", + "Central India", + "Japan East", + "Australia East", + "Korea Central", + "France Central", + "Central US", + "East US 2", + "East Asia", + "West US", + "South Africa North", + "North Central US", + "Brazil South", + "Switzerland North", + "Norway East", + "Norway West", + "Australia Southeast", + "Australia Central 2", + "Germany West Central", + "Switzerland West", + "UAE Central", + "UK West", + "Japan West", + "Brazil Southeast", + "UAE North", + "Australia Central", + "France South", + "South India", + "West US 3", + "Korea South", + "Sweden Central", + "Canada East", + "Jio India Central", + "Jio India West", + "Qatar Central", + "South Africa West", + "Germany North", + "Poland Central" + ], + "properties": null, + "resourceType": "components/pricingPlans", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-10-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2017-10-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "West US 2" + ], + "properties": null, + "resourceType": "migrateToNewPricingModel", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-10-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2017-10-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "West US 2" + ], + "properties": null, + "resourceType": "rollbackToLegacyPricingModel", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-10-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2017-10-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "West US 2" + ], + "properties": null, + "resourceType": "listMigrationdate", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-03-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2016-03-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "logprofiles", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-03-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "migratealertrules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-03-01", + "2017-09-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Global", + "West Europe", + "North Europe", + "Sweden Central", + "Germany West Central" + ], + "properties": null, + "resourceType": "metricalerts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-03-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2016-03-01", + "2015-04-01", + "2014-04-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "North Central US", + "South Central US", + "East US 2", + "Central US", + "Australia East", + "Australia Southeast", + "Brazil South", + "UK South", + "UK West", + "South India", + "Central India", + "West India", + "Canada East", + "Canada Central", + "West Central US", + "West US 2", + "Korea South", + "Korea Central", + "Australia Central", + "Australia Central 2", + "France Central", + "France South", + "South Africa North", + "UAE Central", + "UAE North" + ], + "properties": null, + "resourceType": "alertrules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2015-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-01-01-preview", + "2022-10-01", + "2021-05-01-preview", + "2015-04-01", + "2014-04-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "South Central US", + "East US 2", + "Central US", + "Australia Southeast", + "Brazil South", + "UK South", + "UK West", + "South India", + "Central India", + "West India", + "Canada East", + "Canada Central", + "West Central US", + "West US 2", + "Korea South", + "Korea Central", + "Australia Central", + "Australia Central 2", + "France Central", + "France South", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "North Central US", + "Australia East", + "South Africa North", + "UAE Central", + "UAE North", + "Switzerland North", + "Switzerland West", + "Germany North", + "Germany West Central", + "Norway East", + "Norway West", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Israel Central", + "Italy North" + ], + "properties": null, + "resourceType": "autoscalesettings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2015-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2017-03-01-preview", + "2016-09-01-preview", + "2015-04-01", + "2014-11-01", + "2014-04-01" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "eventtypes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2015-04-01", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US" + ], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2015-04-01", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations/operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-11-27-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "vmInsightsOnboardingStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2015-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2015-04-01", + "2014-06-01", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-09-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2021-05-01-preview", + "2017-05-01-preview", + "2016-09-01", + "2015-07-01" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "North Central US", + "South Central US", + "East US 2", + "Central US", + "Australia East", + "Australia Southeast", + "Brazil South", + "UK South", + "UK West", + "South India", + "Central India", + "West India", + "Canada East", + "Canada Central", + "West Central US", + "West US 2", + "Korea South", + "Korea Central", + "Australia Central", + "Australia Central 2", + "France Central", + "France South", + "South Africa North", + "UAE Central", + "UAE North", + "Switzerland North", + "Switzerland West", + "Germany North", + "Germany West Central", + "Norway East", + "Norway West", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Israel Central", + "Italy North" + ], + "properties": null, + "resourceType": "diagnosticSettings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-05-01-preview", + "2017-05-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "North Central US", + "South Central US", + "East US 2", + "Central US", + "Australia East", + "Australia Southeast", + "Brazil South", + "UK South", + "UK West", + "South India", + "Central India", + "West India", + "Canada East", + "Canada Central", + "West Central US", + "West US 2", + "Korea South", + "Korea Central", + "Australia Central", + "Australia Central 2", + "France Central", + "France South", + "South Africa North", + "UAE Central", + "UAE North", + "Switzerland North", + "Switzerland West", + "Germany North", + "Germany West Central", + "Norway East", + "Norway West", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Israel Central", + "Italy North" + ], + "properties": null, + "resourceType": "diagnosticSettingsCategories", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-02-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2017-02-01" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "North Central US", + "South Central US", + "East US 2", + "Central US", + "Australia East", + "Australia Southeast", + "Brazil South", + "UK South", + "UK West", + "South India", + "Central India", + "West India", + "Canada East", + "Canada Central", + "West Central US", + "West US 2", + "Korea South", + "Korea Central", + "Australia Central", + "Australia Central 2", + "France Central", + "France South", + "South Africa North", + "UAE Central", + "UAE North", + "Switzerland North", + "Switzerland West", + "Germany North", + "Germany West Central", + "Norway East", + "Norway West", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Israel Central", + "Italy North" + ], + "properties": null, + "resourceType": "extendedDiagnosticSettings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-01-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2022-04-01-preview", + "2021-05-01", + "2018-01-01", + "2017-12-01-preview", + "2017-09-01-preview", + "2017-05-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West US", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "North Central US", + "South Central US", + "East US 2", + "Canada East", + "Canada Central", + "Central US", + "Australia East", + "Australia Southeast", + "Australia Central", + "Australia Central 2", + "Brazil South", + "Brazil Southeast", + "South India", + "Central India", + "West India", + "North Europe", + "West US 2", + "Jio India West", + "Sweden Central", + "West US 3", + "West Central US", + "Korea South", + "Korea Central", + "UK South", + "UK West", + "France Central", + "France South", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "Qatar Central", + "Poland Central", + "Israel Central", + "Italy North", + "Switzerland North", + "Switzerland West", + "Germany North", + "Germany West Central", + "Norway East", + "Norway West" + ], + "properties": null, + "resourceType": "metricDefinitions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2015-07-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2015-07-01" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "North Central US", + "South Central US", + "East US 2", + "Central US", + "Australia East", + "Australia Southeast", + "Brazil South", + "UK South", + "UK West", + "South India", + "Central India", + "West India", + "Canada East", + "Canada Central", + "West Central US", + "West US 2", + "Korea South", + "Korea Central", + "Australia Central", + "Australia Central 2", + "France Central", + "France South" + ], + "properties": null, + "resourceType": "logDefinitions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2015-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2015-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "eventCategories", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-01-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2021-05-01", + "2019-07-01", + "2018-01-01", + "2017-12-01-preview", + "2017-09-01-preview", + "2017-05-01-preview", + "2016-09-01", + "2016-06-01" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West US", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "North Central US", + "South Central US", + "East US 2", + "Canada East", + "Canada Central", + "Central US", + "Australia East", + "Australia Southeast", + "Australia Central", + "Australia Central 2", + "Brazil South", + "Brazil Southeast", + "South India", + "Central India", + "West India", + "North Europe", + "West US 2", + "Jio India West", + "Sweden Central", + "West US 3", + "West Central US", + "Korea South", + "Korea Central", + "UK South", + "UK West", + "France Central", + "France South", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "Qatar Central", + "Poland Central", + "Israel Central", + "Italy North", + "Switzerland North", + "Switzerland West", + "Germany North", + "Germany West Central", + "Norway East", + "Norway West" + ], + "properties": null, + "resourceType": "metrics", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "metricbatch", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-12-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West US", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "North Central US", + "South Central US", + "East US 2", + "Canada East", + "Canada Central", + "Central US", + "Australia East", + "Australia Southeast", + "Australia Central", + "Australia Central 2", + "Brazil South", + "Brazil Southeast", + "South India", + "Central India", + "West India", + "North Europe", + "West US 2", + "Jio India West", + "Sweden Central", + "West US 3", + "West Central US", + "Korea South", + "Korea Central", + "UK South", + "UK West", + "France Central", + "France South", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "Qatar Central", + "Poland Central", + "Israel Central", + "Italy North", + "Switzerland North", + "Switzerland West", + "Germany North", + "Germany West Central", + "Norway East", + "Norway West" + ], + "properties": null, + "resourceType": "metricNamespaces", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2023-05-01", + "2023-01-01", + "2022-06-01", + "2022-04-01", + "2021-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "notificationstatus", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2023-05-01", + "2023-01-01", + "2022-06-01", + "2022-04-01", + "2021-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "createnotifications", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2023-03-01-preview", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-08-01-preview", + "2023-05-01-preview", + "2023-03-01-preview" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsExtension", + "defaultApiVersion": "2023-08-01-preview", + "locationMappings": null, + "locations": [ + "Global" + ], + "properties": null, + "resourceType": "tenantactiongroups", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-08-01-preview", + "2023-05-01", + "2023-01-01", + "2022-06-01", + "2022-04-01", + "2021-09-01", + "2019-06-01", + "2019-03-01", + "2018-09-01", + "2018-03-01", + "2017-04-01", + "2017-03-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-08-01-preview", + "locationMappings": null, + "locations": [ + "Global", + "Sweden Central", + "Germany West Central", + "North Central US", + "South Central US" + ], + "properties": null, + "resourceType": "actiongroups", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2020-10-01", + "2017-04-01", + "2017-03-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Global" + ], + "properties": null, + "resourceType": "activityLogAlerts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-03-01", + "2018-09-01" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Europe", + "North Europe" + ], + "properties": null, + "resourceType": "metricbaselines", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2022-04-01", + "2021-08-01", + "2021-03-08", + "2020-10-20", + "2020-02-12", + "2018-06-17-preview", + "2018-06-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Europe", + "South Central US", + "East US", + "North Europe", + "Southeast Asia", + "West US 2", + "Japan East", + "Australia East", + "Korea Central", + "France Central", + "Central US", + "East US 2", + "East Asia", + "West US", + "Canada Central", + "Central India", + "UK South", + "UK West", + "South Africa North", + "North Central US", + "Brazil South", + "Switzerland North", + "Norway East", + "Norway West", + "Australia Southeast", + "Australia Central 2", + "Germany West Central", + "Switzerland West", + "UAE Central", + "Japan West", + "Brazil Southeast", + "UAE North", + "Australia Central", + "France South", + "South India", + "West Central US", + "West US 3", + "Korea South", + "Canada East", + "Sweden Central", + "Jio India Central", + "Jio India West", + "Qatar Central", + "South Africa West", + "Germany North", + "Poland Central" + ], + "properties": null, + "resourceType": "workbooks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-11-20", + "2019-10-17-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Europe", + "South Central US", + "East US", + "North Europe", + "Southeast Asia", + "West US 2", + "Japan East", + "Australia East", + "Korea Central", + "France Central", + "Central US", + "East US 2", + "East Asia", + "West US", + "Canada Central", + "Central India", + "UK South", + "UK West", + "South Africa North", + "North Central US", + "Brazil South", + "Switzerland North", + "Norway East", + "Norway West", + "Australia Southeast", + "Australia Central 2", + "Germany West Central", + "Switzerland West", + "UAE Central", + "Japan West", + "Brazil Southeast", + "UAE North", + "Australia Central", + "France South", + "South India", + "West Central US", + "West US 3", + "Korea South", + "Canada East", + "Sweden Central", + "Jio India Central", + "Jio India West", + "Qatar Central", + "South Africa West", + "Germany North", + "Poland Central" + ], + "properties": null, + "resourceType": "workbooktemplates", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-03-08", + "2020-10-20", + "2020-02-12", + "2018-06-17-privatepreview", + "2018-06-17-preview", + "2018-06-15-privatepreview", + "2018-06-15-preview", + "2018-06-01-preview", + "2016-06-15-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Europe", + "South Central US", + "East US", + "North Europe", + "Southeast Asia", + "West US 2", + "Japan East", + "Australia East", + "Korea Central", + "France Central", + "Central US", + "East US 2", + "East Asia", + "West US", + "Canada Central", + "Central India", + "UK South", + "UK West", + "South Africa North", + "North Central US", + "Brazil South", + "Switzerland North", + "Norway East", + "Norway West", + "Australia Southeast", + "Australia Central 2", + "Germany West Central", + "Switzerland West", + "UAE Central", + "Japan West", + "Brazil Southeast", + "UAE North", + "Australia Central", + "France South", + "South India", + "West US 3", + "Korea South", + "Canada East", + "Sweden Central", + "Jio India Central", + "Jio India West", + "Qatar Central", + "South Africa West", + "Germany North", + "Poland Central" + ], + "properties": null, + "resourceType": "myWorkbooks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-08-01-preview", + "2018-03-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "France South", + "Australia Central", + "South Africa North" + ], + "properties": null, + "resourceType": "logs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-10-17-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "West US 2", + "UK South", + "Central India", + "Canada Central", + "Japan East", + "Australia East", + "Korea Central", + "France Central", + "East US 2", + "East Asia", + "West US", + "Central US", + "South Africa North", + "North Central US" + ], + "properties": null, + "resourceType": "transactions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-10-17-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "West US 2", + "UK South", + "Central India", + "Canada Central", + "Japan East", + "Australia East", + "Korea Central", + "France Central", + "East US 2", + "East Asia", + "West US", + "Central US", + "South Africa North", + "North Central US" + ], + "properties": null, + "resourceType": "topology", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-10-14", + "2020-06-02-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "generateLiveToken", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-09-01-preview", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "monitoredObjects", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-06-01", + "2021-09-01-preview", + "2021-04-01", + "2019-11-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-06-01", + "locationMappings": null, + "locations": [ + "Australia Southeast", + "Canada Central", + "Poland Central", + "Israel Central", + "Italy North", + "South Africa West", + "Germany North", + "Japan East", + "Australia East", + "Central India", + "Germany West Central", + "North Central US", + "South Central US", + "East US", + "Central US", + "West Europe", + "West US 2", + "Southeast Asia", + "East US 2", + "UK South", + "North Europe", + "West US", + "Australia Central", + "West Central US", + "East Asia", + "UK West", + "Korea Central", + "France Central", + "South Africa North", + "Switzerland North", + "Australia Central 2", + "Brazil Southeast", + "Canada East", + "France South", + "Korea South", + "Norway West", + "UAE North", + "Japan West", + "Norway East", + "Switzerland West", + "Brazil South", + "Jio India Central", + "Jio India West", + "Sweden Central", + "South India", + "UAE Central", + "West US 3", + "West India", + "Qatar Central" + ], + "properties": null, + "resourceType": "dataCollectionRules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-06-01", + "2021-09-01-preview", + "2021-04-01", + "2019-11-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": "2022-06-01", + "locationMappings": null, + "locations": [ + "Australia Southeast", + "Canada Central", + "Poland Central", + "Israel Central", + "Italy North", + "South Africa West", + "Japan East", + "Australia East", + "Central India", + "Germany West Central", + "North Central US", + "South Central US", + "East US", + "Central US", + "West Europe", + "West US 2", + "Southeast Asia", + "East US 2", + "UK South", + "North Europe", + "West US", + "Australia Central", + "West Central US", + "East Asia", + "UK West", + "Korea Central", + "France Central", + "South Africa North", + "Switzerland North", + "Brazil South", + "Australia Central 2", + "Brazil Southeast", + "Canada East", + "France South", + "Korea South", + "Norway West", + "UAE North", + "Japan West", + "Norway East", + "Switzerland West", + "Jio India Central", + "Jio India West", + "Sweden Central", + "Germany North", + "South India", + "UAE Central", + "West US 3", + "West India", + "Qatar Central" + ], + "properties": null, + "resourceType": "dataCollectionRuleAssociations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-06-01", + "2021-09-01-preview", + "2021-04-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-06-01", + "locationMappings": null, + "locations": [ + "Australia Southeast", + "Canada Central", + "Poland Central", + "Israel Central", + "Italy North", + "South Africa West", + "Japan East", + "Australia East", + "Central India", + "Germany West Central", + "North Central US", + "South Central US", + "East US", + "Central US", + "West Europe", + "West US 2", + "Southeast Asia", + "East US 2", + "UK South", + "North Europe", + "West US", + "Australia Central", + "West Central US", + "East Asia", + "UK West", + "Korea Central", + "France Central", + "South Africa North", + "Switzerland North", + "Brazil South", + "Australia Central 2", + "Brazil Southeast", + "Canada East", + "France South", + "Korea South", + "Norway West", + "UAE North", + "Japan West", + "Norway East", + "Switzerland West", + "Jio India Central", + "Jio India West", + "Sweden Central", + "Germany North", + "South India", + "UAE Central", + "West US 3", + "West India", + "Qatar Central" + ], + "properties": null, + "resourceType": "dataCollectionEndpoints", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-09-01-preview", + "2021-04-01" + ], + "capabilities": "None", + "defaultApiVersion": "2021-09-01-preview", + "locationMappings": null, + "locations": [ + "Australia Southeast", + "Canada Central", + "Poland Central", + "Israel Central", + "Italy North", + "South Africa West", + "Japan East", + "Australia East", + "Central India", + "Germany West Central", + "North Central US", + "South Central US", + "East US", + "Central US", + "West Europe", + "West US 2", + "Southeast Asia", + "East US 2", + "UK South", + "North Europe", + "West US", + "Australia Central", + "West Central US", + "East Asia", + "UK West", + "Korea Central", + "France Central", + "South Africa North", + "Switzerland North", + "Brazil South", + "Australia Central 2", + "Brazil Southeast", + "Canada East", + "France South", + "Korea South", + "Norway West", + "UAE North", + "Japan West", + "Norway East", + "Switzerland West", + "Jio India Central", + "Jio India West", + "Sweden Central", + "Germany North", + "South India", + "West India", + "UAE Central", + "West US 3", + "Qatar Central" + ], + "properties": null, + "resourceType": "dataCollectionEndpoints/scopedPrivateLinkProxies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-09-01", + "2021-07-01-preview", + "2019-10-17-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2019-10-17-preview", + "locationMappings": null, + "locations": [ + "Global" + ], + "properties": null, + "resourceType": "privateLinkScopes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-09-01", + "2021-07-01-preview", + "2019-10-17-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2019-10-17-preview", + "locationMappings": null, + "locations": [ + "Global" + ], + "properties": null, + "resourceType": "privateLinkScopes/privateEndpointConnections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-09-01", + "2021-07-01-preview", + "2019-10-17-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2019-10-17-preview", + "locationMappings": null, + "locations": [ + "Global" + ], + "properties": null, + "resourceType": "privateLinkScopes/privateEndpointConnectionProxies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-09-01", + "2021-07-01-preview", + "2019-10-17-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2019-10-17-preview", + "locationMappings": null, + "locations": [ + "Global" + ], + "properties": null, + "resourceType": "privateLinkScopes/scopedResources", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Central US", + "South Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "West US 2", + "UK South", + "Canada Central", + "Central India", + "Japan East", + "Australia East", + "Korea Central", + "France Central", + "Central US", + "East US 2", + "East Asia", + "West US", + "South Africa North", + "North Central US", + "Brazil South", + "Switzerland North", + "Norway East", + "Norway West", + "Australia Southeast" + ], + "properties": null, + "resourceType": "components/linkedstorageaccounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-09-01", + "2021-07-01-preview", + "2019-10-17-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2019-10-17-preview", + "locationMappings": null, + "locations": [ + "Global" + ], + "properties": null, + "resourceType": "privateLinkScopeOperationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-10-01" + ], + "capabilities": "None", + "defaultApiVersion": "2021-10-01", + "locationMappings": null, + "locations": [ + "East US 2 EUAP", + "East US", + "East US 2", + "North Central US", + "South Central US", + "West US", + "West US 2" + ], + "properties": null, + "resourceType": "locations/notifyNetworkSecurityPerimeterUpdatesAvailable", + "zoneMappings": null + } + ] + }, + { + "authorization": { + "applicationId": "ea2f600a-4980-45b7-89bf-d34da487bda1", + "roleDefinitionId": "54d7f2e3-5040-48a7-ae90-eebf629cfa0b" + }, + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.DomainRegistration", + "namespace": "Microsoft.DomainRegistration", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "Registered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-02-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-02-01", + "2015-04-01", + "2015-02-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "domains", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-02-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-02-01", + "2015-04-01", + "2015-02-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "domains/domainOwnershipIdentifiers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-02-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-02-01", + "2015-04-01", + "2015-02-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "topLevelDomains", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-02-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-02-01", + "2015-04-01", + "2015-02-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "checkDomainAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-02-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-02-01", + "2015-04-01", + "2015-02-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "listDomainRecommendations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-02-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-02-01", + "2015-04-01", + "2015-02-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "validateDomainRegistrationInformation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-02-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-02-01", + "2015-04-01", + "2015-02-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "generateSsoRequest", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-02-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-02-01", + "2015-04-01", + "2015-02-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "2cf9eb86-36b5-49dc-86ae-9a63135dfa8c", + "roleDefinitionId": "13ba9ab4-19f0-4804-adc4-14ece36cc7a1" + }, + { + "applicationId": "7c33bfcb-8d33-48d6-8e60-dc6404003489", + "roleDefinitionId": "ad6261e4-fa9a-4642-aa5f-104f1b67e9e3" + }, + { + "applicationId": "1e3e4475-288f-4018-a376-df66fd7fac5f", + "roleDefinitionId": "1d538b69-3d87-4e56-8ff8-25786fd48261" + }, + { + "applicationId": "a0be0c72-870e-46f0-9c49-c98333a996f7", + "roleDefinitionId": "7ce22727-ffce-45a9-930c-ddb2e56fa131" + }, + { + "applicationId": "486c78bf-a0f7-45f1-92fd-37215929e116", + "roleDefinitionId": "98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d" + }, + { + "applicationId": "19947cfd-0303-466c-ac3c-fcc19a7a1570", + "roleDefinitionId": "d813ab6c-bfb7-413e-9462-005b21f0ce09" + }, + { + "applicationId": "341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd", + "roleDefinitionId": "8141843c-c51c-4c1e-a5bf-0d351594b86c" + }, + { + "applicationId": "328fd23b-de6e-462c-9433-e207470a5727", + "roleDefinitionId": "79e29e06-4056-41e5-a6b2-959f1f47747e" + }, + { + "applicationId": "6d057c82-a784-47ae-8d12-ca7b38cf06b4", + "managedByRoleDefinitionId": "82e8942a-bcb6-444a-b1c4-31a3ea463a7d", + "roleDefinitionId": "c27dd31e-c1e5-4ab0-93e1-a12ba34f182e" + }, + { + "applicationId": "b4ca0290-4e73-4e31-ade0-c82ecfaabf6a", + "roleDefinitionId": "18363e25-ff21-4159-ae8d-7dfecb5bd001" + }, + { + "applicationId": "79d7fb34-4bef-4417-8184-ff713af7a679", + "roleDefinitionId": "1c1f11ef-abfa-4abe-a02b-226771d07fc7" + }, + { + "applicationId": "38808189-fa7a-4d8a-807f-eba01edacca6", + "roleDefinitionId": "7dbad3e2-b105-40d5-8fe4-4a9ff6c17ae6" + }, + { + "applicationId": "6e02f8e9-db9b-4eb5-aa5a-7c8968375f68", + "roleDefinitionId": "787424c7-f9d2-416b-a939-4d59deb2d259" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Network", + "namespace": "Microsoft.Network", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "Registered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2015-06-15", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2017-03-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2017-10-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01", + "2017-08-01", + "2017-06-01", + "2017-04-01", + "2017-03-01", + "2016-12-01", + "2016-11-01", + "2016-10-01", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview", + "2014-12-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-03-01", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "virtualNetworkGateways", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2015-06-15", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2017-03-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2017-10-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01", + "2017-08-01", + "2017-06-01", + "2017-04-01", + "2017-03-01", + "2016-12-01", + "2016-11-01", + "2016-10-01", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview", + "2014-12-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-03-01", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "localNetworkGateways", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2015-06-15", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2017-03-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2017-10-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01", + "2017-08-01", + "2017-06-01", + "2017-04-01", + "2017-03-01", + "2016-12-01", + "2016-11-01", + "2016-10-01", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview", + "2014-12-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-03-01", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "connections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01", + "2017-08-01", + "2017-06-01", + "2017-04-01", + "2017-03-01", + "2016-12-01", + "2016-11-01", + "2016-10-01", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview", + "2014-12-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-03-01", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "applicationGateways", + "zoneMappings": [ + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Korea Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Central US", + "zones": [] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Poland Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Qatar Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Sweden Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Switzerland North", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UAE North", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US", + "zones": [] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Italy North", + "zones": [ + "2", + "1", + "3" + ] + } + ] + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01", + "2017-08-01", + "2017-06-01", + "2017-04-01", + "2017-03-01", + "2016-12-01", + "2016-11-01", + "2016-10-01", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview", + "2014-12-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-03-01", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "expressRouteCircuits", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01", + "2017-08-01", + "2017-06-01", + "2017-04-01", + "2017-03-01", + "2016-12-01", + "2016-11-01", + "2016-10-01", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview", + "2014-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "expressRouteServiceProviders", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01", + "2017-08-01", + "2017-06-01", + "2017-04-01", + "2017-03-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "applicationGatewayAvailableWafRuleSets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01", + "2017-08-01", + "2017-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "applicationGatewayAvailableSslOptions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "applicationGatewayAvailableServerVariables", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "applicationGatewayAvailableRequestHeaders", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "applicationGatewayAvailableResponseHeaders", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01", + "2017-08-01", + "2017-06-01", + "2017-04-01", + "2017-03-01", + "2016-12-01", + "2016-11-01", + "2016-10-01", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview", + "2014-12-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-03-01", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "routeFilters", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01", + "2017-08-01", + "2017-06-01", + "2017-04-01", + "2017-03-01", + "2016-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "bgpServiceCommunities", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-03-01", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "vpnSites", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-03-01", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "vpnServerConfigurations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-03-01", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "virtualHubs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-03-01", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "vpnGateways", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-03-01", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "UAE North", + "South Africa North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "p2sVpnGateways", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-03-01", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "expressRouteGateways", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "expressRoutePortsLocations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-03-01", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "UAE North", + "South Africa North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "expressRoutePorts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-03-01", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "securityPartnerProviders", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-03-01", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "France Central", + "Australia Central", + "Japan West", + "Japan East", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "azureFirewalls", + "zoneMappings": [ + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Korea Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Central US", + "zones": [] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Poland Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Qatar Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Sweden Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Switzerland North", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UAE North", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US", + "zones": [] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Italy North", + "zones": [ + "2", + "1", + "3" + ] + } + ] + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "azureFirewallFqdnTags", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-03-01", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "applicationGatewayWebApplicationFirewallPolicies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/ApplicationGatewayWafDynamicManifests", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-03-01", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "virtualWans", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01" + ], + "capabilities": "CrossResourceGroupResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-03-01", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "bastionHosts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "queryExpressRoutePortsBandwidth", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-04-01-preview", + "2022-04-01", + "2018-08-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2017-05-01", + "2017-03-01", + "2015-11-01", + "2015-04-28-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2018-08-01", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "trafficmanagerprofiles", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-04-01-preview", + "2022-04-01", + "2018-08-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2017-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2018-08-01", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "trafficmanagerprofiles/heatMaps", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-04-01-preview", + "2022-04-01", + "2018-08-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2017-05-01", + "2017-03-01", + "2015-11-01", + "2015-04-28-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2018-08-01", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "trafficmanagerprofiles/azureendpoints", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-04-01-preview", + "2022-04-01", + "2018-08-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2017-05-01", + "2017-03-01", + "2015-11-01", + "2015-04-28-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2018-08-01", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "trafficmanagerprofiles/externalendpoints", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-04-01-preview", + "2022-04-01", + "2018-08-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2017-05-01", + "2017-03-01", + "2015-11-01", + "2015-04-28-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2018-08-01", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "trafficmanagerprofiles/nestedendpoints", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-04-01-preview", + "2022-04-01", + "2018-08-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2017-05-01", + "2017-03-01", + "2015-11-01", + "2015-04-28-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2018-08-01", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "checkTrafficManagerNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-04-01-preview", + "2022-04-01" + ], + "capabilities": "None", + "defaultApiVersion": "2022-04-01", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "checkTrafficManagerNameAvailabilityV2", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-04-01-preview", + "2022-04-01", + "2018-08-01", + "2018-04-01", + "2017-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2018-08-01", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "trafficManagerUserMetricsKeys", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-04-01-preview", + "2022-04-01", + "2018-08-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2017-05-01", + "2017-03-01" + ], + "capabilities": "None", + "defaultApiVersion": "2018-08-01", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "trafficManagerGeographicHierarchies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-07-01", + "2020-04-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-04-01-preview", + "locationMappings": null, + "locations": [ + "West Central US", + "East US 2", + "West Europe", + "North Europe", + "Australia East", + "UK South", + "South Central US", + "East US", + "North Central US", + "West US 2", + "West US 3", + "Southeast Asia", + "Central India", + "Canada Central", + "Central US", + "France Central", + "Japan East", + "Germany West Central", + "South Africa North", + "Korea Central", + "Sweden Central", + "East Asia", + "Switzerland North", + "Brazil South", + "West US", + "Norway East", + "UAE North", + "Australia Southeast", + "Canada East", + "Japan West", + "Qatar Central", + "Poland Central" + ], + "properties": null, + "resourceType": "dnsResolvers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-07-01", + "2020-04-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-04-01-preview", + "locationMappings": null, + "locations": [ + "West Central US", + "East US 2", + "West Europe", + "North Europe", + "Australia East", + "UK South", + "South Central US", + "East US", + "North Central US", + "West US 2", + "West US 3", + "Southeast Asia", + "Central India", + "Canada Central", + "Central US", + "France Central", + "Japan East", + "Germany West Central", + "South Africa North", + "Korea Central", + "Sweden Central", + "East Asia", + "Switzerland North", + "Brazil South", + "West US", + "Norway East", + "UAE North", + "Australia Southeast", + "Canada East", + "Japan West", + "Qatar Central", + "Poland Central" + ], + "properties": null, + "resourceType": "dnsResolvers/inboundEndpoints", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-07-01", + "2020-04-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-04-01-preview", + "locationMappings": null, + "locations": [ + "West Central US", + "East US 2", + "West Europe", + "North Europe", + "Australia East", + "UK South", + "South Central US", + "East US", + "North Central US", + "West US 2", + "West US 3", + "Southeast Asia", + "Central India", + "Canada Central", + "Central US", + "France Central", + "Japan East", + "Germany West Central", + "South Africa North", + "Korea Central", + "Sweden Central", + "East Asia", + "Switzerland North", + "Brazil South", + "West US", + "Norway East", + "UAE North", + "Australia Southeast", + "Canada East", + "Japan West", + "Qatar Central", + "Poland Central" + ], + "properties": null, + "resourceType": "dnsResolvers/outboundEndpoints", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-07-01", + "2020-04-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-04-01-preview", + "locationMappings": null, + "locations": [ + "West Central US", + "East US 2", + "West Europe", + "North Europe", + "Australia East", + "UK South", + "South Central US", + "East US", + "North Central US", + "West US 2", + "West US 3", + "Southeast Asia", + "Central India", + "Canada Central", + "Central US", + "France Central", + "Japan East", + "Germany West Central", + "South Africa North", + "Korea Central", + "Sweden Central", + "East Asia", + "Switzerland North", + "Brazil South", + "West US", + "Norway East", + "UAE North", + "Australia Southeast", + "Canada East", + "Japan West", + "Qatar Central", + "Poland Central" + ], + "properties": null, + "resourceType": "dnsForwardingRulesets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-07-01", + "2020-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2020-04-01-preview", + "locationMappings": null, + "locations": [ + "West Central US", + "East US 2", + "West Europe", + "North Europe", + "Australia East", + "UK South", + "South Central US", + "East US", + "North Central US", + "West US 2", + "West US 3", + "Southeast Asia", + "Central India", + "Canada Central", + "Central US", + "France Central", + "Japan East", + "Germany West Central", + "South Africa North", + "Korea Central", + "Sweden Central", + "East Asia", + "Switzerland North", + "Brazil South", + "West US", + "Norway East", + "UAE North", + "Australia Southeast", + "Canada East", + "Japan West", + "Qatar Central", + "Poland Central" + ], + "properties": null, + "resourceType": "dnsForwardingRulesets/forwardingRules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-07-01", + "2020-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2020-04-01-preview", + "locationMappings": null, + "locations": [ + "West Central US", + "East US 2", + "West Europe", + "North Europe", + "Australia East", + "UK South", + "South Central US", + "East US", + "North Central US", + "West US 2", + "West US 3", + "Southeast Asia", + "Central India", + "Canada Central", + "Central US", + "France Central", + "Japan East", + "Germany West Central", + "South Africa North", + "Korea Central", + "Sweden Central", + "East Asia", + "Switzerland North", + "Brazil South", + "West US", + "Norway East", + "UAE North", + "Australia Southeast", + "Canada East", + "Japan West", + "Qatar Central", + "Poland Central" + ], + "properties": null, + "resourceType": "dnsForwardingRulesets/virtualNetworkLinks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-07-01", + "2020-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2020-04-01-preview", + "locationMappings": null, + "locations": [ + "West Central US", + "East US 2", + "West Europe", + "North Europe", + "Australia East", + "UK South", + "South Central US", + "East US", + "North Central US", + "West US 2", + "West US 3", + "Southeast Asia", + "Central India", + "Canada Central", + "Central US", + "France Central", + "Japan East", + "Germany West Central", + "South Africa North", + "Korea Central", + "Sweden Central", + "East Asia", + "Switzerland North", + "Brazil South", + "West US", + "Norway East", + "UAE North", + "Australia Southeast", + "Canada East", + "Japan West", + "Qatar Central", + "Poland Central" + ], + "properties": null, + "resourceType": "virtualNetworks/listDnsResolvers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-07-01", + "2020-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2020-04-01-preview", + "locationMappings": null, + "locations": [ + "West Central US", + "East US 2", + "West Europe", + "North Europe", + "Australia East", + "UK South", + "South Central US", + "East US", + "North Central US", + "West US 2", + "West US 3", + "Southeast Asia", + "Central India", + "Canada Central", + "Central US", + "France Central", + "Japan East", + "Germany West Central", + "South Africa North", + "Korea Central", + "Sweden Central", + "East Asia", + "Switzerland North", + "Brazil South", + "West US", + "Norway East", + "UAE North", + "Australia Southeast", + "Canada East", + "Japan West", + "Qatar Central", + "Poland Central" + ], + "properties": null, + "resourceType": "virtualNetworks/listDnsForwardingRulesets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-07-01", + "2020-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2020-04-01-preview", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations/dnsResolverOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-07-01", + "2020-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2020-04-01-preview", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations/dnsResolverOperationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-06-01", + "2020-01-01", + "2018-09-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2018-09-01", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "privateDnsZones", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-06-01", + "2020-01-01", + "2018-09-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2018-09-01", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "privateDnsZones/virtualNetworkLinks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-06-01", + "2020-01-01", + "2018-09-01" + ], + "capabilities": "None", + "defaultApiVersion": "2018-09-01", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "privateDnsOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-06-01", + "2020-01-01", + "2018-09-01" + ], + "capabilities": "None", + "defaultApiVersion": "2018-09-01", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "privateDnsOperationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-06-01", + "2020-01-01" + ], + "capabilities": "None", + "defaultApiVersion": "2020-01-01", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "privateDnsZonesInternal", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-06-01", + "2020-01-01", + "2018-09-01" + ], + "capabilities": "None", + "defaultApiVersion": "2018-09-01", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "privateDnsZones/A", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-06-01", + "2020-01-01", + "2018-09-01" + ], + "capabilities": "None", + "defaultApiVersion": "2018-09-01", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "privateDnsZones/AAAA", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-06-01", + "2020-01-01", + "2018-09-01" + ], + "capabilities": "None", + "defaultApiVersion": "2018-09-01", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "privateDnsZones/CNAME", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-06-01", + "2020-01-01", + "2018-09-01" + ], + "capabilities": "None", + "defaultApiVersion": "2018-09-01", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "privateDnsZones/PTR", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-06-01", + "2020-01-01", + "2018-09-01" + ], + "capabilities": "None", + "defaultApiVersion": "2018-09-01", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "privateDnsZones/MX", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-06-01", + "2020-01-01", + "2018-09-01" + ], + "capabilities": "None", + "defaultApiVersion": "2018-09-01", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "privateDnsZones/TXT", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-06-01", + "2020-01-01", + "2018-09-01" + ], + "capabilities": "None", + "defaultApiVersion": "2018-09-01", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "privateDnsZones/SRV", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-06-01", + "2020-01-01", + "2018-09-01" + ], + "capabilities": "None", + "defaultApiVersion": "2018-09-01", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "privateDnsZones/SOA", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-06-01", + "2020-01-01", + "2018-09-01" + ], + "capabilities": "None", + "defaultApiVersion": "2018-09-01", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "privateDnsZones/all", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-06-01" + ], + "capabilities": "None", + "defaultApiVersion": "2020-06-01", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "virtualNetworks/privateDnsZoneLinks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2023-01-01-preview", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central" + ], + "properties": null, + "resourceType": "locations/hybridEdgeZone", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2023-01-01-preview", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-04-01", + "locationMappings": null, + "locations": [ + "Italy North", + "Qatar Central", + "Poland Central", + "UAE North", + "Australia Central 2", + "UAE Central", + "Germany North", + "Central India", + "Korea South", + "Switzerland North", + "Switzerland West", + "Japan West", + "France South", + "South Africa West", + "West India", + "Canada East", + "South India", + "Germany West Central", + "Norway East", + "Norway West", + "South Africa North", + "East Asia", + "Southeast Asia", + "Korea Central", + "Brazil South", + "Brazil Southeast", + "West US 3", + "Jio India West", + "Sweden Central", + "Japan East", + "UK West", + "West US", + "East US", + "North Europe", + "West Europe", + "West Central US", + "South Central US", + "Australia East", + "Australia Central", + "Australia Southeast", + "UK South", + "East US 2", + "West US 2", + "North Central US", + "Canada Central", + "France Central", + "Central US" + ], + "properties": null, + "resourceType": "firewallPolicies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2023-01-01-preview", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-04-01", + "locationMappings": null, + "locations": [ + "Italy North", + "Qatar Central", + "Poland Central", + "UAE North", + "Australia Central 2", + "UAE Central", + "Germany North", + "Central India", + "Korea South", + "Switzerland North", + "Switzerland West", + "Japan West", + "France South", + "South Africa West", + "West India", + "Canada East", + "South India", + "Germany West Central", + "Norway East", + "Norway West", + "South Africa North", + "East Asia", + "Southeast Asia", + "Korea Central", + "Brazil South", + "Brazil Southeast", + "West US 3", + "Jio India West", + "Sweden Central", + "Japan East", + "UK West", + "West US", + "East US", + "North Europe", + "West Europe", + "South Central US", + "Australia East", + "Australia Central", + "Australia Southeast", + "UK South", + "East US 2", + "West US 2", + "North Central US", + "Canada Central", + "France Central", + "West Central US", + "Central US" + ], + "properties": null, + "resourceType": "ipGroups", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2023-01-01-preview", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01" + ], + "capabilities": "None", + "defaultApiVersion": "2020-08-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "azureWebCategories", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2023-01-01-preview", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations/nfvOperations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2023-01-01-preview", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations/nfvOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2023-01-01-preview", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-04-01", + "locationMappings": null, + "locations": [ + "Italy North", + "Qatar Central", + "Poland Central", + "UAE North", + "Australia Central 2", + "UAE Central", + "Germany North", + "Central India", + "Korea South", + "Switzerland North", + "Switzerland West", + "Japan West", + "France South", + "South Africa West", + "West India", + "Canada East", + "South India", + "Germany West Central", + "Norway East", + "Norway West", + "South Africa North", + "East Asia", + "Southeast Asia", + "Korea Central", + "Brazil South", + "Brazil Southeast", + "West US 3", + "Jio India West", + "Sweden Central", + "Japan East", + "UK West", + "West US", + "East US", + "North Europe", + "West Europe", + "West Central US", + "South Central US", + "Australia East", + "Australia Central", + "Australia Southeast", + "UK South", + "East US 2", + "West US 2", + "North Central US", + "Canada Central", + "France Central", + "Central US" + ], + "properties": null, + "resourceType": "virtualRouters", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2023-01-01-preview", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-04-01", + "locationMappings": null, + "locations": [ + "Italy North", + "Qatar Central", + "Poland Central", + "Brazil Southeast", + "West US 3", + "Jio India West", + "Sweden Central", + "UAE North", + "Australia Central 2", + "UAE Central", + "Germany North", + "Central India", + "Korea South", + "Switzerland North", + "Switzerland West", + "Japan West", + "France South", + "South Africa West", + "West India", + "Canada East", + "South India", + "Germany West Central", + "Norway East", + "Norway West", + "South Africa North", + "East Asia", + "Southeast Asia", + "Korea Central", + "Brazil South", + "Japan East", + "UK West", + "West US", + "East US", + "North Europe", + "West Europe", + "West Central US", + "South Central US", + "Australia East", + "Australia Central", + "Australia Southeast", + "UK South", + "East US 2", + "West US 2", + "North Central US", + "Canada Central", + "France Central", + "Central US" + ], + "properties": null, + "resourceType": "networkVirtualAppliances", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2023-01-01-preview", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01" + ], + "capabilities": "None", + "defaultApiVersion": "2020-04-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "networkVirtualApplianceSkus", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-05-01", + "2021-06-01", + "2020-11-01", + "2020-07-01", + "2020-05-01", + "2020-04-01", + "2020-01-01", + "2019-11-01", + "2019-10-01", + "2019-08-01", + "2019-05-01", + "2019-04-01", + "2019-03-01", + "2018-08-01" + ], + "capabilities": "None", + "defaultApiVersion": "2020-07-01", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "frontdoorOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-06-01", + "2020-07-01", + "2020-05-01", + "2020-01-01", + "2019-08-01", + "2019-05-01", + "2019-04-01", + "2018-08-01" + ], + "capabilities": "None", + "defaultApiVersion": "2020-07-01", + "locationMappings": null, + "locations": [ + "global", + "Central US", + "East US", + "East US 2", + "North Central US", + "South Central US", + "West US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast" + ], + "properties": null, + "resourceType": "checkFrontdoorNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-06-01", + "2020-07-01", + "2020-05-01", + "2020-04-01", + "2020-01-01", + "2019-08-01", + "2019-05-01", + "2019-04-01", + "2018-08-01" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-07-01", + "locationMappings": null, + "locations": [ + "global", + "Central US", + "East US", + "East US 2", + "North Central US", + "South Central US", + "West US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast" + ], + "properties": null, + "resourceType": "frontdoors", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-06-01", + "2020-07-01", + "2020-05-01", + "2020-04-01", + "2020-01-01", + "2019-08-01", + "2019-05-01", + "2019-04-01", + "2018-08-01" + ], + "capabilities": "None", + "defaultApiVersion": "2020-07-01", + "locationMappings": null, + "locations": [ + "global", + "Central US", + "East US", + "East US 2", + "North Central US", + "South Central US", + "West US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast" + ], + "properties": null, + "resourceType": "frontdoors/frontendEndpoints", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-06-01", + "2020-07-01", + "2020-05-01", + "2020-04-01", + "2020-01-01", + "2019-08-01", + "2019-05-01", + "2019-04-01", + "2018-08-01" + ], + "capabilities": "None", + "defaultApiVersion": "2020-07-01", + "locationMappings": null, + "locations": [ + "global", + "Central US", + "East US", + "East US 2", + "North Central US", + "South Central US", + "West US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast" + ], + "properties": null, + "resourceType": "frontdoors/frontendEndpoints/customHttpsConfiguration", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-05-01", + "2020-11-01", + "2020-04-01", + "2019-10-01", + "2019-03-01", + "2018-08-01" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-11-01", + "locationMappings": null, + "locations": [ + "global", + "Central US", + "East US", + "East US 2", + "North Central US", + "South Central US", + "West US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast" + ], + "properties": null, + "resourceType": "frontdoorWebApplicationFirewallPolicies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-05-01", + "2020-11-01", + "2020-04-01", + "2019-10-01", + "2019-03-01" + ], + "capabilities": "None", + "defaultApiVersion": "2020-11-01", + "locationMappings": null, + "locations": [ + "global", + "Central US", + "East US", + "East US 2", + "North Central US", + "South Central US", + "West US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast" + ], + "properties": null, + "resourceType": "frontdoorWebApplicationFirewallManagedRuleSets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-11-01" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2019-11-01", + "locationMappings": null, + "locations": [ + "global", + "Central US", + "East US", + "East US 2", + "North Central US", + "South Central US", + "West US", + "West US 2", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast" + ], + "properties": null, + "resourceType": "networkExperimentProfiles", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-03-01-preview", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-06-01-preview", + "2022-05-01", + "2022-04-01-preview", + "2022-01-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-05-01", + "locationMappings": null, + "locations": [ + "West Central US", + "North Central US", + "West US", + "West Europe", + "UAE Central", + "Germany North", + "East US", + "West India", + "East US 2", + "Australia Central", + "Australia Central 2", + "South Africa West", + "Brazil South", + "UK West", + "North Europe", + "Central US", + "UAE North", + "Germany West Central", + "Switzerland West", + "East Asia", + "Jio India West", + "South Africa North", + "UK South", + "South India", + "Australia Southeast", + "France South", + "West US 2", + "Sweden Central", + "Japan West", + "Norway East", + "France Central", + "West US 3", + "Central India", + "Korea South", + "Brazil Southeast", + "Korea Central", + "Southeast Asia", + "South Central US", + "Norway West", + "Australia East", + "Japan East", + "Canada East", + "Canada Central", + "Switzerland North", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "networkManagers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-03-01-preview", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-06-01-preview", + "2022-05-01", + "2022-04-01-preview", + "2022-01-01" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": "2022-05-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "networkManagerConnections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-02-01-preview", + "2021-05-01-preview", + "2021-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-02-01-preview", + "locationMappings": null, + "locations": [ + "West Central US", + "Jio India West", + "North Central US", + "West US", + "West Europe", + "UAE Central", + "Germany North", + "East US", + "West India", + "East US 2", + "Australia Central", + "Australia Central 2", + "South Africa West", + "Brazil South", + "UK West", + "North Europe", + "Central US", + "UAE North", + "Germany West Central", + "Switzerland West", + "East Asia", + "South Africa North", + "UK South", + "South India", + "Australia Southeast", + "France South", + "West US 2", + "Sweden Central", + "Japan West", + "Norway East", + "France Central", + "West US 3", + "Central India", + "Korea South", + "Brazil Southeast", + "Korea Central", + "Southeast Asia", + "South Central US", + "Norway West", + "Australia East", + "Japan East", + "Canada East", + "Canada Central", + "Switzerland North", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/queryNetworkSecurityPerimeter", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-03-01-preview", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-06-01-preview", + "2022-05-01", + "2022-04-01-preview", + "2022-01-01" + ], + "capabilities": "None", + "defaultApiVersion": "2022-05-01", + "locationMappings": null, + "locations": [ + "West Central US", + "North Central US", + "West US", + "West Europe", + "UAE Central", + "Germany North", + "East US", + "West India", + "East US 2", + "Australia Central", + "Australia Central 2", + "South Africa West", + "Brazil South", + "UK West", + "North Europe", + "Central US", + "UAE North", + "Germany West Central", + "Switzerland West", + "East Asia", + "Jio India West", + "South Africa North", + "UK South", + "South India", + "Australia Southeast", + "France South", + "West US 2", + "Sweden Central", + "Japan West", + "Norway East", + "France Central", + "West US 3", + "Central India", + "Korea South", + "Brazil Southeast", + "Korea Central", + "Southeast Asia", + "South Central US", + "Norway West", + "Australia East", + "Japan East", + "Canada East", + "Canada Central", + "Switzerland North", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-03-01-preview", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-06-01-preview", + "2022-05-01", + "2022-04-01-preview", + "2022-01-01" + ], + "capabilities": "None", + "defaultApiVersion": "2022-05-01", + "locationMappings": null, + "locations": [ + "West Central US", + "North Central US", + "West US", + "West Europe", + "UAE Central", + "Germany North", + "East US", + "West India", + "East US 2", + "Australia Central", + "Australia Central 2", + "South Africa West", + "Brazil South", + "UK West", + "North Europe", + "Central US", + "UAE North", + "Germany West Central", + "Switzerland West", + "East Asia", + "Jio India West", + "South Africa North", + "UK South", + "South India", + "Australia Southeast", + "France South", + "West US 2", + "Sweden Central", + "Japan West", + "Norway East", + "France Central", + "West US 3", + "Central India", + "Korea South", + "Brazil Southeast", + "Korea Central", + "Southeast Asia", + "South Central US", + "Norway West", + "Australia East", + "Japan East", + "Canada East", + "Canada Central", + "Switzerland North", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-06-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": "2022-06-01-preview", + "locationMappings": null, + "locations": [ + "West Central US", + "North Central US", + "West US", + "West Europe", + "UAE Central", + "Germany North", + "East US", + "West India", + "East US 2", + "Australia Central", + "Australia Central 2", + "South Africa West", + "Brazil South", + "UK West", + "North Europe", + "Central US", + "UAE North", + "Germany West Central", + "Switzerland West", + "East Asia", + "Jio India West", + "South Africa North", + "UK South", + "South India", + "Australia Southeast", + "France South", + "West US 2", + "Sweden Central", + "Japan West", + "Norway East", + "France Central", + "West US 3", + "Central India", + "Korea South", + "Brazil Southeast", + "Korea Central", + "Southeast Asia", + "South Central US", + "Norway West", + "Australia East", + "Japan East", + "Canada East", + "Canada Central", + "Switzerland North", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "networkGroupMemberships", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-03-01-preview", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-06-01-preview", + "2022-05-01", + "2022-04-01-preview", + "2022-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "North Central US", + "West US", + "West Europe", + "UAE Central", + "Germany North", + "East US", + "West India", + "East US 2", + "Australia Central", + "Australia Central 2", + "South Africa West", + "Brazil South", + "UK West", + "North Europe", + "Central US", + "UAE North", + "Germany West Central", + "Switzerland West", + "East Asia", + "Jio India West", + "South Africa North", + "UK South", + "South India", + "Australia Southeast", + "France South", + "West US 2", + "Sweden Central", + "Japan West", + "Norway East", + "France Central", + "West US 3", + "Central India", + "Korea South", + "Brazil Southeast", + "Korea Central", + "Southeast Asia", + "South Central US", + "Norway West", + "Australia East", + "Japan East", + "Canada East", + "Canada Central", + "Switzerland North", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/commitInternalAzureNetworkManagerConfiguration", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-03-01-preview", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-06-01-preview", + "2022-05-01", + "2022-04-01-preview", + "2022-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "North Central US", + "West US", + "West Europe", + "UAE Central", + "Germany North", + "East US", + "West India", + "East US 2", + "Australia Central", + "Australia Central 2", + "South Africa West", + "Brazil South", + "UK West", + "North Europe", + "Central US", + "UAE North", + "Germany West Central", + "Switzerland West", + "East Asia", + "Jio India West", + "South Africa North", + "UK South", + "South India", + "Australia Southeast", + "France South", + "West US 2", + "Sweden Central", + "Japan West", + "Norway East", + "France Central", + "West US 3", + "Central India", + "Korea South", + "Brazil Southeast", + "Korea Central", + "Southeast Asia", + "South Central US", + "Norway West", + "Australia East", + "Japan East", + "Canada East", + "Canada Central", + "Switzerland North", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/internalAzureVirtualNetworkManagerOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-04-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2016-04-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2016-04-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2023-07-01-preview", + "2018-05-01", + "2018-03-01-preview", + "2017-10-01", + "2017-09-15-preview", + "2017-09-01", + "2016-04-01", + "2015-05-04-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2018-05-01", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "dnszones", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2018-05-01", + "2018-03-01-preview", + "2017-10-01", + "2017-09-15-preview", + "2017-09-01", + "2016-04-01" + ], + "capabilities": "None", + "defaultApiVersion": "2018-05-01", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "dnsOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2018-05-01", + "2018-03-01-preview", + "2017-10-01", + "2017-09-15-preview", + "2017-09-01", + "2016-04-01" + ], + "capabilities": "None", + "defaultApiVersion": "2018-05-01", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "dnsOperationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2018-05-01" + ], + "capabilities": "None", + "defaultApiVersion": "2018-05-01", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "getDnsResourceReference", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2018-05-01" + ], + "capabilities": "None", + "defaultApiVersion": "2018-05-01", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "internalNotify", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2018-05-01", + "2018-03-01-preview", + "2017-10-01", + "2017-09-15-preview", + "2017-09-01", + "2016-04-01", + "2015-05-04-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2018-05-01", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "dnszones/A", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2018-05-01", + "2018-03-01-preview", + "2017-10-01", + "2017-09-15-preview", + "2017-09-01", + "2016-04-01", + "2015-05-04-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2018-05-01", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "dnszones/AAAA", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2018-05-01", + "2018-03-01-preview", + "2017-10-01", + "2017-09-15-preview", + "2017-09-01", + "2016-04-01", + "2015-05-04-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2018-05-01", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "dnszones/CNAME", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2018-05-01", + "2018-03-01-preview", + "2017-10-01", + "2017-09-15-preview", + "2017-09-01", + "2016-04-01", + "2015-05-04-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2018-05-01", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "dnszones/PTR", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2018-05-01", + "2018-03-01-preview", + "2017-10-01", + "2017-09-15-preview", + "2017-09-01", + "2016-04-01", + "2015-05-04-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2018-05-01", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "dnszones/MX", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2018-05-01", + "2018-03-01-preview", + "2017-10-01", + "2017-09-15-preview", + "2017-09-01", + "2016-04-01", + "2015-05-04-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2018-05-01", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "dnszones/TXT", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2018-05-01", + "2018-03-01-preview", + "2017-10-01", + "2017-09-15-preview", + "2017-09-01", + "2016-04-01", + "2015-05-04-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2018-05-01", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "dnszones/SRV", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2018-05-01", + "2018-03-01-preview", + "2017-10-01", + "2017-09-15-preview", + "2017-09-01", + "2016-04-01", + "2015-05-04-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2018-05-01", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "dnszones/SOA", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2018-05-01", + "2018-03-01-preview", + "2017-10-01", + "2017-09-15-preview", + "2017-09-01", + "2016-04-01", + "2015-05-04-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2018-05-01", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "dnszones/NS", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2018-05-01", + "2018-03-01-preview", + "2017-10-01", + "2017-09-15-preview", + "2017-09-01" + ], + "capabilities": "None", + "defaultApiVersion": "2018-05-01", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "dnszones/CAA", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-07-01-preview", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "dnszones/DS", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-07-01-preview", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "dnszones/TLSA", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-07-01-preview", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "dnszones/NAPTR", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2018-05-01", + "2018-03-01-preview", + "2017-10-01", + "2017-09-15-preview", + "2017-09-01", + "2016-04-01", + "2015-05-04-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2018-05-01", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "dnszones/recordsets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2018-05-01", + "2018-03-01-preview", + "2017-10-01", + "2017-09-15-preview", + "2017-09-01", + "2016-04-01", + "2015-05-04-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2018-05-01", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "dnszones/all", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-07-01-preview", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "dnszones/dnssecConfigs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2015-06-15", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2017-10-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2017-10-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01", + "2017-08-01", + "2017-06-01", + "2017-04-01", + "2017-03-01", + "2016-12-01", + "2016-11-01", + "2016-10-01", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview", + "2014-12-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-03-01", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "virtualNetworks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2015-06-15", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2017-10-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2017-10-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01", + "2017-08-01", + "2017-06-01", + "2017-04-01", + "2017-03-01", + "2016-12-01", + "2016-11-01", + "2016-10-01", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview", + "2014-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2020-03-01", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "virtualNetworks/taggedTrafficConsumers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-03-01", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "natGateways", + "zoneMappings": [ + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Korea Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Central US", + "zones": [] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Poland Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Qatar Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Sweden Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Switzerland North", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UAE North", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US", + "zones": [] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Italy North", + "zones": [ + "2", + "1", + "3" + ] + } + ] + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2015-06-15", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2017-10-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2017-10-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01", + "2017-08-01", + "2017-06-01", + "2017-04-01", + "2017-03-01", + "2016-12-01", + "2016-11-01", + "2016-10-01", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview", + "2014-12-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-03-01", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "publicIPAddresses", + "zoneMappings": [ + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Korea Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Central US", + "zones": [] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Poland Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Qatar Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Sweden Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Switzerland North", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UAE North", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US", + "zones": [] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Italy North", + "zones": [ + "2", + "1", + "3" + ] + } + ] + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "internalPublicIpAddresses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-06-01", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "customIpPrefixes", + "zoneMappings": [ + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Korea Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Central US", + "zones": [] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Poland Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Qatar Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Sweden Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Switzerland North", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UAE North", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US", + "zones": [] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Italy North", + "zones": [ + "2", + "1", + "3" + ] + } + ] + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2015-06-15", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2017-10-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2017-10-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01", + "2017-08-01", + "2017-06-01", + "2017-04-01", + "2017-03-01", + "2016-12-01", + "2016-11-01", + "2016-10-01", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview", + "2014-12-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-03-01", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "networkInterfaces", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-06-01", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "dscpConfigurations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-03-01", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "privateEndpoints", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01" + ], + "capabilities": "None", + "defaultApiVersion": "2020-03-01", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "privateEndpoints/privateLinkServiceProxies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-03-01", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "privateEndpointRedirectMaps", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2015-06-15", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2017-10-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2017-10-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01", + "2017-08-01", + "2017-06-01", + "2017-04-01", + "2017-03-01", + "2016-12-01", + "2016-11-01", + "2016-10-01", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview", + "2014-12-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-03-01", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "loadBalancers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2015-06-15", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2017-10-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2017-10-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01", + "2017-08-01", + "2017-06-01", + "2017-04-01", + "2017-03-01", + "2016-12-01", + "2016-11-01", + "2016-10-01", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview", + "2014-12-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-03-01", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "networkSecurityGroups", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-09-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2017-10-01", + "profileVersion": "2018-03-01-hybrid" + } + ], + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-03-01", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "applicationSecurityGroups", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-03-01", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "serviceEndpointPolicies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-03-01", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "networkIntentPolicies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2015-06-15", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2017-10-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2017-10-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01", + "2017-08-01", + "2017-06-01", + "2017-04-01", + "2017-03-01", + "2016-12-01", + "2016-11-01", + "2016-10-01", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview", + "2014-12-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-03-01", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "routeTables", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-03-01", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "publicIPPrefixes", + "zoneMappings": [ + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Korea Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Central US", + "zones": [] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Poland Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Qatar Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Sweden Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Switzerland North", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UAE North", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US", + "zones": [] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Italy North", + "zones": [ + "2", + "1", + "3" + ] + } + ] + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01", + "2017-08-01", + "2017-06-01", + "2017-04-01", + "2017-03-01", + "2016-12-01", + "2016-11-01", + "2016-10-01", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview", + "2014-12-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-03-01", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "networkWatchers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-03-01", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "networkWatchers/connectionMonitors", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-03-01", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "networkWatchers/flowLogs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-03-01", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "networkWatchers/pingMeshes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2015-06-15", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2017-10-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2017-10-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01", + "2017-08-01", + "2017-06-01", + "2017-04-01", + "2017-03-01", + "2016-12-01", + "2016-11-01", + "2016-10-01", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview", + "2014-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2015-06-15", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2017-10-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2017-10-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01", + "2017-08-01", + "2017-06-01", + "2017-04-01", + "2017-03-01", + "2016-12-01", + "2016-11-01", + "2016-10-01", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview", + "2014-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2015-06-15", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2017-10-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2017-10-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01", + "2017-08-01", + "2017-06-01", + "2017-04-01", + "2017-03-01", + "2016-12-01", + "2016-11-01", + "2016-10-01", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview", + "2014-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01", + "2017-08-01", + "2017-06-01", + "2017-04-01", + "2017-03-01", + "2016-12-01", + "2016-11-01", + "2016-10-01", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview", + "2014-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/CheckDnsNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/setLoadBalancerFrontendPublicIpAddresses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "cloudServiceSlots", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2015-06-15", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2017-10-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2017-10-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01", + "2017-08-01", + "2017-06-01", + "2017-04-01", + "2017-03-01", + "2016-12-01", + "2016-11-01", + "2016-10-01", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview", + "2014-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/usages", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01", + "2017-08-01", + "2017-06-01", + "2017-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/virtualNetworkAvailableEndpointServices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/availableDelegations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/serviceTags", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/availablePrivateEndpointTypes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/availableServiceAliases", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/checkPrivateLinkServiceVisibility", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/autoApprovedPrivateLinkServices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/batchValidatePrivateEndpointsForResourceMove", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/batchNotifyPrivateEndpointsForResourceMove", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/supportedVirtualMachineSizes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/setAzureNetworkManagerConfiguration", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/publishResources", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/getAzureNetworkManagerConfiguration", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/checkAcceleratedNetworkingSupport", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/validateResourceOwnership", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/setResourceOwnership", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/effectiveResourceOwnership", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01", + "2017-08-01", + "2017-06-01", + "2017-04-01", + "2017-03-01", + "2016-12-01", + "2016-11-01", + "2016-10-01", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview", + "2014-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-03-01", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "virtualNetworkTaps", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-03-01", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "privateLinkServices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/privateLinkServices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-02-01", + "profileVersion": "2017-03-09-profile" + } + ], + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-03-01", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "ddosProtectionPlans", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-03-01", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "networkProfiles", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/bareMetalTenants", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01", + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-03-01", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "ipAllocations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/serviceTagDetails", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-05-01", + "2023-04-01", + "2023-02-01", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-01-01", + "2021-12-01", + "2021-08-01", + "2021-06-01", + "2021-05-01", + "2021-04-01", + "2021-03-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/dataTasks", + "zoneMappings": null + } + ] + }, + { + "authorization": { + "applicationId": "c39c9bac-9d1f-4dfb-aa29-27f6365e5cb7", + "roleDefinitionId": "8a63b04c-3731-409b-9765-f1175c047872" + }, + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Advisor", + "namespace": "Microsoft.Advisor", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "Registered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-10-01", + "2022-09-01", + "2020-01-01", + "2017-04-19", + "2017-03-31", + "2016-07-12-preview", + "2016-05-09-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "suppressions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-10-01", + "2022-09-01", + "2020-01-01", + "2017-04-19", + "2017-03-31" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "configurations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-alpha", + "2023-01-01", + "2022-10-01", + "2022-09-01", + "2020-01-01-alpha", + "2020-01-01", + "2017-04-19-rc", + "2017-04-19-alpha", + "2017-04-19", + "2017-03-31-alpha", + "2017-03-31", + "2016-07-12-rc" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "metadata", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-10-01", + "2022-09-01", + "2020-01-01", + "2017-04-19", + "2017-03-31", + "2016-07-12-preview", + "2016-05-09-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "recommendations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-10-01", + "2022-09-01", + "2020-01-01", + "2017-04-19", + "2017-03-31", + "2016-07-12-preview", + "2016-05-09-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "generateRecommendations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-alpha", + "2022-10-01", + "2020-07-01-preview", + "2020-01-01", + "2017-04-19", + "2017-03-31", + "2016-07-12-preview", + "2016-05-09-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-10-01", + "2022-09-01", + "2020-07-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "advisorScore", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-10-01", + "2022-09-01" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "predict", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "a4c1cdb3-88ab-4d13-bc99-1c46106f0727", + "roleDefinitionId": "055740ed-aef4-4af0-9ecb-fbd9e662ebe7" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.MarketplaceNotifications", + "namespace": "Microsoft.MarketplaceNotifications", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "Registered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-03-03" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "reviewsnotifications", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-03-03" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "8edd93e1-2103-40b4-bd70-6e34e586362d", + "roleDefinitionId": "855AF4C4-82F6-414C-B1A2-628025628B9A" + }, + { + "applicationId": "fc780465-2017-40d4-a0c5-307022471b92" + }, + { + "applicationId": "8ee8fdad-f234-4243-8f3b-15c294843740" + }, + { + "applicationId": "04687a56-4fc2-4e36-b274-b862fb649733" + }, + { + "applicationId": "e0ccf59d-5a20-4a87-a122-f42842cdb86a", + "roleDefinitionId": "b2b30881-ef9c-4e7c-8ce5-67e0e5ae89ff" + }, + { + "applicationId": "0c7668b5-3260-4ad0-9f53-34ed54fa19b2" + }, + { + "applicationId": "bd6d9218-235b-4abd-b3be-9ff157dcf36c", + "roleDefinitionId": "0500cf0f-72a5-4267-929a-52ca66a7b812" + }, + { + "applicationId": "cbff9545-769a-4b41-b76e-fbb069e8727e", + "roleDefinitionId": "f20516f1-eb1e-47ed-8aa4-bbeafa5f475f" + }, + { + "applicationId": "56823b05-67d8-413a-b6ab-ad19d7710cf2", + "roleDefinitionId": "a27a006e-1889-46ea-b476-0f3912b4e245" + }, + { + "applicationId": "b46c3ac5-9da6-418f-a849-0a07a10b3c6c" + }, + { + "applicationId": "3f6aecb4-6dbf-4e45-9141-440abdced562" + }, + { + "applicationId": "a70c8393-7c0c-4c1e-916a-811bd476ee11" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Security", + "namespace": "Microsoft.Security", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "Registered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-01-01", + "2015-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2015-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "East US", + "West Europe", + "West Central US" + ], + "properties": null, + "resourceType": "securityStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2015-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "East US", + "West Europe", + "West Central US" + ], + "properties": null, + "resourceType": "tasks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-01-01-preview", + "2020-01-01" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "secureScores", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-01-01-preview", + "2020-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "secureScores/secureScoreControls", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-01-01-preview", + "2020-01-01" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "secureScoreControls", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-01-01-preview", + "2020-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "secureScoreControlDefinitions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "connectors", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-01-01-preview", + "2019-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "East US" + ], + "properties": null, + "resourceType": "regulatoryComplianceStandards", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-01-01-preview", + "2019-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "East US" + ], + "properties": null, + "resourceType": "regulatoryComplianceStandards/regulatoryComplianceControls", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-01-01-preview", + "2019-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "East US" + ], + "properties": null, + "resourceType": "regulatoryComplianceStandards/regulatoryComplianceControls/regulatoryComplianceAssessments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-01-01", + "2021-11-01", + "2021-01-01", + "2020-01-01", + "2019-01-01", + "2015-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "East US", + "West Europe" + ], + "properties": null, + "resourceType": "alerts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "alertsSuppressionRules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "autoDismissAlertsRules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2015-06-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East Asia", + "Southeast Asia", + "East US", + "East US 2", + "West US", + "North Central US", + "South Central US", + "Central US", + "North Europe", + "West Europe", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East" + ], + "properties": null, + "resourceType": "dataCollectionAgents", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-03-01", + "2018-06-01", + "2017-08-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "East US" + ], + "properties": null, + "resourceType": "pricings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview" + ], + "capabilities": "SystemAssignedResourceIdentity", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "East US" + ], + "properties": null, + "resourceType": "pricings/securityOperators", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-01-01", + "2017-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "East US" + ], + "properties": null, + "resourceType": "AutoProvisioningSettings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "MdeOnboardings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "vmScanners", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-08-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "East US" + ], + "properties": null, + "resourceType": "Compliances", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-01-01-preview", + "2017-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "East US" + ], + "properties": null, + "resourceType": "securityContacts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-01-01", + "2017-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "East US" + ], + "properties": null, + "resourceType": "workspaceSettings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-08-01" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "East US" + ], + "properties": null, + "resourceType": "complianceResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2015-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "East US" + ], + "properties": null, + "resourceType": "policies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-06-01", + "2020-01-01", + "2019-01-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "assessments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-01-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "governanceRules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "assessments/governanceAssignments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-06-01", + "2020-01-01", + "2019-01-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "assessmentMetadata", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-01-01", + "2019-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "subAssessments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-01-01", + "2015-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "East US", + "West Europe", + "West Central US" + ], + "properties": null, + "resourceType": "securitySolutions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-01-01", + "2015-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "West Europe", + "West Central US" + ], + "properties": null, + "resourceType": "locations/securitySolutions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-01-01", + "2015-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "East US", + "West Europe", + "West Central US" + ], + "properties": null, + "resourceType": "discoveredSecuritySolutions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-01-01", + "2015-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "West Europe", + "West Central US" + ], + "properties": null, + "resourceType": "locations/discoveredSecuritySolutions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-01-01", + "2015-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "East US", + "West Europe", + "West Central US" + ], + "properties": null, + "resourceType": "allowedConnections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-01-01", + "2015-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "West Europe", + "West Central US" + ], + "properties": null, + "resourceType": "locations/allowedConnections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-01-01", + "2015-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "East US", + "West Europe", + "West Central US" + ], + "properties": null, + "resourceType": "topologies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-01-01", + "2015-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "West Europe", + "West Central US" + ], + "properties": null, + "resourceType": "locations/topologies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-01-01", + "2015-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "East US", + "West Europe", + "West Central US" + ], + "properties": null, + "resourceType": "securitySolutionsReferenceData", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-01-01", + "2015-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "West Europe", + "West Central US" + ], + "properties": null, + "resourceType": "locations/securitySolutionsReferenceData", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2015-06-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "East US", + "North Europe", + "West Europe", + "UK South", + "UK West", + "France Central", + "France South", + "Switzerland North", + "Germany West Central", + "West Central US", + "West US 2" + ], + "properties": null, + "resourceType": "jitPolicies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-01-01", + "2015-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "East US", + "North Europe", + "West Europe", + "UK South", + "UK West", + "France Central", + "Switzerland North", + "Germany West Central", + "West Central US", + "West US 2" + ], + "properties": null, + "resourceType": "jitNetworkAccessPolicies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-01-01", + "2015-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "East US", + "North Europe", + "West Europe", + "UK South", + "UK West", + "France Central", + "France South", + "Switzerland North", + "Germany West Central", + "West Central US", + "West US 2" + ], + "properties": null, + "resourceType": "locations/jitNetworkAccessPolicies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2015-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "East US" + ], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2015-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "East US", + "West Europe", + "West Central US" + ], + "properties": null, + "resourceType": "securityStatusesSummaries", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-01-01", + "2015-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "East US", + "West Central US", + "West Europe" + ], + "properties": null, + "resourceType": "applicationWhitelistings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-01-01", + "2015-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "West Central US", + "West Europe" + ], + "properties": null, + "resourceType": "locations/applicationWhitelistings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-01-01", + "2021-11-01", + "2021-01-01", + "2020-01-01", + "2019-01-01", + "2015-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "West Europe" + ], + "properties": null, + "resourceType": "locations/alerts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2015-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "West Europe", + "West Central US" + ], + "properties": null, + "resourceType": "locations/tasks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-01-01", + "2015-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "East US", + "West Europe", + "West Central US" + ], + "properties": null, + "resourceType": "externalSecuritySolutions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-01-01", + "2015-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "West Europe", + "West Central US" + ], + "properties": null, + "resourceType": "locations/externalSecuritySolutions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-08-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "East US" + ], + "properties": null, + "resourceType": "InformationProtectionPolicies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-01-01", + "2017-08-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3", + "France Central", + "UAE North", + "Germany West Central", + "Sweden Central", + "Switzerland North" + ], + "properties": null, + "resourceType": "advancedThreatProtectionSettings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2020-07-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "Brazil South", + "Australia Central", + "Australia East", + "Canada Central", + "East Asia", + "East US", + "East US 2", + "Central India", + "West India", + "Japan East", + "North Central US", + "South Africa North", + "Switzerland North", + "UK South", + "West US 2", + "Australia Southeast", + "Central US", + "France Central", + "Korea Central", + "North Europe", + "South Central US", + "Southeast Asia", + "UK West", + "West US", + "West Europe", + "West US 3", + "Germany West Central", + "Norway East", + "Qatar Central", + "Canada East", + "Japan West", + "UAE Central", + "Sweden Central", + "Jio India West", + "UAE North", + "South India", + "Korea South", + "Poland Central", + "South Africa West", + "Germany North", + "France South", + "Australia Central 2" + ], + "properties": null, + "resourceType": "sqlVulnerabilityAssessments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-08-01", + "2017-08-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East Asia", + "Southeast Asia", + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "West US 3", + "North Central US", + "South Central US", + "Japan West", + "Japan East", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "Korea Central", + "Korea South", + "Australia Central", + "Australia Central 2", + "UAE Central", + "UAE North", + "South Africa North", + "South Africa West", + "Jio India West", + "North Europe", + "West Europe", + "UK South", + "UK West", + "France Central", + "France South", + "Germany West Central", + "Germany North", + "Norway East", + "Switzerland North" + ], + "properties": null, + "resourceType": "deviceSecurityGroups", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-08-01", + "2017-08-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East Asia", + "Southeast Asia", + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "West US 3", + "North Central US", + "South Central US", + "Japan West", + "Japan East", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "Korea Central", + "Korea South", + "Australia Central", + "Australia Central 2", + "UAE Central", + "UAE North", + "South Africa North", + "South Africa West", + "Jio India West", + "North Europe", + "West Europe", + "UK South", + "UK West", + "France Central", + "France South", + "Germany West Central", + "Germany North", + "Norway East", + "Switzerland North" + ], + "properties": null, + "resourceType": "iotSecuritySolutions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-08-01", + "2017-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East Asia", + "Southeast Asia", + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "West US 3", + "North Central US", + "South Central US", + "Japan West", + "Japan East", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "Korea Central", + "Korea South", + "Australia Central", + "Australia Central 2", + "UAE Central", + "UAE North", + "South Africa North", + "South Africa West", + "Jio India West", + "North Europe", + "West Europe", + "UK South", + "UK West", + "France Central", + "France South", + "Germany West Central", + "Germany North", + "Norway East", + "Switzerland North" + ], + "properties": null, + "resourceType": "iotSecuritySolutions/analyticsModels", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-08-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East Asia", + "Southeast Asia", + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "West US 3", + "North Central US", + "South Central US", + "Japan West", + "Japan East", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "Korea Central", + "Korea South", + "Australia Central", + "Australia Central 2", + "UAE Central", + "UAE North", + "South Africa North", + "South Africa West", + "Jio India West", + "North Europe", + "West Europe", + "UK South", + "UK West", + "France Central", + "France South", + "Germany West Central", + "Germany North", + "Norway East", + "Switzerland North" + ], + "properties": null, + "resourceType": "iotSecuritySolutions/iotAlertTypes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-08-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East Asia", + "Southeast Asia", + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "West US 3", + "North Central US", + "South Central US", + "Japan West", + "Japan East", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "Korea Central", + "Korea South", + "Australia Central", + "Australia Central 2", + "UAE Central", + "UAE North", + "South Africa North", + "South Africa West", + "Jio India West", + "North Europe", + "West Europe", + "UK South", + "UK West", + "France Central", + "France South", + "Germany West Central", + "Germany North", + "Norway East", + "Switzerland North" + ], + "properties": null, + "resourceType": "iotSecuritySolutions/iotAlerts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-08-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East Asia", + "Southeast Asia", + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "West US 3", + "North Central US", + "South Central US", + "Japan West", + "Japan East", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "Korea Central", + "Korea South", + "Australia Central", + "Australia Central 2", + "UAE Central", + "UAE North", + "South Africa North", + "South Africa West", + "Jio India West", + "North Europe", + "West Europe", + "UK South", + "UK West", + "France Central", + "France South", + "Germany West Central", + "Germany North", + "Norway East", + "Switzerland North" + ], + "properties": null, + "resourceType": "iotSecuritySolutions/iotRecommendationTypes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-08-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East Asia", + "Southeast Asia", + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "West US 3", + "North Central US", + "South Central US", + "Japan West", + "Japan East", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "Korea Central", + "Korea South", + "Australia Central", + "Australia Central 2", + "UAE Central", + "UAE North", + "South Africa North", + "South Africa West", + "Jio India West", + "North Europe", + "West Europe", + "UK South", + "UK West", + "France Central", + "France South", + "Germany West Central", + "Germany North", + "Norway East", + "Switzerland North" + ], + "properties": null, + "resourceType": "iotSecuritySolutions/iotRecommendations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-08-01", + "2017-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East Asia", + "Southeast Asia", + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "West US 3", + "North Central US", + "South Central US", + "Japan West", + "Japan East", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "Korea Central", + "Korea South", + "Australia Central", + "Australia Central 2", + "UAE Central", + "UAE North", + "South Africa North", + "South Africa West", + "Jio India West", + "North Europe", + "West Europe", + "UK South", + "UK West", + "France Central", + "France South", + "Germany West Central", + "Germany North", + "Norway East", + "Switzerland North" + ], + "properties": null, + "resourceType": "iotSecuritySolutions/analyticsModels/aggregatedAlerts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-08-01", + "2017-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East Asia", + "Southeast Asia", + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "West US 3", + "North Central US", + "South Central US", + "Japan West", + "Japan East", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "Korea Central", + "Korea South", + "Australia Central", + "Australia Central 2", + "UAE Central", + "UAE North", + "South Africa North", + "South Africa West", + "Jio India West", + "North Europe", + "West Europe", + "UK South", + "UK West", + "France Central", + "France South", + "Germany West Central", + "Germany North", + "Norway East", + "Switzerland North" + ], + "properties": null, + "resourceType": "iotSecuritySolutions/analyticsModels/aggregatedRecommendations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-05-01", + "2021-07-01", + "2021-06-01", + "2019-01-01", + "2017-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "East US" + ], + "properties": null, + "resourceType": "settings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-01-01", + "2015-06-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Europe", + "North Europe", + "UK South", + "UK West", + "France Central", + "France South", + "Switzerland North", + "Germany West Central", + "Sweden Central", + "Italy North" + ], + "properties": null, + "resourceType": "serverVulnerabilityAssessments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2022-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "serverVulnerabilityAssessmentsSettings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-01-01", + "2015-06-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Europe", + "North Europe", + "UK South", + "UK West", + "France Central", + "France South", + "Switzerland North", + "Germany West Central" + ], + "properties": null, + "resourceType": "adaptiveNetworkHardenings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-01-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "East US", + "East US 2", + "North Central US", + "South Central US", + "West US", + "West US 2", + "West US 3", + "West Central US", + "Canada Central", + "Canada East", + "Brazil South", + "East Asia", + "Southeast Asia", + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "North Europe", + "West Europe", + "France Central", + "France South", + "UK South", + "UK West", + "Norway East", + "Norway West", + "Germany West Central", + "Germany North", + "Switzerland North", + "Switzerland West", + "Sweden Central", + "Jio India West" + ], + "properties": null, + "resourceType": "automations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-01-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "ingestionSettings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-12-01-preview", + "2017-08-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany West Central", + "Germany North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "Switzerland West", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "defenderForStorageSettings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-12-01-preview" + ], + "capabilities": "SystemAssignedResourceIdentity", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US" + ], + "properties": null, + "resourceType": "dataScanners", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2021-12-01-preview", + "2021-07-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "East US", + "East US 2", + "North Central US", + "South Central US", + "West US", + "West US 2", + "West Central US", + "Canada Central", + "Canada East", + "Brazil South", + "East Asia", + "Southeast Asia", + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "North Europe", + "West Europe", + "France Central", + "France South", + "UK South", + "UK West", + "Norway East", + "Norway West", + "Switzerland North", + "Switzerland West", + "Germany West Central", + "Germany North", + "Jio India West" + ], + "properties": null, + "resourceType": "securityConnectors", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "customRecommendations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-07-01-preview", + "2021-07-01-beta", + "2021-07-01-alpha" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "East US", + "East US 2", + "North Central US", + "South Central US", + "West US", + "West US 2", + "West Central US", + "Canada Central", + "Canada East", + "Brazil South", + "East Asia", + "Southeast Asia", + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "North Europe", + "West Europe", + "France Central", + "France South", + "UK South", + "UK West", + "Norway East", + "Norway West", + "Germany West Central", + "Germany North", + "Switzerland North", + "Switzerland West" + ], + "properties": null, + "resourceType": "customAssessmentAutomations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-07-01-preview", + "2021-07-01-beta", + "2021-07-01-alpha" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "East US", + "East US 2", + "North Central US", + "South Central US", + "West US", + "West US 2", + "West Central US", + "Canada Central", + "Canada East", + "Brazil South", + "East Asia", + "Southeast Asia", + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "North Europe", + "West Europe", + "France Central", + "France South", + "UK South", + "UK West", + "Norway East", + "Norway West", + "Germany West Central", + "Germany North", + "Switzerland North", + "Switzerland West" + ], + "properties": null, + "resourceType": "customEntityStoreAssignments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "securityStandards", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-08-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "East US", + "East US 2", + "North Central US", + "South Central US", + "West US", + "West US 2", + "West Central US", + "Canada Central", + "Canada East", + "Brazil South", + "East Asia", + "Southeast Asia", + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "North Europe", + "West Europe", + "France Central", + "France South", + "UK South", + "UK West", + "Norway East", + "Norway West", + "Germany West Central", + "Germany North", + "Switzerland North", + "Switzerland West" + ], + "properties": null, + "resourceType": "standards", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "standardAssignments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-08-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "East US", + "East US 2", + "North Central US", + "South Central US", + "West US", + "West US 2", + "West Central US", + "Canada Central", + "Canada East", + "Brazil South", + "East Asia", + "Southeast Asia", + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "North Europe", + "West Europe", + "France Central", + "France South", + "UK South", + "UK West", + "Norway East", + "Norway West", + "Germany West Central", + "Germany North", + "Switzerland North", + "Switzerland West" + ], + "properties": null, + "resourceType": "assignments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "sensitivitySettings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-04-01-preview", + "2022-04-01-beta", + "2022-04-01-alpha" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "East US", + "East US 2", + "North Central US", + "South Central US", + "West US", + "West US 2", + "West Central US", + "Canada Central", + "Canada East", + "Brazil South", + "East Asia", + "Southeast Asia", + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "North Europe", + "West Europe", + "France Central", + "France South", + "UK South", + "UK West", + "Norway East", + "Norway West", + "Switzerland North", + "Switzerland West", + "Germany West Central", + "Germany North" + ], + "properties": null, + "resourceType": "query", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-07-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "applications", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-11-20-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "apiCollections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2023-02-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "healthReports", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "aggregations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "integrations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "1d78a85d-813d-46f0-b496-dd72f50a3ec0", + "roleDefinitionId": "63d2b225-4c34-4641-8768-21a1f7c68ce8" + }, + { + "applicationId": "8cae6e77-e04e-42ce-b5cb-50d82bce26b1", + "roleDefinitionId": "4a2d3d6b-a6ea-45e2-9882-c9ba3e726ed7" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.PolicyInsights", + "namespace": "Microsoft.PolicyInsights", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "Registered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-10-01", + "2018-07-01-preview", + "2018-04-04", + "2017-12-12-preview", + "2017-10-17-preview", + "2017-08-09-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "policyEvents", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-10-01", + "2018-07-01-preview", + "2018-04-04", + "2017-12-12-preview", + "2017-10-17-preview", + "2017-08-09-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "policyStates", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-04-01" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "componentPolicyStates", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-04-01", + "2019-10-01", + "2018-07-01-preview", + "2018-04-04", + "2017-12-12-preview", + "2017-10-17-preview", + "2017-08-09-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-10-01", + "2018-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "asyncOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-10-01", + "2019-07-01", + "2018-07-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "remediations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01", + "2021-01-01", + "2019-10-01" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "attestations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-10-01" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "eventGridFilters", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-03-01", + "2020-07-01-preview", + "2020-07-01" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkPolicyRestrictions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-07-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "policyTrackedResources", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-10-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "policyMetadata", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "7d312290-28c8-473c-a0ed-8e53749b6d6d", + "roleDefinitionId": "5cb87f79-a7c3-4a95-9414-45b65974b51b" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.CognitiveServices", + "namespace": "Microsoft.CognitiveServices", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "Registered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-05-01", + "2022-12-01", + "2022-10-01", + "2022-03-01", + "2021-10-01", + "2021-04-30", + "2017-04-18", + "2016-02-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-12-01", + "locationMappings": null, + "locations": [ + "Global", + "Australia East", + "Brazil South", + "West US", + "West US 2", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "West Central US", + "South Central US", + "East US", + "East US 2", + "Canada Central", + "Japan East", + "Central India", + "UK South", + "Japan West", + "Korea Central", + "France Central", + "North Central US", + "Central US", + "South Africa North", + "UAE North", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Qatar Central", + "Canada East", + "Poland central" + ], + "properties": null, + "resourceType": "accounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-05-01", + "2022-12-01", + "2022-10-01", + "2022-03-01", + "2021-10-01", + "2021-04-30", + "2017-04-18", + "2016-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Global", + "Australia East", + "Brazil South", + "West US", + "West US 2", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "West Central US", + "South Central US", + "East US", + "East US 2", + "Canada Central", + "Japan East", + "Central India", + "UK South", + "Japan West", + "Korea Central", + "France Central", + "North Central US", + "Central US", + "South Africa North", + "UAE North", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Qatar Central", + "Canada East", + "Poland central" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-05-01", + "2022-12-01", + "2022-10-01", + "2022-03-01", + "2021-10-01", + "2021-04-30", + "2017-04-18", + "2016-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Global", + "Australia East", + "Brazil South", + "West US", + "West US 2", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "West Central US", + "South Central US", + "East US", + "East US 2", + "Canada Central", + "Japan East", + "Central India", + "UK South", + "Japan West", + "Korea Central", + "France Central", + "North Central US", + "Central US", + "South Africa North", + "UAE North", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Qatar Central", + "Canada East", + "Poland central" + ], + "properties": null, + "resourceType": "locations/operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-05-01", + "2022-12-01", + "2022-10-01", + "2022-03-01", + "2021-10-01", + "2021-04-30", + "2017-04-18", + "2016-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Global", + "Australia East", + "Brazil South", + "West US", + "West US 2", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "West Central US", + "South Central US", + "East US", + "East US 2", + "Canada Central", + "Japan East", + "Central India", + "UK South", + "Japan West", + "Korea Central", + "France Central", + "North Central US", + "Central US", + "South Africa North", + "UAE North", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Qatar Central", + "Canada East", + "Poland central" + ], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-05-01", + "2022-12-01", + "2022-10-01", + "2022-03-01", + "2021-10-01", + "2021-04-30", + "2017-04-18", + "2016-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Global", + "Australia East", + "Brazil South", + "West US", + "West US 2", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "West Central US", + "South Central US", + "East US", + "East US 2", + "Canada Central", + "Japan East", + "Central India", + "UK South", + "Japan West", + "Korea Central", + "France Central", + "North Central US", + "Central US", + "South Africa North", + "UAE North", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Qatar Central", + "Canada East", + "Poland central" + ], + "properties": null, + "resourceType": "locations/deleteVirtualNetworkOrSubnets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-05-01", + "2022-12-01", + "2022-10-01", + "2022-03-01", + "2021-10-01", + "2021-04-30", + "2017-04-18", + "2016-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Global", + "Australia East", + "Brazil South", + "West US", + "West US 2", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "West Central US", + "South Central US", + "East US", + "East US 2", + "Canada Central", + "Japan East", + "Central India", + "UK South", + "Japan West", + "Korea Central", + "France Central", + "North Central US", + "Central US", + "South Africa North", + "UAE North", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Qatar Central", + "Canada East", + "Poland central" + ], + "properties": null, + "resourceType": "locations/checkSkuAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-05-01", + "2022-12-01", + "2022-10-01", + "2022-03-01", + "2021-10-01", + "2021-04-30", + "2017-04-18", + "2016-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Global", + "Australia East", + "Brazil South", + "West US", + "West US 2", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "West Central US", + "South Central US", + "East US", + "East US 2", + "Canada Central", + "Japan East", + "Central India", + "UK South", + "Japan West", + "Korea Central", + "France Central", + "North Central US", + "Central US", + "South Africa North", + "UAE North", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Qatar Central", + "Canada East", + "Poland central" + ], + "properties": null, + "resourceType": "checkDomainAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-05-01", + "2022-12-01", + "2022-10-01", + "2022-03-01", + "2021-10-01", + "2021-04-30", + "2017-04-18" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Global", + "Australia East", + "Brazil South", + "West US", + "West US 2", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "West Central US", + "South Central US", + "East US", + "East US 2", + "Canada Central", + "Japan East", + "Central India", + "UK South", + "Japan West", + "Korea Central", + "France Central", + "North Central US", + "Central US", + "South Africa North", + "UAE North", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Qatar Central", + "Canada East", + "Poland central" + ], + "properties": null, + "resourceType": "accounts/privateLinkResources", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-05-01", + "2022-12-01", + "2022-10-01", + "2022-03-01", + "2021-10-01", + "2021-04-30", + "2017-04-18" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Global", + "Australia East", + "Brazil South", + "West US", + "West US 2", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "West Central US", + "South Central US", + "East US", + "East US 2", + "Canada Central", + "Japan East", + "Central India", + "UK South", + "Japan West", + "Korea Central", + "France Central", + "North Central US", + "Central US", + "South Africa North", + "UAE North", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Qatar Central", + "Canada East", + "Poland central" + ], + "properties": null, + "resourceType": "accounts/privateEndpointConnections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-05-01", + "2022-12-01", + "2022-10-01", + "2022-03-01", + "2021-10-01", + "2021-04-30", + "2017-04-18" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Global", + "Australia East", + "Brazil South", + "West US", + "West US 2", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "West Central US", + "South Central US", + "East US", + "East US 2", + "Canada Central", + "Japan East", + "Central India", + "UK South", + "Japan West", + "Korea Central", + "France Central", + "North Central US", + "Central US", + "South Africa North", + "UAE North", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Qatar Central", + "Canada East", + "Poland central" + ], + "properties": null, + "resourceType": "accounts/privateEndpointConnectionProxies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-05-01", + "2022-12-01", + "2022-10-01", + "2022-03-01", + "2021-10-01", + "2021-04-30" + ], + "capabilities": "None", + "defaultApiVersion": "2022-12-01", + "locationMappings": null, + "locations": [ + "Global", + "Australia East", + "Brazil South", + "West US", + "West US 2", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "West Central US", + "South Central US", + "East US", + "East US 2", + "Canada Central", + "Japan East", + "Central India", + "UK South", + "Japan West", + "Korea Central", + "France Central", + "North Central US", + "Central US", + "South Africa North", + "UAE North", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Qatar Central", + "Canada East", + "Poland central" + ], + "properties": null, + "resourceType": "deletedAccounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-05-01", + "2022-12-01", + "2022-10-01", + "2022-03-01", + "2021-10-01", + "2021-04-30" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Global", + "Australia East", + "Brazil South", + "West US", + "West US 2", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "West Central US", + "South Central US", + "East US", + "East US 2", + "Canada Central", + "Japan East", + "Central India", + "UK South", + "Japan West", + "Korea Central", + "France Central", + "North Central US", + "Central US", + "South Africa North", + "UAE North", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Qatar Central", + "Canada East", + "Poland central" + ], + "properties": null, + "resourceType": "locations/resourceGroups", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-05-01", + "2022-12-01", + "2022-10-01", + "2022-03-01", + "2021-10-01", + "2021-04-30" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Global", + "Australia East", + "Brazil South", + "West US", + "West US 2", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "West Central US", + "South Central US", + "East US", + "East US 2", + "Canada Central", + "Japan East", + "Central India", + "UK South", + "Japan West", + "Korea Central", + "France Central", + "North Central US", + "Central US", + "South Africa North", + "UAE North", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Qatar Central", + "Canada East", + "Poland central" + ], + "properties": null, + "resourceType": "locations/resourceGroups/deletedAccounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-05-01", + "2022-12-01", + "2022-10-01", + "2022-03-01", + "2021-10-01" + ], + "capabilities": "None", + "defaultApiVersion": "2021-10-01", + "locationMappings": null, + "locations": [ + "Global", + "Australia East", + "Brazil South", + "West US", + "West US 2", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "West Central US", + "South Central US", + "East US", + "East US 2", + "Canada Central", + "Japan East", + "Central India", + "UK South", + "Japan West", + "Korea Central", + "France Central", + "North Central US", + "Central US", + "South Africa North", + "UAE North", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Qatar Central", + "Canada East", + "Poland central" + ], + "properties": null, + "resourceType": "locations/commitmentTiers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-05-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "Global", + "Australia East", + "Brazil South", + "West US", + "West US 2", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "West Central US", + "South Central US", + "East US", + "East US 2", + "Canada Central", + "Japan East", + "Central India", + "UK South", + "Japan West", + "Korea Central", + "France Central", + "North Central US", + "Central US", + "South Africa North", + "UAE North", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Qatar Central", + "Canada East", + "Poland central" + ], + "properties": null, + "resourceType": "locations/models", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-05-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "Global", + "Australia East", + "Brazil South", + "West US", + "West US 2", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "West Central US", + "South Central US", + "East US", + "East US 2", + "Canada Central", + "Japan East", + "Central India", + "UK South", + "Japan West", + "Korea Central", + "France Central", + "North Central US", + "Central US", + "South Africa North", + "UAE North", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Qatar Central", + "Canada East", + "Poland central" + ], + "properties": null, + "resourceType": "locations/usages", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-06-01-preview", + "locationMappings": null, + "locations": [ + "Global", + "Australia East", + "Brazil South", + "West US", + "West US 2", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "West Central US", + "South Central US", + "East US", + "East US 2", + "Canada Central", + "Japan East", + "Central India", + "UK South", + "Japan West", + "Korea Central", + "France Central", + "North Central US", + "Central US", + "South Africa North", + "UAE North", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Qatar Central", + "Canada East", + "Poland central" + ], + "properties": null, + "resourceType": "locations/raiContentFilters", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-10-01" + ], + "capabilities": "None", + "defaultApiVersion": "2021-10-01", + "locationMappings": null, + "locations": [ + "Global", + "Australia East", + "Brazil South", + "Central US EUAP", + "West US", + "West US 2", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "West Central US", + "South Central US", + "East US", + "East US 2", + "Canada Central", + "Japan East", + "Central India", + "UK South", + "Japan West", + "Korea Central", + "France Central", + "North Central US", + "Central US", + "South Africa North", + "UAE North", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "Germany West Central", + "Norway East", + "West US 3", + "East US 2 EUAP", + "Jio India West", + "Qatar Central", + "Canada East", + "Poland central" + ], + "properties": null, + "resourceType": "locations/notifyNetworkSecurityPerimeterUpdatesAvailable", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-10-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Global", + "Australia East", + "Brazil South", + "West US", + "West US 2", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "West Central US", + "South Central US", + "East US", + "East US 2", + "Canada Central", + "Japan East", + "Central India", + "UK South", + "Japan West", + "Korea Central", + "France Central", + "North Central US", + "Central US", + "South Africa North", + "UAE North", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Qatar Central", + "Canada East", + "Poland central" + ], + "properties": null, + "resourceType": "accounts/networkSecurityPerimeterAssociationProxies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-05-01", + "2022-12-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-12-01", + "locationMappings": null, + "locations": [ + "Global", + "Australia East", + "Brazil South", + "West US", + "West US 2", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "West Central US", + "South Central US", + "East US", + "East US 2", + "Canada Central", + "Japan East", + "Central India", + "UK South", + "Japan West", + "Korea Central", + "France Central", + "North Central US", + "Central US", + "South Africa North", + "UAE North", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Qatar Central", + "Canada East", + "Poland central" + ], + "properties": null, + "resourceType": "commitmentPlans", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "3af5a1e8-2459-45cb-8683-bcd6cccbcc13", + "roleDefinitionId": "b1309299-720d-4159-9897-6158a61aee41" + }, + { + "applicationId": "161a339d-b9f5-41c5-8856-6a6669acac64", + "roleDefinitionId": "b61a6c11-d848-4eec-8c37-fb13ab7d5729" + }, + { + "applicationId": "6bccf540-eb86-4037-af03-7fa058c2db75", + "roleDefinitionId": "89dcede2-9219-403a-9723-d3c6473f9472" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.AlertsManagement", + "namespace": "Microsoft.AlertsManagement", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "Registered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-05-05-preview", + "2019-03-01-preview", + "2019-03-01", + "2018-11-02-privatepreview", + "2018-05-05-preview", + "2018-05-05", + "2017-11-15-privatepreview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "alerts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-05-05-preview", + "2019-03-01-preview", + "2019-03-01", + "2018-05-05-preview", + "2018-05-05", + "2017-11-15-privatepreview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "alertsSummary", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-05-05-preview", + "2018-05-05-preview", + "2018-05-05", + "2017-11-15-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "smartGroups", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-04-01", + "2019-06-01", + "2019-03-01", + "2018-02-01-privatepreview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "smartDetectorAlertRules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "migrateFromSmartDetection", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-08-08-preview", + "2021-08-08", + "2019-05-05-preview", + "2018-11-02-privatepreview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "actionRules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-05-05-preview", + "2019-03-01-preview", + "2019-03-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "alertsMetaData", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2021-07-22-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "West Central US", + "East US", + "East US 2", + "West Europe", + "West US", + "West US 2", + "Central US", + "South Central US", + "Brazil South", + "Southeast Asia", + "East Asia", + "Central India", + "North Europe", + "UK South", + "Australia Southeast", + "Canada Central", + "Norway East", + "South Africa North", + "UAE North" + ], + "properties": null, + "resourceType": "prometheusRuleGroups", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-05-05-preview", + "2018-05-05-preview", + "2018-05-05", + "2017-11-15-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-01-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "East US", + "North Europe", + "West Europe", + "Sweden Central", + "Germany West Central" + ], + "properties": null, + "resourceType": "alertRuleRecommendations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview", + "2023-01-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Global" + ], + "properties": null, + "resourceType": "tenantActivityLogAlerts", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "e935b4a5-8968-416d-8414-caed51c782a9", + "roleDefinitionId": "9c6ffa40-421e-4dc0-9739-76b0699a11de" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.GuestConfiguration", + "namespace": "Microsoft.GuestConfiguration", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "Registered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-01-25", + "2021-01-25", + "2020-06-25", + "2018-11-20", + "2018-06-30-preview", + "2018-01-20-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "guestConfigurationAssignments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-01-25", + "2021-01-25", + "2020-06-25", + "2018-11-20", + "2018-06-30-preview", + "2018-01-20-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "dba650ed-9577-4bc0-9b5f-ef73e2d5bdfc", + "roleDefinitionId": "09b4df5b-7d96-4f1a-98c9-315718a70c92" + }, + { + "applicationId": "95c8b18b-3ed0-4299-88e6-31a12c4b4092", + "roleDefinitionId": "8ea8de51-0215-466b-98c2-f39b22d630fe" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Dynatrace.Observability", + "namespace": "Dynatrace.Observability", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-22-preview", + "2023-08-14-preview", + "2023-04-27", + "2023-04-20-preview", + "2023-03-01-preview", + "2022-10-01-preview", + "2021-09-01-preview", + "2021-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-22-preview", + "2023-08-14-preview", + "2023-04-27", + "2023-04-20-preview", + "2023-03-01-preview", + "2022-10-01-preview", + "2021-09-01-preview", + "2021-09-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-04-27", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "registeredSubscriptions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-22-preview", + "2023-08-14-preview", + "2023-04-27", + "2023-04-20-preview", + "2023-03-01-preview", + "2022-10-01-preview", + "2021-09-01-preview", + "2021-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-22-preview", + "2023-08-14-preview", + "2023-04-27", + "2023-04-20-preview", + "2023-03-01-preview", + "2022-10-01-preview", + "2021-09-01-preview", + "2021-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US EUAP", + "East US 2 EUAP", + "West US 2", + "West Europe", + "East US", + "West US 3", + "Canada Central", + "UAE North", + "Switzerland North" + ], + "properties": null, + "resourceType": "locations/operationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-22-preview", + "2023-08-14-preview", + "2023-04-27", + "2023-04-20-preview", + "2023-03-01-preview", + "2022-10-01-preview", + "2021-09-01-preview", + "2021-09-01" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "West Europe", + "East US", + "West US 3", + "Canada Central", + "UAE North", + "Switzerland North" + ], + "properties": null, + "resourceType": "monitors", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-22-preview", + "2023-08-14-preview", + "2023-04-27", + "2023-04-20-preview", + "2023-03-01-preview", + "2022-10-01-preview", + "2021-09-01-preview", + "2021-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "West US 3", + "UAE North", + "Canada Central", + "West Europe", + "East US", + "Switzerland North" + ], + "properties": null, + "resourceType": "monitors/tagRules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-22-preview", + "2023-08-14-preview", + "2023-04-27", + "2023-04-20-preview", + "2023-03-01-preview", + "2022-10-01-preview", + "2021-09-01-preview", + "2021-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "West Europe", + "West US 3", + "Canada Central", + "UAE North", + "East US", + "Switzerland North" + ], + "properties": null, + "resourceType": "monitors/singleSignOnConfigurations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-22-preview", + "2023-08-14-preview", + "2023-04-27", + "2023-04-20-preview", + "2023-03-01-preview", + "2022-10-01-preview", + "2021-09-01-preview", + "2021-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-22-preview", + "2023-08-14-preview", + "2023-04-27", + "2023-04-20-preview", + "2023-03-01-preview", + "2022-10-01-preview", + "2021-09-01-preview", + "2021-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "getMarketplaceSaaSResourceDetails", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "48ef7923-268f-473d-bcf1-07f0997961f4", + "roleDefinitionId": "654684a9-d054-4d1b-b20e-f95bfa8ff1c3" + }, + { + "applicationId": "9bd5ab7f-4031-4045-ace9-6bebbad202f6", + "roleDefinitionId": "654684a9-d054-4d1b-b20e-f95bfa8ff1c3" + }, + { + "applicationId": "b9a50111-7110-459d-bc13-534691bd5b7b", + "roleDefinitionId": "654684a9-d054-4d1b-b20e-f95bfa8ff1c3" + }, + { + "applicationId": "4435c199-c3da-46b9-a61d-76de3f2c9f82", + "roleDefinitionId": "654684a9-d054-4d1b-b20e-f95bfa8ff1c3" + }, + { + "applicationId": "85c49807-809d-4249-86e7-192762525474", + "roleDefinitionId": "654684a9-d054-4d1b-b20e-f95bfa8ff1c3" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/GitHub.Network", + "namespace": "GitHub.Network", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-15-beta", + "2023-03-15-alpha" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "Operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-15-beta" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US 2", + "Central US", + "West US", + "North Europe", + "West Europe", + "Southeast Asia", + "UK South", + "Australia East", + "South India", + "Switzerland North" + ], + "properties": null, + "resourceType": "networkSettings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-15-beta", + "2023-03-15-alpha" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "registeredSubscriptions", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "443155a6-77f3-45e3-882b-22b3a8d431fb", + "roleDefinitionId": "7389DE79-3180-4F07-B2BA-C5BA1F01B03A" + }, + { + "applicationId": "abba844e-bc0e-44b0-947a-dc74e5d09022", + "roleDefinitionId": "63BC473E-7767-42A5-A3BF-08EB71200E04" + }, + { + "applicationId": "d87dcbc6-a371-462e-88e3-28ad15ec4e64", + "roleDefinitionId": "861776c5-e0df-4f95-be4f-ac1eec193323" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.AAD", + "namespace": "Microsoft.AAD", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-12-01", + "2022-09-01", + "2021-05-01", + "2021-03-01", + "2020-01-01", + "2017-06-01", + "2017-01-01" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2021-05-01", + "locationMappings": null, + "locations": [ + "West US", + "Central US", + "East US", + "South Central US", + "West Europe", + "North Europe", + "East Asia", + "Southeast Asia", + "East US 2", + "Australia East", + "Australia Southeast", + "West Central US", + "North Central US", + "Japan East", + "Japan West", + "Brazil South", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "Korea Central", + "France Central", + "UK South", + "South Africa North", + "Switzerland North", + "UAE North", + "Germany West Central", + "West US 3", + "Norway East", + "JIO India West", + "UK West", + "Korea South", + "Switzerland West", + "Germany North", + "Sweden Central", + "Qatar Central", + "Poland Central" + ], + "properties": null, + "resourceType": "DomainServices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-12-01", + "2022-09-01", + "2021-05-01", + "2021-03-01", + "2020-01-01", + "2017-06-01" + ], + "capabilities": "None", + "defaultApiVersion": "2021-05-01", + "locationMappings": null, + "locations": [ + "West US", + "Central US", + "East US", + "South Central US", + "West Europe", + "North Europe", + "East Asia", + "Southeast Asia", + "East US 2", + "Australia East", + "Australia Southeast", + "West Central US", + "North Central US", + "Japan East", + "Japan West", + "Brazil South", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "Korea Central", + "France Central", + "UK South", + "South Africa North", + "Switzerland North", + "UAE North", + "Germany West Central", + "West US 3", + "Norway East", + "JIO India West", + "UK West", + "Korea South", + "Switzerland West", + "Germany North", + "Sweden Central", + "Qatar Central", + "Poland Central" + ], + "properties": null, + "resourceType": "DomainServices/oucontainer", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-12-01", + "2022-09-01", + "2021-05-01", + "2021-03-01", + "2020-01-01", + "2017-06-01", + "2017-01-01" + ], + "capabilities": "None", + "defaultApiVersion": "2021-05-01", + "locationMappings": null, + "locations": [ + "West US", + "Central US", + "East US", + "South Central US", + "West Europe", + "North Europe", + "East Asia", + "Southeast Asia", + "East US 2", + "Australia East", + "Australia Southeast", + "West Central US", + "North Central US", + "Japan East", + "Japan West", + "Brazil South", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "Korea Central", + "France Central", + "UK South", + "South Africa North", + "Switzerland North", + "UAE North", + "Germany West Central", + "West US 3", + "Norway East", + "JIO India West", + "UK West", + "Korea South", + "Switzerland West", + "Germany North", + "Sweden Central", + "Qatar Central", + "Poland Central" + ], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-12-01", + "2022-09-01", + "2021-05-01", + "2021-03-01", + "2020-01-01", + "2017-06-01", + "2017-01-01" + ], + "capabilities": "None", + "defaultApiVersion": "2021-05-01", + "locationMappings": null, + "locations": [ + "West US", + "Central US", + "East US", + "South Central US", + "West Europe", + "North Europe", + "East Asia", + "Southeast Asia", + "East US 2", + "Australia East", + "Australia Southeast", + "West Central US", + "North Central US", + "Japan East", + "Japan West", + "Brazil South", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "Korea Central", + "France Central", + "UK South", + "South Africa North", + "Switzerland North", + "UAE North", + "Germany West Central", + "West US 3", + "Norway East", + "JIO India West", + "UK West", + "Korea South", + "Switzerland West", + "Germany North", + "Sweden Central", + "Qatar Central", + "Poland Central" + ], + "properties": null, + "resourceType": "locations/operationresults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-12-01", + "2022-09-01", + "2021-05-01", + "2021-03-01", + "2020-01-01", + "2017-06-01", + "2017-01-01" + ], + "capabilities": "None", + "defaultApiVersion": "2021-05-01", + "locationMappings": null, + "locations": [ + "West US", + "Central US", + "East US", + "South Central US", + "West Europe", + "North Europe", + "East Asia", + "Southeast Asia", + "East US 2", + "Australia East", + "Australia Southeast", + "West Central US", + "North Central US", + "Japan East", + "Japan West", + "Brazil South", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "Korea Central", + "France Central", + "UK South", + "South Africa North", + "Switzerland North", + "UAE North", + "Germany West Central", + "West US 3", + "Norway East", + "JIO India West", + "UK West", + "Korea South", + "Switzerland West", + "Germany North", + "Sweden Central", + "Qatar Central", + "Poland Central" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.AadCustomSecurityAttributesDiagnosticSettings", + "namespace": "Microsoft.AadCustomSecurityAttributesDiagnosticSettings", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2017-04-01-preview", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "diagnosticSettings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2017-04-01-preview", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "diagnosticSettingsCategories", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "1b912ec3-a9dd-4c4d-a53e-76aa7adb28d7", + "roleDefinitionId": "c4cfa0e8-3cb5-4ced-9c3c-efaad3348120" + }, + { + "applicationId": "8d5683a1-43b9-4f38-8906-504eae3c36c9", + "roleDefinitionId": "22c73b79-f883-4780-b42d-98397ebe51b7" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/microsoft.aadiam", + "namespace": "microsoft.aadiam", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-07-01-preview", + "2020-07-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-07-01", + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "properties": null, + "resourceType": "azureADMetrics", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-03-01-preview", + "2020-03-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-03-01", + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "properties": null, + "resourceType": "privateLinkForAzureAD", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-04-01", + "2017-03-01", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-03-01", + "2016-02-01", + "2015-11-01", + "2015-01-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2017-04-01", + "locationMappings": null, + "locations": [ + "West US" + ], + "properties": null, + "resourceType": "tenants", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-04-01", + "2017-03-01", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-03-01", + "2016-02-01", + "2015-11-01", + "2015-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-05-01-preview", + "2017-04-01-preview", + "2017-04-01" + ], + "capabilities": "None", + "defaultApiVersion": "2017-04-01-preview", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "diagnosticSettings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-05-01-preview", + "2017-04-01-preview", + "2017-04-01" + ], + "capabilities": "None", + "defaultApiVersion": "2017-04-01-preview", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "diagnosticSettingsCategories", + "zoneMappings": null + } + ] + }, + { + "authorization": { + "applicationId": "24d3987b-be4a-48e0-a3e7-11c186f39e41", + "roleDefinitionId": "8004BAAB-A4CB-4981-8571-F7E44D039D93" + }, + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Addons", + "namespace": "Microsoft.Addons", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-03-01", + "2017-05-15" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "South Central US", + "East US", + "West Europe" + ], + "properties": null, + "resourceType": "supportProviders", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-03-01", + "2017-05-15" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "South Central US", + "East US", + "West Europe" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-03-01", + "2017-05-15" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "South Central US", + "East US", + "West Europe" + ], + "properties": null, + "resourceType": "operationResults", + "zoneMappings": null + } + ] + }, + { + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.ADHybridHealthService", + "namespace": "Microsoft.ADHybridHealthService", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationFree", + "registrationState": "Registered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US" + ], + "properties": null, + "resourceType": "services", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US" + ], + "properties": null, + "resourceType": "addsservices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US" + ], + "properties": null, + "resourceType": "configuration", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US" + ], + "properties": null, + "resourceType": "agents", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US" + ], + "properties": null, + "resourceType": "aadsupportcases", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US" + ], + "properties": null, + "resourceType": "reports", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US" + ], + "properties": null, + "resourceType": "servicehealthmetrics", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US" + ], + "properties": null, + "resourceType": "logs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US" + ], + "properties": null, + "resourceType": "anonymousapiusers", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "e420dc86-d66f-4069-a2d0-be2f937bd272", + "roleDefinitionId": "c9511e72-16f4-4804-9bed-d3f21cbe122f" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.AgFoodPlatform", + "namespace": "Microsoft.AgFoodPlatform", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2021-09-01-preview", + "2020-05-12-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-06-01-preview", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2021-09-01-preview", + "2020-05-12-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-06-01-preview", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "farmBeatsExtensionDefinitions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2021-09-01-preview", + "2020-05-12-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-06-01-preview", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "farmBeatsSolutionDefinitions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2021-09-01-preview", + "2020-05-12-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-06-01-preview", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2021-09-01-preview", + "2020-05-12-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + } + ] + }, + { + "authorization": { + "applicationId": "4ac7d521-0382-477b-b0f8-7e1d95f85ca2", + "roleDefinitionId": "490d5987-bcf6-4be6-b6b2-056a78cb693a" + }, + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.AnalysisServices", + "namespace": "Microsoft.AnalysisServices", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-08-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2017-08-01-beta", + "2017-08-01", + "2017-07-14", + "2016-05-16" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2017-08-01", + "locationMappings": null, + "locations": [ + "West US", + "North Europe", + "South Central US", + "West Europe", + "West Central US", + "Southeast Asia", + "East US 2", + "North Central US", + "Brazil South", + "Canada Central", + "Australia Southeast", + "Japan East", + "UK South", + "West India", + "West US 2", + "Central US", + "East US", + "Australia East" + ], + "properties": null, + "resourceType": "servers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-08-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2017-08-01-beta", + "2017-08-01", + "2017-07-14", + "2016-05-16" + ], + "capabilities": "None", + "defaultApiVersion": "2017-08-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-08-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2017-08-01-beta", + "2017-08-01", + "2017-07-14", + "2016-05-16" + ], + "capabilities": "None", + "defaultApiVersion": "2017-08-01", + "locationMappings": null, + "locations": [ + "West US", + "North Europe", + "South Central US", + "West Europe", + "West Central US", + "Southeast Asia", + "East US 2", + "North Central US", + "Brazil South", + "Canada Central", + "Australia Southeast", + "Japan East", + "UK South", + "West India", + "West US 2", + "Central US", + "East US", + "Australia East" + ], + "properties": null, + "resourceType": "locations/checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-08-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2017-08-01-beta", + "2017-08-01", + "2017-07-14", + "2016-05-16" + ], + "capabilities": "None", + "defaultApiVersion": "2017-08-01", + "locationMappings": null, + "locations": [ + "West US", + "North Europe", + "South Central US", + "West Europe", + "West Central US", + "Southeast Asia", + "East US 2", + "North Central US", + "Brazil South", + "Canada Central", + "Australia Southeast", + "Japan East", + "UK South", + "West India", + "West US 2", + "Central US", + "East US", + "Australia East" + ], + "properties": null, + "resourceType": "locations/operationresults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-08-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2017-08-01-beta", + "2017-08-01", + "2017-07-14", + "2016-05-16" + ], + "capabilities": "None", + "defaultApiVersion": "2017-08-01", + "locationMappings": null, + "locations": [ + "West US", + "North Europe", + "South Central US", + "West Europe", + "West Central US", + "Southeast Asia", + "East US 2", + "North Central US", + "Brazil South", + "Canada Central", + "Australia Southeast", + "Japan East", + "UK South", + "West India", + "West US 2", + "Central US", + "East US", + "Australia East" + ], + "properties": null, + "resourceType": "locations/operationstatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-08-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2017-08-01-beta", + "2017-08-01", + "2017-07-14", + "2016-05-16" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US 2", + "West Central US", + "West US 2" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "16f9e0a0-ac78-4c2c-a55a-f3855317a63a", + "roleDefinitionId": "6fc3ed3a-fa07-4e79-9ac0-2db46b294d31" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.AnyBuild", + "namespace": "Microsoft.AnyBuild", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-11-01", + "2020-08-26" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-11-01", + "2020-08-26" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "West US 2", + "West US 3", + "East US", + "North Europe", + "Japan East" + ], + "properties": null, + "resourceType": "Locations/OperationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-11-01", + "2020-08-26" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "West US 3", + "West Central US", + "East US", + "North Europe", + "Japan East" + ], + "properties": null, + "resourceType": "clusters", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-11-01", + "2020-08-26" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Operations", + "zoneMappings": null + } + ] + }, + { + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.ApiCenter", + "namespace": "Microsoft.ApiCenter", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "UK South", + "Central India", + "Australia East" + ], + "properties": null, + "resourceType": "services", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorization": { + "applicationId": "8602e328-9b72-4f2d-a4ae-1387d013a2b3", + "roleDefinitionId": "e263b525-2e60-4418-b655-420bae0b172e" + }, + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.ApiManagement", + "namespace": "Microsoft.ApiManagement", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01-preview", + "2022-09-01-preview", + "2022-08-01", + "2022-04-01-preview", + "2021-12-01-preview", + "2021-08-01", + "2021-04-01-preview", + "2021-01-01-preview", + "2020-12-01", + "2020-06-01-preview", + "2019-12-01-preview", + "2019-12-01", + "2019-01-01", + "2018-06-01-preview", + "2018-01-01", + "2017-03-01", + "2016-10-10", + "2016-07-07", + "2015-09-15", + "2014-02-14" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2021-08-01", + "locationMappings": null, + "locations": [ + "Central India", + "UAE North", + "Australia Central", + "Germany West Central", + "West Central US", + "Norway East", + "Switzerland North", + "Korea South", + "West India", + "Korea Central", + "South Africa North", + "UK West", + "Brazil South", + "East Asia", + "South India", + "Canada Central", + "Canada East", + "Australia Southeast", + "Japan East", + "North Central US", + "Southeast Asia", + "West US 2", + "Central US", + "UK South", + "Australia East", + "Japan West", + "West US", + "France Central", + "South Central US", + "East US 2", + "East US", + "North Europe", + "West Europe", + "West US 3", + "Jio India Central", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central" + ], + "properties": null, + "resourceType": "service", + "zoneMappings": [ + { + "location": "Australia East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Central India", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East Asia", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Korea Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Norway East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Poland Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Qatar Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "South Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Sweden Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Switzerland North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "UAE North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 3", + "zones": [ + "1", + "2", + "3" + ] + } + ] + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01-preview", + "2022-09-01-preview", + "2022-08-01", + "2022-04-01-preview", + "2021-12-01-preview", + "2021-08-01", + "2021-04-01-preview", + "2021-01-01-preview", + "2020-12-01", + "2020-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-08-01", + "locationMappings": null, + "locations": [ + "Central India", + "UAE North", + "Australia Central", + "Germany West Central", + "West Central US", + "Norway East", + "Switzerland North", + "Korea South", + "West India", + "Korea Central", + "South Africa North", + "UK West", + "Brazil South", + "East Asia", + "South India", + "Canada Central", + "Canada East", + "Australia Southeast", + "Japan East", + "North Central US", + "Southeast Asia", + "West US 2", + "Central US", + "UK South", + "Australia East", + "Japan West", + "West US", + "France Central", + "South Central US", + "East US 2", + "East US", + "North Europe", + "West Europe", + "West US 3", + "Jio India Central", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central" + ], + "properties": null, + "resourceType": "deletedServices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01-preview", + "2022-09-01-preview", + "2022-08-01", + "2022-04-01-preview", + "2021-12-01-preview", + "2021-08-01", + "2021-04-01-preview", + "2021-01-01-preview", + "2020-12-01", + "2020-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-08-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01-preview", + "2022-09-01-preview", + "2022-08-01", + "2022-04-01-preview", + "2021-12-01-preview", + "2021-08-01", + "2021-04-01-preview", + "2021-01-01-preview", + "2020-12-01", + "2020-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-08-01", + "locationMappings": null, + "locations": [ + "Central India", + "UAE North", + "Australia Central", + "Germany West Central", + "West Central US", + "Norway East", + "Switzerland North", + "Korea South", + "West India", + "Korea Central", + "South Africa North", + "UK West", + "Brazil South", + "East Asia", + "South India", + "Canada Central", + "Canada East", + "Australia Southeast", + "Japan East", + "North Central US", + "Southeast Asia", + "West US 2", + "Central US", + "UK South", + "Australia East", + "Japan West", + "West US", + "France Central", + "South Central US", + "East US 2", + "East US", + "North Europe", + "West Europe", + "West US 3", + "Jio India Central", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central" + ], + "properties": null, + "resourceType": "locations/deletedServices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2015-09-15", + "2014-02-14" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "validateServiceName", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2015-09-15", + "2014-02-14" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkServiceNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01-preview", + "2022-09-01-preview", + "2022-08-01", + "2022-04-01-preview", + "2021-12-01-preview", + "2021-08-01", + "2021-04-01-preview", + "2021-01-01-preview", + "2020-12-01", + "2020-06-01-preview", + "2019-12-01-preview", + "2019-12-01", + "2019-01-01", + "2018-06-01-preview", + "2018-01-01", + "2017-03-01", + "2016-10-10", + "2016-07-07", + "2015-09-15", + "2014-02-14" + ], + "capabilities": "None", + "defaultApiVersion": "2021-08-01", + "locationMappings": null, + "locations": [ + "Central India", + "UAE North", + "Australia Central", + "Germany West Central", + "West Central US", + "Norway East", + "Switzerland North", + "Korea South", + "West India", + "Korea Central", + "South Africa North", + "UK West", + "Brazil South", + "East Asia", + "South India", + "Canada Central", + "Canada East", + "Australia Southeast", + "Japan East", + "North Central US", + "Southeast Asia", + "West US 2", + "Central US", + "UK South", + "Australia East", + "Japan West", + "West US", + "France Central", + "South Central US", + "East US 2", + "East US", + "North Europe", + "West Europe", + "West US 3", + "Jio India Central", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central" + ], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01-preview", + "2022-09-01-preview", + "2022-08-01", + "2022-04-01-preview", + "2021-12-01-preview", + "2021-08-01", + "2021-04-01-preview", + "2021-01-01-preview", + "2020-12-01", + "2020-06-01-preview", + "2019-12-01-preview", + "2019-12-01", + "2019-01-01", + "2018-06-01-preview", + "2018-01-01", + "2017-03-01", + "2016-10-10", + "2016-07-07", + "2015-09-15", + "2014-02-14" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "reportFeedback", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01-preview", + "2022-09-01-preview", + "2022-08-01", + "2022-04-01-preview", + "2021-12-01-preview", + "2021-08-01", + "2021-04-01-preview", + "2021-01-01-preview", + "2020-12-01", + "2020-06-01-preview", + "2019-12-01-preview", + "2019-12-01", + "2019-01-01", + "2018-06-01-preview", + "2018-01-01", + "2017-03-01", + "2016-10-10", + "2016-07-07", + "2015-09-15", + "2014-02-14" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkFeedbackRequired", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01-preview", + "2022-09-01-preview", + "2022-08-01", + "2022-04-01-preview", + "2021-12-01-preview", + "2021-08-01", + "2021-04-01-preview", + "2021-01-01-preview", + "2020-12-01", + "2020-06-01-preview", + "2019-12-01-preview", + "2019-12-01", + "2019-01-01", + "2018-06-01-preview", + "2018-01-01", + "2017-03-01", + "2016-10-10", + "2016-07-07", + "2015-09-15", + "2014-02-14" + ], + "capabilities": "None", + "defaultApiVersion": "2022-08-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01-preview", + "2022-09-01-preview", + "2022-08-01", + "2022-04-01-preview", + "2021-12-01-preview", + "2021-08-01", + "2021-04-01-preview", + "2021-01-01-preview", + "2020-12-01" + ], + "capabilities": "None", + "defaultApiVersion": "2021-08-01", + "locationMappings": null, + "locations": [ + "Central India", + "UAE North", + "Australia Central", + "Germany West Central", + "West Central US", + "Norway East", + "Switzerland North", + "Korea South", + "West India", + "Korea Central", + "South Africa North", + "UK West", + "Brazil South", + "East Asia", + "South India", + "Canada Central", + "Canada East", + "Australia Southeast", + "Japan East", + "North Central US", + "Southeast Asia", + "West US 2", + "Central US", + "UK South", + "Australia East", + "Japan West", + "West US", + "France Central", + "South Central US", + "East US 2", + "East US", + "North Europe", + "West Europe", + "West US 3", + "Jio India Central", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central" + ], + "properties": null, + "resourceType": "getDomainOwnershipIdentifier", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01-preview", + "2022-09-01-preview", + "2022-08-01", + "2022-04-01-preview", + "2021-12-01-preview", + "2021-08-01", + "2021-04-01-preview", + "2021-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central India", + "UAE North", + "Australia Central", + "Germany West Central", + "West Central US", + "Norway East", + "Switzerland North", + "Korea South", + "West India", + "Korea Central", + "South Africa North", + "UK West", + "Brazil South", + "East Asia", + "South India", + "Canada Central", + "Canada East", + "Australia Southeast", + "Japan East", + "North Central US", + "Southeast Asia", + "West US 2", + "Central US", + "UK South", + "Australia East", + "Japan West", + "West US", + "France Central", + "South Central US", + "East US 2", + "East US", + "North Europe", + "West Europe", + "West US 3", + "Jio India Central", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central" + ], + "properties": null, + "resourceType": "service/eventGridFilters", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "61e987ea-ea8c-4843-903e-1b58e57b7ab1", + "roleDefinitionId": "c7475c7e-a920-4cf3-b98e-dc8f59cf645c" + }, + { + "applicationId": "cb250467-fc8f-4c42-8349-9ff9e9a17b02", + "roleDefinitionId": "de0f3cd9-7380-41cc-bd23-124b755df82d" + }, + { + "applicationId": "19b21e10-1304-498b-92d4-4290e94999fa", + "roleDefinitionId": "de0f3cd9-7380-41cc-bd23-124b755df82d" + }, + { + "applicationId": "56823b05-67d8-413a-b6ab-ad19d7710cf2", + "roleDefinitionId": "de0f3cd9-7380-41cc-bd23-124b755df82d" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.ApiSecurity", + "namespace": "Microsoft.ApiSecurity", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US 2 EUAP" + ], + "properties": null, + "resourceType": "Locations/OperationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-12-privatepreview", + "2022-03-02-privatepreview", + "2021-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-12-privatepreview", + "2022-03-02-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "apiCollections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-03-02-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "apiCollections/apiCollectionDetails", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-03-02-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "apiCollectionsMeta", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-03-02-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "apiCollectionsMeta/apiCollectionMetaDetails", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "7e3bc4fd-85a3-4192-b177-5b8bfc87f42c", + "roleDefinitionId": "39a74f72-b40f-4bdc-b639-562fe2260bf0" + }, + { + "applicationId": "3734c1a4-2bed-4998-a37a-ff1a9e7bf019", + "roleDefinitionId": "5c779a4f-5cb2-4547-8c41-478d9be8ba90" + }, + { + "applicationId": "55ebbb62-3b9c-49fd-9b87-9595226dd4ac", + "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635", + "roleDefinitionId": "e49ca620-7992-4561-a7df-4ed67dad77b5" + }, + { + "applicationId": "1459b1f6-7a5b-4300-93a2-44b4a651759f", + "roleDefinitionId": "3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.App", + "namespace": "Microsoft.App", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-02-preview", + "2023-05-01", + "2023-04-01-preview", + "2022-11-01-preview", + "2022-10-01", + "2022-06-01-preview", + "2022-03-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "North Central US (Stage)", + "West US 2", + "Southeast Asia", + "Sweden Central", + "Canada Central", + "West Europe", + "North Europe", + "East US", + "East US 2", + "East Asia", + "Australia East", + "Germany West Central", + "Japan East", + "UK South", + "West US", + "Central US", + "North Central US", + "South Central US", + "Korea Central", + "Brazil South", + "West US 3", + "France Central", + "South Africa North", + "Norway East", + "Switzerland North", + "UAE North" + ], + "properties": null, + "resourceType": "managedEnvironments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-02-preview", + "2023-05-01", + "2023-04-01-preview", + "2022-11-01-preview", + "2022-10-01", + "2022-06-01-preview", + "2022-03-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "North Central US (Stage)", + "West US 2", + "Southeast Asia", + "Sweden Central", + "Canada Central", + "West Europe", + "North Europe", + "East US", + "East US 2", + "East Asia", + "Australia East", + "Germany West Central", + "Japan East", + "UK South", + "West US", + "Central US", + "North Central US", + "South Central US", + "Korea Central", + "Brazil South", + "West US 3", + "France Central", + "South Africa North", + "Norway East", + "Switzerland North", + "UAE North" + ], + "properties": null, + "resourceType": "managedEnvironments/certificates", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-02-preview", + "2023-05-01", + "2023-04-01-preview", + "2022-11-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "North Central US (Stage)", + "West US 2", + "Southeast Asia", + "Sweden Central", + "Canada Central", + "West Europe", + "North Europe", + "East US", + "East US 2", + "East Asia", + "Australia East", + "Germany West Central", + "Japan East", + "UK South", + "West US", + "Central US", + "North Central US", + "South Central US", + "Korea Central", + "Brazil South", + "West US 3", + "France Central", + "South Africa North", + "Norway East", + "Switzerland North", + "UAE North" + ], + "properties": null, + "resourceType": "managedEnvironments/managedCertificates", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-02-preview", + "2023-05-01", + "2023-04-01-preview", + "2022-11-01-preview", + "2022-10-01", + "2022-06-01-preview", + "2022-03-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "North Central US (Stage)", + "West US 2", + "Southeast Asia", + "Sweden Central", + "Canada Central", + "West Europe", + "North Europe", + "East US", + "East US 2", + "East Asia", + "Australia East", + "Germany West Central", + "Japan East", + "UK South", + "West US", + "Central US", + "North Central US", + "South Central US", + "Korea Central", + "Brazil South", + "West US 3", + "France Central", + "South Africa North", + "Norway East", + "Switzerland North", + "UAE North" + ], + "properties": null, + "resourceType": "containerApps", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-02-preview", + "2023-05-01", + "2023-04-01-preview", + "2022-11-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "North Central US (Stage)", + "West US 2", + "Southeast Asia", + "Sweden Central", + "Canada Central", + "West Europe", + "North Europe", + "East US", + "East US 2", + "East Asia", + "Australia East", + "Germany West Central", + "Japan East", + "UK South", + "West US", + "Central US", + "North Central US", + "South Central US", + "Korea Central", + "Brazil South", + "West US 3", + "France Central", + "South Africa North", + "Norway East", + "Switzerland North", + "UAE North" + ], + "properties": null, + "resourceType": "jobs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-02-preview", + "2023-05-01", + "2023-04-01-preview", + "2022-11-01-preview", + "2022-10-01", + "2022-06-01-preview", + "2022-03-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-02-preview", + "2023-05-01", + "2023-04-01-preview", + "2022-11-01-preview", + "2022-10-01", + "2022-06-01-preview", + "2022-03-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "North Central US (Stage)", + "West US 2", + "Southeast Asia", + "Sweden Central", + "Canada Central", + "West Europe", + "North Europe", + "East US", + "East US 2", + "East Asia", + "Australia East", + "Germany West Central", + "Japan East", + "UK South", + "West US", + "Central US", + "North Central US", + "South Central US", + "Korea Central", + "Brazil South", + "West US 3", + "France Central", + "South Africa North", + "Norway East", + "Switzerland North", + "UAE North" + ], + "properties": null, + "resourceType": "locations/managedEnvironmentOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-02-preview", + "2023-05-01", + "2023-04-01-preview", + "2022-11-01-preview", + "2022-10-01", + "2022-06-01-preview", + "2022-03-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "North Central US (Stage)", + "West US 2", + "Southeast Asia", + "Sweden Central", + "Canada Central", + "West Europe", + "North Europe", + "East US", + "East US 2", + "East Asia", + "Australia East", + "Germany West Central", + "Japan East", + "UK South", + "West US", + "Central US", + "North Central US", + "South Central US", + "Korea Central", + "Brazil South", + "West US 3", + "France Central", + "South Africa North", + "Norway East", + "Switzerland North", + "UAE North" + ], + "properties": null, + "resourceType": "locations/managedEnvironmentOperationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-02-preview", + "2023-05-01", + "2023-04-01-preview", + "2022-11-01-preview", + "2022-10-01", + "2022-06-01-preview", + "2022-03-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "North Central US (Stage)", + "West US 2", + "Southeast Asia", + "Sweden Central", + "Canada Central", + "West Europe", + "North Europe", + "East US", + "East US 2", + "East Asia", + "Australia East", + "Germany West Central", + "Japan East", + "UK South", + "West US", + "Central US", + "North Central US", + "South Central US", + "Korea Central", + "Brazil South", + "West US 3", + "France Central", + "South Africa North", + "Norway East", + "Switzerland North", + "UAE North" + ], + "properties": null, + "resourceType": "locations/containerappOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-02-preview", + "2023-05-01", + "2023-04-01-preview", + "2022-11-01-preview", + "2022-10-01", + "2022-06-01-preview", + "2022-03-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "North Central US (Stage)", + "West US 2", + "Southeast Asia", + "Sweden Central", + "Canada Central", + "West Europe", + "North Europe", + "East US", + "East US 2", + "East Asia", + "Australia East", + "Germany West Central", + "Japan East", + "UK South", + "West US", + "Central US", + "North Central US", + "South Central US", + "Korea Central", + "Brazil South", + "West US 3", + "France Central", + "South Africa North", + "Norway East", + "Switzerland North", + "UAE North" + ], + "properties": null, + "resourceType": "locations/containerappOperationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-02-preview", + "2023-05-01", + "2023-04-01-preview", + "2022-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "North Central US (Stage)", + "West US 2", + "Southeast Asia", + "Sweden Central", + "Canada Central", + "West Europe", + "North Europe", + "East US", + "East US 2", + "East Asia", + "Australia East", + "Germany West Central", + "Japan East", + "UK South", + "West US", + "Central US", + "North Central US", + "South Central US", + "Korea Central", + "Brazil South", + "West US 3", + "France Central", + "South Africa North", + "Norway East", + "Switzerland North", + "UAE North" + ], + "properties": null, + "resourceType": "locations/containerappsjobOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-02-preview", + "2023-05-01", + "2023-04-01-preview", + "2022-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "North Central US (Stage)", + "West US 2", + "Southeast Asia", + "Sweden Central", + "Canada Central", + "West Europe", + "North Europe", + "East US", + "East US 2", + "East Asia", + "Australia East", + "Germany West Central", + "Japan East", + "UK South", + "West US", + "Central US", + "North Central US", + "South Central US", + "Korea Central", + "Brazil South", + "West US 3", + "France Central", + "South Africa North", + "Norway East", + "Switzerland North", + "UAE North" + ], + "properties": null, + "resourceType": "locations/containerappsjobOperationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-02-preview", + "2023-05-01", + "2023-04-01-preview", + "2022-11-01-preview", + "2022-10-01", + "2022-06-01-preview", + "2022-03-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "North Central US (Stage)", + "West US 2", + "Southeast Asia", + "Sweden Central", + "Canada Central", + "West Europe", + "North Europe", + "East US", + "East US 2", + "East Asia", + "Australia East", + "Germany West Central", + "Japan East", + "UK South", + "West US", + "Central US", + "North Central US", + "South Central US", + "Korea Central", + "Brazil South", + "West US 3", + "France Central", + "South Africa North", + "Norway East", + "Switzerland North", + "UAE North" + ], + "properties": null, + "resourceType": "locations/sourceControlOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-02-preview", + "2023-05-01", + "2023-04-01-preview", + "2022-11-01-preview", + "2022-10-01", + "2022-06-01-preview", + "2022-03-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "North Central US (Stage)", + "West US 2", + "Southeast Asia", + "Sweden Central", + "Canada Central", + "West Europe", + "North Europe", + "East US", + "East US 2", + "East Asia", + "Australia East", + "Germany West Central", + "Japan East", + "UK South", + "West US", + "Central US", + "North Central US", + "South Central US", + "Korea Central", + "Brazil South", + "West US 3", + "France Central", + "South Africa North", + "Norway East", + "Switzerland North", + "UAE North" + ], + "properties": null, + "resourceType": "locations/sourceControlOperationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-02-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-02-preview", + "locationMappings": null, + "locations": [ + "North Central US (Stage)", + "West US 2", + "Southeast Asia", + "Sweden Central", + "Canada Central", + "West Europe", + "North Europe", + "East US", + "East US 2", + "East Asia", + "Australia East", + "Germany West Central", + "Japan East", + "UK South", + "West US", + "Central US", + "North Central US", + "South Central US", + "Korea Central", + "Brazil South", + "West US 3", + "France Central", + "South Africa North", + "Norway East", + "Switzerland North", + "UAE North" + ], + "properties": null, + "resourceType": "locations/usages", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-02-preview", + "2023-05-01", + "2023-04-01-preview", + "2023-02-01", + "2022-11-01-preview", + "2022-10-01", + "2022-06-01-preview", + "2022-03-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "North Central US (Stage)", + "Central US EUAP", + "East US 2 EUAP", + "West US 2", + "Southeast Asia", + "Sweden Central", + "Canada Central", + "West Europe", + "North Europe", + "East US", + "East US 2", + "East Asia", + "Australia East", + "Germany West Central", + "Japan East", + "UK South", + "West US", + "Central US", + "North Central US", + "South Central US", + "Korea Central", + "Brazil South", + "West US 3", + "France Central", + "South Africa North", + "Norway East", + "Switzerland North", + "UAE North" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-02-preview", + "2023-05-01", + "2023-04-01-preview", + "2022-11-01-preview", + "2022-10-01", + "2022-06-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "North Central US (Stage)", + "North Central US", + "East US", + "East Asia", + "West Europe" + ], + "properties": null, + "resourceType": "connectedEnvironments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-02-preview", + "2023-05-01", + "2023-04-01-preview", + "2022-11-01-preview", + "2022-10-01", + "2022-06-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "North Central US (Stage)", + "North Central US", + "East US", + "East Asia", + "West Europe" + ], + "properties": null, + "resourceType": "connectedEnvironments/certificates", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-02-preview", + "2023-05-01", + "2023-04-01-preview", + "2022-11-01-preview", + "2022-10-01", + "2022-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "North Central US (Stage)", + "North Central US", + "East US", + "East Asia", + "West Europe" + ], + "properties": null, + "resourceType": "locations/connectedEnvironmentOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-02-preview", + "2023-05-01", + "2023-04-01-preview", + "2022-11-01-preview", + "2022-10-01", + "2022-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "North Central US (Stage)", + "North Central US", + "East US", + "East Asia", + "West Europe" + ], + "properties": null, + "resourceType": "locations/connectedEnvironmentOperationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-02-preview", + "2023-05-01", + "2023-04-01-preview", + "2022-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "North Central US (Stage)", + "West US 2", + "Southeast Asia", + "Sweden Central", + "Canada Central", + "West Europe", + "North Europe", + "East US", + "East US 2", + "East Asia", + "Australia East", + "Germany West Central", + "Japan East", + "UK South", + "West US", + "Central US", + "North Central US", + "South Central US", + "Korea Central", + "Brazil South", + "West US 3", + "France Central", + "South Africa North", + "Norway East", + "Switzerland North", + "UAE North" + ], + "properties": null, + "resourceType": "locations/managedCertificateOperationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-02-preview", + "2023-05-01", + "2023-04-01-preview", + "2022-11-01-preview", + "2022-10-01", + "2022-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "North Central US (Stage)", + "West US 2", + "Southeast Asia", + "Sweden Central", + "Canada Central", + "West Europe", + "North Europe", + "East US", + "East US 2", + "East Asia", + "Australia East", + "Germany West Central", + "Japan East", + "UK South", + "West US", + "Central US", + "North Central US", + "South Central US", + "Korea Central", + "Brazil South", + "West US 3", + "France Central", + "South Africa North", + "Norway East", + "Switzerland North", + "UAE North" + ], + "properties": null, + "resourceType": "locations/billingMeters", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-02-preview", + "2023-05-01", + "2023-04-01-preview", + "2022-11-01-preview", + "2022-10-01", + "2022-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "North Central US (Stage)", + "West US 2", + "Southeast Asia", + "Sweden Central", + "Canada Central", + "West Europe", + "North Europe", + "East US", + "East US 2", + "East Asia", + "Australia East", + "Germany West Central", + "Japan East", + "UK South", + "West US", + "Central US", + "North Central US", + "South Central US", + "Korea Central", + "Brazil South", + "West US 3", + "France Central", + "South Africa North", + "Norway East", + "Switzerland North", + "UAE North" + ], + "properties": null, + "resourceType": "locations/availableManagedEnvironmentsWorkloadProfileTypes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-02-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-02-preview", + "locationMappings": null, + "locations": [ + "North Central US (Stage)", + "West US 2", + "Southeast Asia", + "Sweden Central", + "Canada Central", + "West Europe", + "North Europe", + "East US", + "East US 2", + "East Asia", + "Australia East", + "Germany West Central", + "Japan East", + "UK South", + "West US", + "Central US", + "North Central US", + "South Central US", + "Korea Central", + "Brazil South", + "West US 3", + "France Central", + "South Africa North", + "Norway East", + "Switzerland North", + "UAE North" + ], + "properties": null, + "resourceType": "getCustomDomainVerificationId", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "f9c691e6-93b3-4d57-944c-afcc737f9abf", + "roleDefinitionId": "1dc07278-9fb7-4aa4-bf32-bbb5a0a0c0bd" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.AppAssessment", + "namespace": "Microsoft.AppAssessment", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-09-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-09-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-09-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US 2 EUAP", + "West Central US" + ], + "properties": null, + "resourceType": "Locations/OperationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-09-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US 2 EUAP", + "West Central US" + ], + "properties": null, + "resourceType": "Locations/osVersions", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "b312d4d5-a2c0-4480-b588-a5024677eb5c", + "managedByRoleDefinitionId": "1e86f807-6ec0-40b3-8b5f-686b7e43a0a2", + "roleDefinitionId": "3f3de833-5a58-4f4c-9e47-605c791a21e5" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.AppComplianceAutomation", + "namespace": "Microsoft.AppComplianceAutomation", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-15-preview", + "2022-11-16-preview", + "2022-05-10-privatepreview", + "2022-05-10-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-15-preview", + "2022-11-16-preview", + "2022-05-10-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-15-preview", + "2022-11-16-preview", + "2022-05-10-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 3" + ], + "properties": null, + "resourceType": "locations/operationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-15-preview", + "2022-11-16-preview", + "2022-05-10-privatepreview", + "2022-05-10-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "reports", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-15-preview", + "2022-11-16-preview", + "2022-05-10-privatepreview", + "2022-05-10-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "reports/snapshots", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "onboard", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "triggerEvaluation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "reports/webhooks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "reports/evidences", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "listInUseStorageAccounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "getCollectionCount", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "getOverviewStatus", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "35ffadb3-7fc1-497e-b61b-381d28e744cc", + "roleDefinitionId": "fffa409e-a8cc-4cbf-8e1c-6d940b33040e" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.AppConfiguration", + "namespace": "Microsoft.AppConfiguration", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-05-01", + "2022-03-01-preview", + "2021-10-01-preview", + "2021-03-01-preview", + "2020-07-01-preview", + "2020-06-01", + "2019-11-01-preview", + "2019-10-01", + "2019-02-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "Central US", + "West US", + "East US", + "West Europe", + "Southeast Asia", + "Australia East", + "Australia Southeast", + "North Europe", + "UK South", + "South Central US", + "East US 2", + "West US 2", + "Brazil South", + "Canada Central", + "Central India", + "East Asia", + "France Central", + "Japan East", + "Korea Central", + "North Central US", + "Switzerland North", + "Germany West Central", + "UAE North", + "Norway East", + "South Africa North", + "UK West", + "Japan West", + "Jio India West", + "West US 3", + "Brazil Southeast", + "Sweden Central", + "Switzerland West", + "Qatar Central", + "South India", + "Poland Central", + "Canada East", + "Norway West", + "Australia Central", + "Australia Central 2", + "France South", + "Korea South", + "Germany North", + "Italy North", + "Israel Central", + "South Africa West" + ], + "properties": null, + "resourceType": "configurationStores", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-05-01", + "2022-03-01-preview", + "2021-10-01-preview", + "2021-03-01-preview", + "2020-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "Central US", + "West US", + "East US", + "West Europe", + "Southeast Asia", + "Australia East", + "Australia Southeast", + "North Europe", + "UK South", + "South Central US", + "East US 2", + "West US 2", + "Brazil South", + "Canada Central", + "Central India", + "East Asia", + "France Central", + "Japan East", + "Korea Central", + "North Central US", + "Switzerland North", + "Germany West Central", + "UAE North", + "Norway East", + "South Africa North", + "UK West", + "Japan West", + "Jio India West", + "West US 3", + "Brazil Southeast", + "Sweden Central", + "Switzerland West", + "Qatar Central", + "South India", + "Poland Central", + "Canada East", + "Norway West", + "Australia Central", + "Australia Central 2", + "France South", + "Korea South", + "Germany North", + "Italy North", + "Israel Central", + "South Africa West" + ], + "properties": null, + "resourceType": "configurationStores/keyValues", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-05-01", + "2022-03-01-preview", + "2021-10-01-preview", + "2021-03-01-preview", + "2020-07-01-preview", + "2020-06-01", + "2019-11-01-preview", + "2019-10-01", + "2019-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "Central US", + "West US", + "East US", + "West Europe", + "Southeast Asia", + "Australia East", + "Australia Southeast", + "North Europe", + "UK South", + "South Central US", + "East US 2", + "West US 2", + "Brazil South", + "Canada Central", + "Central India", + "East Asia", + "France Central", + "Japan East", + "Korea Central", + "North Central US", + "Switzerland North", + "Germany West Central", + "UAE North", + "Norway East", + "South Africa North", + "UK West", + "Japan West", + "Jio India West", + "West US 3", + "Brazil Southeast", + "Sweden Central", + "Switzerland West", + "Qatar Central", + "South India", + "Poland Central", + "Canada East", + "Norway West", + "Australia Central", + "Australia Central 2", + "France South", + "Korea South", + "Germany North", + "Italy North", + "Israel Central", + "South Africa West" + ], + "properties": null, + "resourceType": "configurationStores/eventGridFilters", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-05-01", + "2022-03-01-preview", + "2021-10-01-preview", + "2021-03-01-preview", + "2020-07-01-preview", + "2020-06-01", + "2019-11-01-preview", + "2019-10-01", + "2019-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "Central US", + "West US", + "East US", + "West Europe", + "Southeast Asia", + "Australia East", + "Australia Southeast", + "North Europe", + "UK South", + "South Central US", + "East US 2", + "West US 2", + "Brazil South", + "Canada Central", + "Central India", + "East Asia", + "France Central", + "Japan East", + "Korea Central", + "North Central US", + "Switzerland North", + "Germany West Central", + "UAE North", + "Norway East", + "South Africa North", + "UK West", + "Jio India West", + "Japan West", + "West US 3", + "Brazil Southeast", + "Sweden Central", + "South India", + "Qatar Central", + "Switzerland West", + "Canada East", + "Norway West", + "Australia Central 2", + "France South", + "Korea South", + "Germany North", + "Poland Central", + "Australia Central", + "Italy North", + "Israel Central", + "South Africa West" + ], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-05-01", + "2022-03-01-preview", + "2021-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "Central US", + "West US", + "East US", + "West Europe", + "Southeast Asia", + "Australia East", + "Australia Southeast", + "North Europe", + "UK South", + "South Central US", + "East US 2", + "West US 2", + "Brazil South", + "Canada Central", + "Central India", + "East Asia", + "France Central", + "Japan East", + "Korea Central", + "North Central US", + "Switzerland North", + "Germany West Central", + "UAE North", + "Norway East", + "South Africa North", + "UK West", + "Japan West", + "Jio India West", + "West US 3", + "Brazil Southeast", + "Sweden Central", + "Switzerland West", + "Qatar Central", + "South India", + "Poland Central", + "Canada East", + "Norway West", + "Australia Central", + "Australia Central 2", + "France South", + "Korea South", + "Germany North", + "Italy North", + "Israel Central", + "South Africa West" + ], + "properties": null, + "resourceType": "locations/checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-05-01", + "2022-03-01-preview", + "2021-10-01-preview", + "2021-03-01-preview", + "2020-07-01-preview", + "2020-06-01", + "2019-11-01-preview", + "2019-10-01", + "2019-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "Central US", + "West US", + "East US", + "West Europe", + "Southeast Asia", + "Australia East", + "Australia Southeast", + "North Europe", + "UK South", + "South Central US", + "East US 2", + "West US 2", + "Brazil South", + "Canada Central", + "Central India", + "East Asia", + "France Central", + "Japan East", + "Korea Central", + "North Central US", + "Switzerland North", + "Germany West Central", + "UAE North", + "Norway East", + "South Africa North", + "UK West", + "Jio India West", + "Japan West", + "West US 3", + "Brazil Southeast", + "Sweden Central", + "South India", + "Qatar Central", + "Switzerland West", + "Canada East", + "Norway West", + "Australia Central 2", + "France South", + "Korea South", + "Germany North", + "Poland Central", + "Australia Central", + "Italy North", + "Israel Central", + "South Africa West" + ], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-05-01", + "2022-03-01-preview", + "2021-10-01-preview", + "2021-03-01-preview", + "2020-07-01-preview", + "2020-06-01", + "2019-11-01-preview", + "2019-10-01", + "2019-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "Central US", + "West US", + "East US", + "West Europe", + "Southeast Asia", + "Australia East", + "Australia Southeast", + "North Europe", + "UK South", + "South Central US", + "East US 2", + "West US 2", + "Brazil South", + "Canada Central", + "Central India", + "East Asia", + "France Central", + "Japan East", + "Korea Central", + "North Central US", + "Switzerland North", + "Germany West Central", + "UAE North", + "Norway East", + "South Africa North", + "UK West", + "Japan West", + "Jio India West", + "West US 3", + "Brazil Southeast", + "Sweden Central", + "Switzerland West", + "Qatar Central", + "South India", + "Poland Central", + "Canada East", + "Norway West", + "Australia Central", + "Australia Central 2", + "France South", + "Korea South", + "Germany North", + "Italy North", + "Israel Central", + "South Africa West" + ], + "properties": null, + "resourceType": "locations/operationsStatus", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-05-01", + "2022-03-01-preview", + "2021-10-01-preview", + "2021-03-01-preview", + "2020-07-01-preview", + "2020-06-01", + "2019-11-01-preview", + "2019-10-01", + "2019-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "Central US", + "West US", + "East US", + "West Europe", + "Southeast Asia", + "Australia East", + "Australia Southeast", + "North Europe", + "UK South", + "South Central US", + "East US 2", + "West US 2", + "Brazil South", + "Canada Central", + "Central India", + "East Asia", + "France Central", + "Japan East", + "Korea Central", + "North Central US", + "Switzerland North", + "Germany West Central", + "UAE North", + "Norway East", + "South Africa North", + "UK West", + "Jio India West", + "Japan West", + "West US 3", + "Brazil Southeast", + "Sweden Central", + "South India", + "Qatar Central", + "Switzerland West", + "Canada East", + "Norway West", + "Australia Central 2", + "France South", + "Korea South", + "Germany North", + "Poland Central", + "Australia Central", + "Italy North", + "Israel Central", + "South Africa West" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-05-01", + "2022-03-01-preview", + "2021-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "Central US", + "West US", + "East US", + "West Europe", + "Southeast Asia", + "Australia East", + "Australia Southeast", + "North Europe", + "UK South", + "South Central US", + "East US 2", + "West US 2", + "Brazil South", + "Canada Central", + "Central India", + "East Asia", + "France Central", + "Japan East", + "Korea Central", + "North Central US", + "Switzerland North", + "Germany West Central", + "UAE North", + "Norway East", + "South Africa North", + "UK West", + "Japan West", + "Jio India West", + "West US 3", + "Brazil Southeast", + "Sweden Central", + "Switzerland West", + "Qatar Central", + "South India", + "Poland Central", + "Canada East", + "Norway West", + "Australia Central", + "Australia Central 2", + "France South", + "Korea South", + "Germany North", + "Italy North", + "Israel Central", + "South Africa West" + ], + "properties": null, + "resourceType": "deletedConfigurationStores", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-05-01", + "2022-03-01-preview", + "2021-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "Central US", + "West US", + "East US", + "West Europe", + "Southeast Asia", + "Australia East", + "Australia Southeast", + "North Europe", + "UK South", + "South Central US", + "East US 2", + "West US 2", + "Brazil South", + "Canada Central", + "Central India", + "East Asia", + "France Central", + "Japan East", + "Korea Central", + "North Central US", + "Switzerland North", + "Germany West Central", + "UAE North", + "Norway East", + "South Africa North", + "UK West", + "Japan West", + "Jio India West", + "West US 3", + "Brazil Southeast", + "Sweden Central", + "Switzerland West", + "Qatar Central", + "South India", + "Poland Central", + "Canada East", + "Norway West", + "Australia Central", + "Australia Central 2", + "France South", + "Korea South", + "Germany North", + "Italy North", + "Israel Central", + "South Africa West" + ], + "properties": null, + "resourceType": "locations/deletedConfigurationStores", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "Central US", + "West US", + "East US", + "West Europe", + "Southeast Asia", + "Australia East", + "Australia Southeast", + "North Europe", + "UK South", + "South Central US", + "East US 2", + "West US 2", + "Brazil South", + "Canada Central", + "Central India", + "East Asia", + "France Central", + "Japan East", + "Korea Central", + "North Central US", + "Switzerland North", + "Germany West Central", + "UAE North", + "Norway East", + "South Africa North", + "UK West", + "Japan West", + "Jio India West", + "West US 3", + "Brazil Southeast", + "Sweden Central", + "Switzerland West", + "Qatar Central", + "South India", + "Poland Central", + "Canada East", + "Norway West", + "Australia Central", + "Australia Central 2", + "France South", + "Korea South", + "Germany North", + "Italy North", + "Israel Central", + "South Africa West" + ], + "properties": null, + "resourceType": "configurationStores/replicas", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "03b39d0f-4213-4864-a245-b1476ec03169" + }, + { + "applicationId": "584a29b4-7876-4445-921e-71e427d4f4b3" + }, + { + "applicationId": "b61cc489-e138-4a69-8bf3-c2c5855c8784", + "roleDefinitionId": "462ddd96-910a-44f5-adfa-644d99942778" + }, + { + "applicationId": "e8de9221-a19c-4c81-b814-fd37c6caf9d2", + "managedByRoleDefinitionId": "5b60e0d8-70f6-43fe-b54a-1373f48edd50", + "roleDefinitionId": "2b7114c7-e037-4bc6-8f83-3b79b250acbe" + }, + { + "applicationId": "366cbfa5-46b3-47fb-9d70-55fb923b4833", + "roleDefinitionId": "d63d711d-1c1a-41d9-905a-fb87b28d47d9" + }, + { + "applicationId": "86adf623-eea3-4453-9f4a-18134ac1410d" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.AppPlatform", + "namespace": "Microsoft.AppPlatform", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2023-07-01-preview", + "2023-05-01-preview", + "2023-03-01-preview", + "2023-01-01-preview", + "2022-12-01", + "2022-11-01-preview", + "2022-09-01-preview", + "2022-05-01-preview", + "2022-04-01", + "2022-03-01-preview", + "2022-01-01-preview", + "2021-09-01-preview", + "2021-06-01-preview", + "2020-11-01-preview", + "2020-07-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-12-01", + "locationMappings": null, + "locations": [ + "West Europe", + "East US", + "West US 2", + "Southeast Asia", + "Central US", + "Australia East", + "UK South", + "North Europe", + "South Central US", + "East US 2", + "Canada Central", + "North Central US", + "West US", + "UAE North", + "Central India", + "Korea Central", + "East Asia", + "Japan East", + "South Africa North", + "West US 3", + "Brazil South", + "France Central", + "Switzerland North", + "Germany West Central", + "Canada East", + "Sweden Central", + "UK West" + ], + "properties": null, + "resourceType": "Spring", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2023-07-01-preview", + "2023-05-01-preview", + "2023-03-01-preview", + "2023-01-01-preview", + "2022-12-01", + "2022-11-01-preview", + "2022-09-01-preview", + "2022-05-01-preview", + "2022-04-01", + "2022-03-01-preview", + "2022-01-01-preview", + "2021-09-01-preview", + "2021-06-01-preview", + "2020-11-01-preview", + "2020-07-01" + ], + "capabilities": "SystemAssignedResourceIdentity", + "defaultApiVersion": "2022-12-01", + "locationMappings": null, + "locations": [ + "West Europe", + "East US", + "West US 2", + "Southeast Asia", + "Central US", + "Australia East", + "UK South", + "North Europe", + "South Central US", + "East US 2", + "Canada Central", + "North Central US", + "West US", + "UAE North", + "Central India", + "Korea Central", + "East Asia", + "Japan East", + "South Africa North", + "West US 3", + "Brazil South", + "France Central", + "Switzerland North", + "Germany West Central", + "Canada East", + "Sweden Central", + "UK West" + ], + "properties": null, + "resourceType": "Spring/apps", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2023-07-01-preview", + "2023-05-01-preview", + "2023-03-01-preview", + "2023-01-01-preview", + "2022-12-01", + "2022-11-01-preview", + "2022-09-01-preview", + "2022-05-01-preview", + "2022-04-01", + "2022-03-01-preview", + "2022-01-01-preview", + "2021-09-01-preview", + "2021-06-01-preview", + "2020-11-01-preview", + "2020-07-01" + ], + "capabilities": "None", + "defaultApiVersion": "2022-12-01", + "locationMappings": null, + "locations": [ + "West Europe", + "East US", + "West US 2", + "Southeast Asia", + "Central US", + "Australia East", + "UK South", + "North Europe", + "South Central US", + "East US 2", + "Canada Central", + "North Central US", + "West US", + "UAE North", + "Central India", + "Korea Central", + "East Asia", + "Japan East", + "South Africa North", + "West US 3", + "Brazil South", + "France Central", + "Switzerland North", + "Germany West Central", + "Canada East", + "Sweden Central", + "UK West" + ], + "properties": null, + "resourceType": "Spring/apps/deployments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2023-07-01-preview", + "2023-05-01-preview", + "2023-03-01-preview", + "2023-01-01-preview", + "2022-12-01", + "2022-11-01-preview", + "2022-09-01-preview", + "2022-05-01-preview", + "2022-04-01", + "2022-03-01-preview", + "2022-01-01-preview", + "2021-09-01-preview", + "2021-06-01-preview", + "2020-11-01-preview", + "2020-07-01" + ], + "capabilities": "None", + "defaultApiVersion": "2022-12-01", + "locationMappings": null, + "locations": [ + "West Europe", + "East US", + "West US 2", + "Southeast Asia", + "Central US", + "Australia East", + "UK South", + "North Europe", + "South Central US", + "East US 2", + "Canada Central", + "North Central US", + "West US", + "UAE North", + "Central India", + "Korea Central", + "East Asia", + "Japan East", + "South Africa North", + "West US 3", + "Brazil South", + "France Central", + "Switzerland North", + "Germany West Central", + "Canada East", + "Sweden Central", + "UK West" + ], + "properties": null, + "resourceType": "locations/checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2023-07-01-preview", + "2023-05-01-preview", + "2023-03-01-preview", + "2023-01-01-preview", + "2022-12-01", + "2022-11-01-preview", + "2022-09-01-preview", + "2022-05-01-preview", + "2022-04-01", + "2022-03-01-preview", + "2022-01-01-preview", + "2021-09-01-preview", + "2021-06-01-preview", + "2020-11-01-preview", + "2020-07-01" + ], + "capabilities": "None", + "defaultApiVersion": "2022-12-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2023-07-01-preview", + "2023-05-01-preview", + "2023-03-01-preview", + "2023-01-01-preview", + "2022-12-01", + "2022-11-01-preview", + "2022-09-01-preview", + "2022-05-01-preview", + "2022-04-01", + "2022-03-01-preview", + "2022-01-01-preview", + "2021-09-01-preview", + "2021-06-01-preview", + "2020-11-01-preview", + "2020-07-01" + ], + "capabilities": "None", + "defaultApiVersion": "2022-12-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2023-07-01-preview", + "2023-05-01-preview", + "2023-03-01-preview", + "2023-01-01-preview", + "2022-12-01", + "2022-05-01-preview", + "2022-04-01", + "2022-03-01-preview", + "2022-01-01-preview", + "2021-09-01-preview", + "2021-06-01-preview", + "2020-11-01-preview", + "2020-07-01" + ], + "capabilities": "None", + "defaultApiVersion": "2022-12-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "runtimeVersions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2023-07-01-preview", + "2023-05-01-preview", + "2023-03-01-preview", + "2023-01-01-preview", + "2022-12-01", + "2022-11-01-preview", + "2022-09-01-preview", + "2022-05-01-preview", + "2022-04-01", + "2022-03-01-preview", + "2022-01-01-preview", + "2021-09-01-preview", + "2021-06-01-preview", + "2020-11-01-preview", + "2020-07-01" + ], + "capabilities": "None", + "defaultApiVersion": "2022-12-01", + "locationMappings": null, + "locations": [ + "West Europe", + "East US", + "West US 2", + "Southeast Asia", + "Central US", + "Australia East", + "UK South", + "North Europe", + "South Central US", + "East US 2", + "Canada Central", + "North Central US", + "West US", + "UAE North", + "Central India", + "Korea Central", + "East Asia", + "Japan East", + "South Africa North", + "West US 3", + "Brazil South", + "France Central", + "Switzerland North", + "Germany West Central", + "Canada East", + "Sweden Central", + "UK West" + ], + "properties": null, + "resourceType": "locations/operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2023-07-01-preview", + "2023-05-01-preview", + "2023-03-01-preview", + "2023-01-01-preview", + "2022-12-01", + "2022-11-01-preview", + "2022-09-01-preview", + "2022-05-01-preview", + "2022-04-01", + "2022-03-01-preview", + "2022-01-01-preview", + "2021-09-01-preview", + "2021-06-01-preview", + "2020-11-01-preview", + "2020-07-01" + ], + "capabilities": "None", + "defaultApiVersion": "2022-12-01", + "locationMappings": null, + "locations": [ + "West Europe", + "East US", + "West US 2", + "Southeast Asia", + "Central US", + "Australia East", + "UK South", + "North Europe", + "South Central US", + "East US 2", + "Canada Central", + "North Central US", + "West US", + "UAE North", + "Central India", + "Korea Central", + "East Asia", + "Japan East", + "South Africa North", + "West US 3", + "Brazil South", + "France Central", + "Switzerland North", + "Germany West Central", + "Canada East", + "Sweden Central", + "UK West" + ], + "properties": null, + "resourceType": "locations/operationStatus", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "319f651f-7ddb-4fc6-9857-7aef9250bd05" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.ArcNetworking", + "namespace": "Microsoft.ArcNetworking", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US 2 EUAP", + "West US 2", + "East US", + "East US 2" + ], + "properties": null, + "resourceType": "locations/operationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "East US", + "East US 2" + ], + "properties": null, + "resourceType": "arcNwLoadBalancers", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "c61423b7-1d1f-430d-b444-0eee53298103", + "roleDefinitionId": "7299b0b1-11da-4858-8943-7db197005959" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Attestation", + "namespace": "Microsoft.Attestation", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-06-01-preview", + "2021-06-01", + "2020-10-01", + "2018-09-01-preview", + "2018-09-01" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US 2", + "Central US", + "UK South", + "East US", + "Canada Central", + "Canada East", + "UK West", + "West US", + "North Europe", + "West Europe", + "Southeast Asia", + "South Central US", + "North Central US", + "Australia East", + "Australia Southeast", + "Japan East", + "Japan West", + "Switzerland North", + "Italy North", + "Central India" + ], + "properties": null, + "resourceType": "attestationProviders", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-06-01-preview", + "2021-06-01", + "2020-10-01", + "2018-09-01-preview", + "2018-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US 2", + "Central US", + "UK South", + "East US", + "Canada Central", + "Canada East", + "UK West", + "West US", + "North Europe", + "West Europe", + "Southeast Asia", + "South Central US", + "North Central US", + "Australia East", + "Australia Southeast", + "Japan East", + "Japan West", + "Switzerland North", + "Italy North", + "Central India" + ], + "properties": null, + "resourceType": "defaultProviders", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-06-01-preview", + "2021-06-01", + "2020-10-01", + "2018-09-01-preview", + "2018-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-06-01-preview", + "2021-06-01", + "2020-10-01", + "2018-09-01-preview", + "2018-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US 2", + "Central US", + "UK South", + "East US", + "Canada Central", + "Canada East", + "UK West", + "West US", + "North Europe", + "West Europe", + "Southeast Asia", + "South Central US", + "North Central US", + "Australia East", + "Australia Southeast", + "Japan East", + "Japan West", + "Switzerland North", + "Italy North", + "Central India" + ], + "properties": null, + "resourceType": "locations/defaultProvider", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01-preview", + "2021-06-01-preview", + "2021-06-01", + "2020-10-01", + "2018-09-01-preview", + "2018-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "de926fbf-e23b-41f9-ae15-c943a9cfa630" + }, + { + "applicationId": "01fc33a7-78ba-4d2f-a4b7-768e336e890e" + }, + { + "applicationId": "1dcb1bc7-c721-498e-b2fa-bcddcea44171" + }, + { + "applicationId": "5861f7fb-5582-4c1a-83c0-fc5ffdb531a6" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Authorization", + "namespace": "Microsoft.Authorization", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationFree", + "registrationState": "Registered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-04-01-preview", + "2020-10-01-preview", + "2020-10-01" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "roleAssignmentScheduleRequests", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-04-01-preview", + "2020-10-01-preview", + "2020-10-01" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "roleEligibilityScheduleRequests", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-10-01-preview", + "2020-10-01" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "roleAssignmentSchedules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-10-01-preview", + "2020-10-01" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "roleEligibilitySchedules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-10-01-preview", + "2020-10-01" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "roleAssignmentScheduleInstances", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-10-01-preview", + "2020-10-01" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "roleEligibilityScheduleInstances", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-10-01-preview", + "2020-10-01" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "roleManagementPolicies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-10-01-preview", + "2020-10-01" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "roleManagementPolicyAssignments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-10-01-preview", + "2020-10-01" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "eligibleChildResources", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-08-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "roleManagementAlerts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-08-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "roleManagementAlertConfigurations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-08-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "roleManagementAlertDefinitions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-08-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "roleManagementAlertOperations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-09-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2015-07-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2022-04-01", + "2022-01-01-preview", + "2021-04-01-preview", + "2020-10-01-preview", + "2020-08-01-preview", + "2020-04-01-preview", + "2020-03-01-preview", + "2019-04-01-preview", + "2018-12-01-preview", + "2018-09-01-preview", + "2018-07-01", + "2018-01-01-preview", + "2017-10-01-preview", + "2017-09-01", + "2017-05-01", + "2016-07-01", + "2015-07-01", + "2015-06-01", + "2015-05-01-preview", + "2014-10-01-preview", + "2014-07-01-preview", + "2014-04-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "roleAssignments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-05-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2015-07-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2022-05-01-preview", + "2022-04-01", + "2018-07-01", + "2018-01-01-preview", + "2017-09-01", + "2017-05-01", + "2016-07-01", + "2015-07-01", + "2015-06-01", + "2015-05-01-preview", + "2014-10-01-preview", + "2014-07-01-preview", + "2014-04-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "roleDefinitions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2015-06-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2015-07-01", + "2015-06-01", + "2015-05-01-preview", + "2014-10-01-preview", + "2014-07-01-preview", + "2014-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "classicAdministrators", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-05-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2015-07-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2022-04-01", + "2018-07-01", + "2018-01-01-preview", + "2017-05-01", + "2016-07-01", + "2015-07-01", + "2015-06-01", + "2015-05-01-preview", + "2014-10-01-preview", + "2014-07-01-preview", + "2014-04-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "permissions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-04-01", + "2019-03-01-preview", + "2018-07-01-preview", + "2018-07-01" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "denyAssignments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-04-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2016-09-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2020-05-01", + "2017-04-01", + "2016-09-01", + "2015-06-01", + "2015-05-01-preview", + "2015-01-01" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-05-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2017-05-01", + "2016-07-01", + "2015-07-01", + "2015-01-01", + "2014-10-01-preview", + "2014-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-03-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2016-12-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2021-06-01", + "2020-09-01", + "2020-08-01", + "2020-03-01", + "2019-09-01", + "2019-06-01", + "2019-01-01", + "2018-05-01", + "2018-03-01", + "2016-12-01", + "2016-04-01", + "2015-10-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "policyDefinitions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-03-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2021-06-01", + "2020-09-01", + "2020-08-01", + "2020-03-01", + "2019-09-01", + "2019-06-01", + "2019-01-01", + "2018-05-01", + "2018-03-01", + "2017-06-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "policySetDefinitions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-03-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2016-12-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2022-06-01", + "2021-06-01", + "2020-09-01", + "2020-08-01", + "2020-03-01", + "2019-09-01", + "2019-06-01", + "2019-01-01", + "2018-05-01", + "2018-03-01", + "2017-06-01-preview", + "2016-12-01", + "2016-04-01", + "2015-10-01-preview" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "policyAssignments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-07-01-preview", + "2020-07-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "policyExemptions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-09-01", + "2020-03-01-preview", + "2018-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "dataAliases", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "dataPolicyManifests", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-05-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2015-07-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2022-04-01", + "2018-07-01", + "2018-01-01-preview", + "2017-05-01", + "2016-07-01", + "2015-07-01-preview", + "2015-07-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "providerOperations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-05-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2017-05-01", + "2016-07-01", + "2015-07-01", + "2015-06-01", + "2015-05-01-preview", + "2014-10-01-preview", + "2014-07-01-preview", + "2014-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "elevateAccess", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-09-01-preview", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2018-09-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkAccess", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-09-01-preview", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2018-09-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "batchResourceCheckAccess", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-04-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "findOrphanRoleAssignments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-08-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "roleAssignmentsUsageMetrics", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-12-01-preview", + "2021-07-01-preview", + "2021-03-01-preview", + "2018-05-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "accessReviewScheduleDefinitions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-12-01-preview", + "2021-07-01-preview", + "2021-03-01-preview", + "2018-05-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "accessReviewScheduleSettings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-11-16-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "accessReviewHistoryDefinitions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-01-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "roleAssignmentApprovals", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01", + "2023-01-01", + "2020-05-01" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "privateLinkAssociations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-05-01" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "resourceManagementPrivateLinks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "EnablePrivateLinkNetworkAccess", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-05-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operationStatus", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2017-04-01-preview", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "diagnosticSettings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2017-04-01-preview", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "diagnosticSettingsCategories", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "9ae330ab-d710-466b-851c-c828e7340846" + }, + { + "applicationId": "d828acde-4b48-47f5-a6e8-52460104a052", + "roleDefinitionId": "111e90e1-c9ec-40f6-b898-c0964578da58" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Automanage", + "namespace": "Microsoft.Automanage", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-05-04", + "2021-04-30-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "East US", + "East US 2", + "South Central US", + "West US", + "West US 2", + "West Central US", + "North Europe", + "West Europe", + "Canada Central", + "Japan East", + "UK South", + "Australia Southeast", + "Australia East", + "Southeast Asia" + ], + "properties": null, + "resourceType": "configurationProfileAssignments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-05-04", + "2021-04-30-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-05-04", + "locationMappings": null, + "locations": [ + "Central US", + "East US 2", + "East US", + "North Central US", + "South Central US", + "West US 2", + "West Central US", + "West US", + "West Europe", + "North Europe", + "Canada Central", + "Japan East", + "UK South", + "Australia Southeast", + "Australia East", + "Southeast Asia" + ], + "properties": null, + "resourceType": "configurationProfiles", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-05-04", + "2021-04-30-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2021-04-30-preview", + "locationMappings": null, + "locations": [ + "Central US", + "East US 2", + "East US", + "North Central US", + "South Central US", + "West US 2", + "West Central US", + "West US", + "West Europe", + "North Europe", + "Canada Central", + "Japan East", + "UK South", + "Australia Southeast", + "Australia East", + "Southeast Asia" + ], + "properties": null, + "resourceType": "configurationProfiles/versions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-05-04", + "2021-04-30-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "bestPractices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-05-04", + "2021-04-30-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "bestPractices/versions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview", + "2023-03-31-preview", + "2022-06-01-preview", + "2022-05-04", + "2022-03-30-preview", + "2021-04-30-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2022-05-04", + "locationMappings": null, + "locations": [ + "Central US", + "East US 2", + "East US", + "North Central US", + "South Central US", + "West US 2", + "West Central US", + "West US" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-05-04", + "2021-04-30-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "servicePrincipals", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "fc75330b-179d-49af-87dd-3b1acf6827fa", + "roleDefinitionId": "95fd5de3-d071-4362-92bf-cf341c1de832" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Automation", + "namespace": "Microsoft.Automation", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-15-preview", + "2022-08-08", + "2022-02-22", + "2022-01-31", + "2021-06-22", + "2021-04-01", + "2020-01-13-preview", + "2019-06-01", + "2018-06-30", + "2018-01-15", + "2017-05-15-preview", + "2015-10-31", + "2015-01-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2018-06-30", + "locationMappings": null, + "locations": [ + "Japan East", + "East US 2", + "West Europe", + "South Africa North", + "UK West", + "Switzerland North", + "Brazil Southeast", + "Norway East", + "Germany West Central", + "UAE North", + "Switzerland West", + "Japan West", + "UAE Central", + "Australia Central 2", + "South India", + "France South", + "Norway West", + "West US 3", + "Sweden Central", + "Korea South", + "Southeast Asia", + "South Central US", + "North Central US", + "East Asia", + "Central US", + "West US", + "Australia Central", + "Australia East", + "Korea Central", + "East US", + "West US 2", + "Brazil South", + "UK South", + "West Central US", + "North Europe", + "Canada Central", + "Australia Southeast", + "Central India", + "France Central", + "Jio India West", + "Jio India Central", + "Qatar Central", + "South Africa West", + "Poland Central", + "Germany North", + "Italy North", + "Canada East" + ], + "properties": null, + "resourceType": "automationAccounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-15-preview", + "2022-01-31" + ], + "capabilities": "None", + "defaultApiVersion": "2022-01-31", + "locationMappings": null, + "locations": [ + "Japan East", + "East US 2", + "West Europe", + "South Africa North", + "UK West", + "Switzerland North", + "Brazil Southeast", + "Norway East", + "Germany West Central", + "UAE North", + "Switzerland West", + "Japan West", + "UAE Central", + "Australia Central 2", + "South India", + "France South", + "Norway West", + "West US 3", + "Sweden Central", + "Korea South", + "Southeast Asia", + "South Central US", + "North Central US", + "East Asia", + "Central US", + "West US", + "Australia Central", + "Australia East", + "Korea Central", + "East US", + "West US 2", + "Brazil South", + "UK South", + "West Central US", + "North Europe", + "Canada Central", + "Australia Southeast", + "Central India", + "France Central", + "Jio India West", + "Jio India Central", + "Qatar Central", + "South Africa West", + "Poland Central", + "Germany North", + "Italy North", + "Canada East" + ], + "properties": null, + "resourceType": "deletedAutomationAccounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-15-preview", + "2022-08-08", + "2020-01-13-preview", + "2019-06-01", + "2018-06-30", + "2018-01-15", + "2017-05-15-preview", + "2015-10-31", + "2015-01-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Japan East", + "East US 2", + "West Europe", + "South Africa North", + "UK West", + "Switzerland North", + "Brazil Southeast", + "Norway East", + "Germany West Central", + "UAE North", + "Switzerland West", + "Japan West", + "UAE Central", + "Australia Central 2", + "South India", + "France South", + "Norway West", + "West US 3", + "Sweden Central", + "Korea South", + "Southeast Asia", + "South Central US", + "North Central US", + "East Asia", + "West US", + "Central US", + "Australia Central", + "Australia East", + "Korea Central", + "East US", + "West US 2", + "Brazil South", + "UK South", + "West Central US", + "North Europe", + "Canada Central", + "Australia Southeast", + "Central India", + "France Central", + "Jio India West", + "Jio India Central", + "Qatar Central", + "South Africa West", + "Poland Central", + "Germany North", + "Italy North", + "Canada East" + ], + "properties": null, + "resourceType": "automationAccounts/runbooks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-15-preview", + "2022-08-08", + "2020-01-13-preview", + "2019-06-01", + "2018-06-30", + "2018-01-15", + "2017-05-15-preview", + "2015-10-31", + "2015-01-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Japan East", + "East US 2", + "West Europe", + "South Africa North", + "West US", + "Central US", + "UK West", + "Switzerland North", + "Brazil Southeast", + "Norway East", + "Germany West Central", + "UAE North", + "Switzerland West", + "Japan West", + "UAE Central", + "Australia Central 2", + "South India", + "France South", + "Norway West", + "West US 3", + "Sweden Central", + "Korea South", + "Southeast Asia", + "South Central US", + "North Central US", + "Australia Central", + "Australia East", + "Korea Central", + "East US", + "West US 2", + "Brazil South", + "UK South", + "West Central US", + "Central India", + "Australia Southeast", + "Canada Central", + "North Europe", + "East Asia", + "France Central", + "Jio India West", + "Jio India Central", + "Qatar Central", + "South Africa West", + "Poland Central", + "Germany North", + "Italy North", + "Canada East" + ], + "properties": null, + "resourceType": "automationAccounts/configurations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-15-preview", + "2018-06-30", + "2018-01-15", + "2017-05-15-preview", + "2015-10-31", + "2015-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Japan East", + "East US 2", + "West Europe", + "South Africa North", + "UK West", + "Switzerland North", + "Brazil Southeast", + "Norway East", + "Germany West Central", + "UAE North", + "Switzerland West", + "Japan West", + "UAE Central", + "Australia Central 2", + "South India", + "France South", + "Norway West", + "Sweden Central", + "West US 3", + "Korea South", + "Southeast Asia", + "South Central US", + "North Central US", + "East Asia", + "Central US", + "West US", + "Australia Central", + "Korea Central", + "East US", + "West US 2", + "Brazil South", + "UK South", + "West Central US", + "North Europe", + "Canada Central", + "Australia Southeast", + "Central India", + "Australia East", + "France Central", + "Jio India West", + "Jio India Central", + "Qatar Central", + "South Africa West", + "Poland Central", + "Germany North", + "Italy North", + "Canada East" + ], + "properties": null, + "resourceType": "automationAccounts/webhooks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-15-preview", + "2020-01-13-preview", + "2019-06-01", + "2018-06-30", + "2018-01-15", + "2017-05-15-preview", + "2015-10-31", + "2015-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "South Central US" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-15-preview", + "2020-01-13-preview", + "2019-06-01", + "2018-06-30", + "2018-01-15", + "2017-05-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Japan East", + "East US 2", + "West Europe", + "South Africa North", + "UK West", + "Switzerland North", + "Brazil Southeast", + "Norway East", + "Germany West Central", + "UAE North", + "Switzerland West", + "Japan West", + "UAE Central", + "Australia Central 2", + "South India", + "France South", + "Norway West", + "West US 3", + "Korea South", + "Sweden Central", + "Southeast Asia", + "South Central US", + "North Central US", + "East Asia", + "Central US", + "West US", + "Australia Central", + "Australia East", + "Korea Central", + "East US", + "West US 2", + "Brazil South", + "UK South", + "West Central US", + "North Europe", + "Canada Central", + "Australia Southeast", + "Central India", + "France Central", + "Jio India West", + "Jio India Central", + "Qatar Central", + "South Africa West", + "Poland Central", + "Germany North", + "Italy North", + "Canada East" + ], + "properties": null, + "resourceType": "automationAccounts/softwareUpdateConfigurations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-15-preview", + "2022-08-08", + "2020-01-13-preview", + "2019-06-01", + "2018-06-30", + "2018-01-15", + "2017-05-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Japan East", + "East US 2", + "West Europe", + "South Africa North", + "UK West", + "Switzerland North", + "Brazil Southeast", + "Norway East", + "Germany West Central", + "UAE North", + "Switzerland West", + "Japan West", + "UAE Central", + "Australia Central 2", + "South India", + "France South", + "Norway West", + "West US 3", + "Korea South", + "Sweden Central", + "Southeast Asia", + "South Central US", + "North Central US", + "East Asia", + "Central US", + "West US", + "Australia Central", + "Australia East", + "Korea Central", + "East US", + "West US 2", + "Brazil South", + "UK South", + "West Central US", + "North Europe", + "Canada Central", + "Australia Southeast", + "Central India", + "France Central", + "Jio India West", + "Jio India Central", + "Qatar Central", + "South Africa West", + "Poland Central", + "Germany North", + "Italy North", + "Canada East" + ], + "properties": null, + "resourceType": "automationAccounts/softwareUpdateConfigurationRuns", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-15-preview", + "2022-08-08", + "2020-01-13-preview", + "2019-06-01", + "2018-06-30", + "2018-01-15", + "2017-05-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Japan East", + "East US 2", + "West Europe", + "South Africa North", + "UK West", + "Switzerland North", + "Brazil Southeast", + "Norway East", + "Germany West Central", + "UAE North", + "Switzerland West", + "Japan West", + "UAE Central", + "Australia Central 2", + "South India", + "France South", + "Norway West", + "West US 3", + "Korea South", + "Sweden Central", + "Southeast Asia", + "South Central US", + "North Central US", + "East Asia", + "Central US", + "West US", + "Australia Central", + "Australia East", + "Korea Central", + "East US", + "West US 2", + "Brazil South", + "UK South", + "West Central US", + "North Europe", + "Canada Central", + "Australia Southeast", + "Central India", + "France Central", + "Jio India West", + "Jio India Central", + "Qatar Central", + "South Africa West", + "Poland Central", + "Germany North", + "Italy North", + "Canada East" + ], + "properties": null, + "resourceType": "automationAccounts/softwareUpdateConfigurationMachineRuns", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-15-preview", + "2022-08-08", + "2020-01-13-preview", + "2019-06-01", + "2018-06-30", + "2018-01-15", + "2017-05-15-preview", + "2015-10-31", + "2015-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Japan East", + "East US 2", + "West Europe", + "South Africa North", + "UK West", + "Switzerland North", + "Brazil Southeast", + "Norway East", + "Germany West Central", + "UAE North", + "Switzerland West", + "Japan West", + "UAE Central", + "Australia Central 2", + "South India", + "France South", + "Norway West", + "West US 3", + "Korea South", + "Sweden Central", + "Southeast Asia", + "South Central US", + "North Central US", + "East Asia", + "Central US", + "West US", + "Australia Central", + "Australia East", + "Korea Central", + "East US", + "West US 2", + "Brazil South", + "UK South", + "West Central US", + "North Europe", + "Canada Central", + "Australia Southeast", + "Central India", + "France Central", + "Jio India West", + "Jio India Central", + "Qatar Central", + "South Africa West", + "Poland Central", + "Germany North", + "Italy North", + "Canada East" + ], + "properties": null, + "resourceType": "automationAccounts/jobs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-15-preview", + "2021-06-22", + "2020-01-13-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Japan East", + "East US 2", + "West Europe", + "South Africa North", + "UK West", + "Switzerland North", + "Brazil Southeast", + "Norway East", + "Germany West Central", + "UAE North", + "Switzerland West", + "Japan West", + "UAE Central", + "Australia Central 2", + "South India", + "France South", + "Norway West", + "West US 3", + "Sweden Central", + "Korea South", + "Southeast Asia", + "South Central US", + "North Central US", + "East Asia", + "Central US", + "West US", + "Australia Central", + "Australia East", + "Korea Central", + "East US", + "West US 2", + "Brazil South", + "UK South", + "West Central US", + "North Europe", + "Canada Central", + "Australia Southeast", + "Central India", + "France Central", + "Jio India West", + "Jio India Central", + "Qatar Central", + "South Africa West", + "Poland Central", + "Germany North", + "Italy North", + "Canada East" + ], + "properties": null, + "resourceType": "automationAccounts/privateLinkResources", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-15-preview", + "2021-06-22", + "2020-01-13-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Japan East", + "East US 2", + "West Europe", + "South Africa North", + "UK West", + "Switzerland North", + "Brazil Southeast", + "Norway East", + "Germany West Central", + "UAE North", + "Switzerland West", + "Japan West", + "UAE Central", + "Australia Central 2", + "South India", + "France South", + "Norway West", + "West US 3", + "Sweden Central", + "Korea South", + "Southeast Asia", + "South Central US", + "North Central US", + "East Asia", + "Central US", + "West US", + "Australia Central", + "Australia East", + "Korea Central", + "East US", + "West US 2", + "Brazil South", + "UK South", + "West Central US", + "North Europe", + "Canada Central", + "Australia Southeast", + "Central India", + "France Central", + "Jio India West", + "Jio India Central", + "Qatar Central", + "South Africa West", + "Poland Central", + "Germany North", + "Italy North", + "Canada East" + ], + "properties": null, + "resourceType": "automationAccounts/privateEndpointConnections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-15-preview", + "2021-06-22", + "2020-01-13-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Japan East", + "East US 2", + "West Europe", + "South Africa North", + "UK West", + "Switzerland North", + "Brazil Southeast", + "Norway East", + "Germany West Central", + "UAE North", + "Switzerland West", + "Japan West", + "UAE Central", + "Australia Central 2", + "South India", + "France South", + "Norway West", + "West US 3", + "Sweden Central", + "Korea South", + "Southeast Asia", + "South Central US", + "North Central US", + "East Asia", + "Central US", + "West US", + "Australia Central", + "Australia East", + "Korea Central", + "East US", + "West US 2", + "Brazil South", + "UK South", + "West Central US", + "North Europe", + "Canada Central", + "Australia Southeast", + "Central India", + "France Central", + "Jio India West", + "Jio India Central", + "Qatar Central", + "South Africa West", + "Poland Central", + "Germany North", + "Italy North", + "Canada East" + ], + "properties": null, + "resourceType": "automationAccounts/privateEndpointConnectionProxies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-15-preview", + "2022-08-08", + "2022-02-22", + "2021-06-22", + "2021-04-01", + "2020-01-13-preview", + "2019-06-01", + "2018-06-30", + "2018-01-15", + "2017-05-15-preview", + "2015-10-31", + "2015-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Japan East", + "East US 2", + "West Europe", + "South Africa North", + "UK West", + "Switzerland North", + "Brazil Southeast", + "Norway East", + "Germany West Central", + "UAE North", + "Switzerland West", + "Japan West", + "UAE Central", + "Australia Central 2", + "South India", + "France South", + "Norway West", + "West US 3", + "Southeast Asia", + "South Central US", + "North Central US", + "East Asia", + "Central US", + "West US", + "Australia Central", + "Australia East", + "Korea Central", + "East US", + "West US 2", + "Brazil South", + "UK South", + "West Central US", + "North Europe", + "Canada Central", + "Australia Southeast", + "Central India", + "France Central", + "Sweden Central", + "Korea South", + "Jio India West", + "Jio India Central", + "Qatar Central", + "South Africa West", + "Poland Central", + "Germany North", + "Italy North", + "Canada East" + ], + "properties": null, + "resourceType": "automationAccounts/hybridRunbookWorkerGroups", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-15-preview", + "2022-08-08", + "2021-06-22" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Japan East", + "East US 2", + "West Europe", + "South Africa North", + "UK West", + "Switzerland North", + "Brazil Southeast", + "Norway East", + "Germany West Central", + "UAE North", + "Switzerland West", + "Japan West", + "UAE Central", + "Australia Central 2", + "South India", + "France South", + "Norway West", + "West US 3", + "Southeast Asia", + "South Central US", + "North Central US", + "East Asia", + "Central US", + "West US", + "Australia Central", + "Australia East", + "Korea Central", + "East US", + "West US 2", + "Brazil South", + "UK South", + "West Central US", + "North Europe", + "Canada Central", + "Australia Southeast", + "Central India", + "France Central", + "Sweden Central", + "Korea South", + "Jio India West", + "Jio India Central", + "Qatar Central", + "South Africa West", + "Poland Central", + "Germany North", + "Italy North", + "Canada East" + ], + "properties": null, + "resourceType": "automationAccounts/hybridRunbookWorkerGroups/hybridRunbookWorkers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-15-preview", + "2021-06-22", + "2021-04-01", + "2020-01-13-preview", + "2019-06-01", + "2018-06-30", + "2018-01-15", + "2017-05-15-preview", + "2015-10-31", + "2015-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Japan East", + "East US 2", + "West Europe", + "South Africa North", + "UK West", + "Switzerland North", + "Brazil Southeast", + "Norway East", + "Germany West Central", + "UAE North", + "Switzerland West", + "Japan West", + "UAE Central", + "Australia Central 2", + "South India", + "France South", + "Norway West", + "West US 3", + "Sweden Central", + "Korea South", + "Southeast Asia", + "South Central US", + "North Central US", + "East Asia", + "Central US", + "West US", + "Australia Central", + "Australia East", + "Korea Central", + "East US", + "West US 2", + "Brazil South", + "UK South", + "West Central US", + "North Europe", + "Canada Central", + "Australia Southeast", + "Central India", + "France Central", + "Jio India West", + "Jio India Central", + "Qatar Central", + "South Africa West", + "Poland Central", + "Germany North", + "Italy North", + "Canada East" + ], + "properties": null, + "resourceType": "automationAccounts/agentRegistrationInformation", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "dad37da6-229d-4bc0-8b94-fee8600589db", + "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635", + "roleDefinitionId": "5cbfe752-1a6e-4926-b68f-0475c305f85e" + }, + { + "applicationId": "150c8903-2280-4ab6-8708-b080044d94c6", + "roleDefinitionId": "5cbfe752-1a6e-4926-b68f-0475c305f85e" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.AutonomousDevelopmentPlatform", + "namespace": "Microsoft.AutonomousDevelopmentPlatform", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01-preview", + "2022-03-01-preview", + "2022-02-01-privatepreview", + "2021-11-01-preview", + "2021-02-01-preview", + "2020-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01-preview", + "2022-03-01-preview", + "2022-02-01-privatepreview", + "2021-11-01-preview", + "2021-02-01-preview", + "2020-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01-preview", + "2022-03-01-preview", + "2022-02-01-privatepreview", + "2021-11-01-preview", + "2021-02-01-preview", + "2020-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US EUAP", + "East US 2 EUAP", + "North Europe", + "South Central US", + "West Central US", + "West Europe", + "West US 3" + ], + "properties": null, + "resourceType": "locations/operationstatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01-preview", + "2022-03-01-preview", + "2022-02-01-privatepreview", + "2021-11-01-preview", + "2021-02-01-preview", + "2020-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checknameavailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-02-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Europe", + "North Europe", + "West Central US", + "West US 3" + ], + "properties": null, + "resourceType": "workspaces/eventgridfilters", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "a967240f-810b-4f79-85e5-25870cc69cbb", + "managedByRoleDefinitionId": "6ee14824-e3a8-4536-ad65-346e3406f3c4", + "roleDefinitionId": "47b23f55-5e18-4fc7-a69a-f9b79a9811ea" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.AutonomousSystems", + "namespace": "Microsoft.AutonomousSystems", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-05-01-preview" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-05-01-preview", + "locationMappings": null, + "locations": [ + "West US", + "West US 2" + ], + "properties": null, + "resourceType": "workspaces", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2020-05-01-preview", + "locationMappings": null, + "locations": [ + "West US", + "West US 2" + ], + "properties": null, + "resourceType": "workspaces/validateCreateRequest", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2020-05-01-preview", + "locationMappings": null, + "locations": [ + "West US", + "West US 2" + ], + "properties": null, + "resourceType": "workspaces/operationresults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2020-05-01-preview", + "locationMappings": null, + "locations": [ + "West US", + "West US 2" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "allowedThirdPartyExtensions": [ + { + "name": "VMCP" + } + ], + "applicationId": "608f9929-9737-432e-860f-4e1c1821052f", + "roleDefinitionId": "a12e1b40-7eca-4c51-be1d-d8bc564dcfdd" + }, + { + "applicationId": "1a5e141d-70dd-4594-8442-9fc46fa48686", + "roleDefinitionId": "be0455f9-f9c2-4c2a-8fb6-f4dd811485d8" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.AVS", + "namespace": "Microsoft.AVS", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-05-01", + "2021-12-01", + "2021-06-01", + "2020-03-20" + ], + "capabilities": "None", + "defaultApiVersion": "2022-05-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-05-01", + "2021-12-01", + "2021-06-01", + "2020-03-20" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-05-01", + "2021-12-01", + "2021-06-01", + "2020-03-20" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "Germany West Central", + "France Central", + "Sweden Central", + "Switzerland North", + "Qatar Central", + "West Central US", + "North Central US", + "West US", + "West US 2", + "West Europe", + "Australia East", + "South Central US", + "Japan East", + "Japan West", + "South Africa North", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia", + "UK West", + "East US 2", + "Central US", + "Australia Southeast", + "Canada East", + "East Asia", + "West US 3", + "Switzerland West", + "Brazil South" + ], + "properties": null, + "resourceType": "locations/checkTrialAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-05-01", + "2021-12-01", + "2021-06-01", + "2020-03-20" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "Germany West Central", + "France Central", + "Sweden Central", + "Switzerland North", + "Qatar Central", + "West Central US", + "North Central US", + "West US", + "West US 2", + "West Europe", + "Australia East", + "South Central US", + "Japan East", + "Japan West", + "South Africa North", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia", + "UK West", + "East US 2", + "Central US", + "Australia Southeast", + "Canada East", + "East Asia", + "West US 3", + "Switzerland West", + "Brazil South" + ], + "properties": null, + "resourceType": "locations/checkQuotaAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-05-01", + "2021-12-01", + "2021-06-01", + "2021-01-01-preview", + "2020-07-17-preview", + "2020-03-20" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "Germany West Central", + "France Central", + "Sweden Central", + "Switzerland North", + "Qatar Central", + "West Central US", + "North Central US", + "West US", + "West US 2", + "West Europe", + "Australia East", + "South Central US", + "Japan East", + "Japan West", + "South Africa North", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia", + "UK West", + "East US 2", + "Central US", + "Australia Southeast", + "Canada East", + "East Asia", + "West US 3", + "Switzerland West", + "Brazil South" + ], + "properties": null, + "resourceType": "privateClouds", + "zoneMappings": [ + { + "location": "Australia East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East Asia", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Qatar Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "South Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Sweden Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Switzerland North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 3", + "zones": [ + "1", + "2", + "3" + ] + } + ] + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-05-01", + "2021-12-01", + "2021-06-01", + "2021-01-01-preview", + "2020-03-20" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "Germany West Central", + "France Central", + "Sweden Central", + "Switzerland North", + "Qatar Central", + "West Central US", + "North Central US", + "West US", + "West US 2", + "West Europe", + "Australia East", + "South Central US", + "Japan East", + "Japan West", + "South Africa North", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia", + "UK West", + "East US 2", + "Central US", + "Australia Southeast", + "Canada East", + "East Asia", + "West US 3", + "Switzerland West", + "Brazil South" + ], + "properties": null, + "resourceType": "privateClouds/clusters", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-05-01", + "2021-12-01", + "2021-06-01", + "2020-03-20" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "Germany West Central", + "France Central", + "Sweden Central", + "Switzerland North", + "Qatar Central", + "West Central US", + "North Central US", + "West US", + "West US 2", + "West Europe", + "Australia East", + "South Central US", + "Japan East", + "Japan West", + "South Africa North", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia", + "UK West", + "East US 2", + "Central US", + "Australia Southeast", + "Canada East", + "East Asia", + "West US 3", + "Switzerland West", + "Brazil South" + ], + "properties": null, + "resourceType": "privateClouds/authorizations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-05-01", + "2021-12-01", + "2021-06-01", + "2020-03-20" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "Germany West Central", + "France Central", + "Sweden Central", + "Switzerland North", + "Qatar Central", + "West Central US", + "North Central US", + "West US", + "West US 2", + "West Europe", + "Australia East", + "South Central US", + "Japan East", + "Japan West", + "South Africa North", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia", + "UK West", + "East US 2", + "Central US", + "Australia Southeast", + "Canada East", + "East Asia", + "West US 3", + "Switzerland West", + "Brazil South" + ], + "properties": null, + "resourceType": "privateClouds/hcxEnterpriseSites", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-05-01", + "2021-12-01", + "2021-06-01", + "2020-07-17-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "Germany West Central", + "France Central", + "Sweden Central", + "Switzerland North", + "Qatar Central", + "West Central US", + "North Central US", + "West US", + "West US 2", + "West Europe", + "Australia East", + "South Central US", + "Japan East", + "Japan West", + "South Africa North", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia", + "UK West", + "East US 2", + "Central US", + "Australia Southeast", + "Canada East", + "East Asia", + "West US 3", + "Switzerland West", + "Brazil South" + ], + "properties": null, + "resourceType": "privateClouds/globalReachConnections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-05-01", + "2021-12-01", + "2021-06-01", + "2020-07-17-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "Germany West Central", + "France Central", + "Sweden Central", + "Switzerland North", + "Qatar Central", + "West Central US", + "North Central US", + "West US", + "West US 2", + "West Europe", + "Australia East", + "South Central US", + "Japan East", + "Japan West", + "South Africa North", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia", + "UK West", + "East US 2", + "Central US", + "Australia Southeast", + "Canada East", + "East Asia", + "West US 3", + "Switzerland West", + "Brazil South" + ], + "properties": null, + "resourceType": "privateClouds/addons", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-05-01", + "2021-12-01", + "2021-06-01", + "2020-07-17-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "Germany West Central", + "France Central", + "Sweden Central", + "Switzerland North", + "Qatar Central", + "West Central US", + "North Central US", + "West US", + "West US 2", + "West Europe", + "Australia East", + "South Central US", + "Japan East", + "Japan West", + "South Africa North", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia", + "UK West", + "East US 2", + "Central US", + "Australia Southeast", + "Canada East", + "East Asia", + "West US 3", + "Switzerland West", + "Brazil South" + ], + "properties": null, + "resourceType": "privateClouds/workloadNetworks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-05-01", + "2021-12-01", + "2021-06-01", + "2020-07-17-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "Germany West Central", + "France Central", + "Sweden Central", + "Switzerland North", + "Qatar Central", + "West Central US", + "North Central US", + "West US", + "West US 2", + "West Europe", + "Australia East", + "South Central US", + "Japan East", + "Japan West", + "South Africa North", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia", + "UK West", + "East US 2", + "Central US", + "Australia Southeast", + "Canada East", + "East Asia", + "West US 3", + "Switzerland West", + "Brazil South" + ], + "properties": null, + "resourceType": "privateClouds/workloadNetworks/dhcpConfigurations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-05-01", + "2021-12-01", + "2021-06-01", + "2020-07-17-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "Germany West Central", + "France Central", + "Sweden Central", + "Switzerland North", + "Qatar Central", + "West Central US", + "North Central US", + "West US", + "West US 2", + "West Europe", + "Australia East", + "South Central US", + "Japan East", + "Japan West", + "South Africa North", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia", + "UK West", + "East US 2", + "Central US", + "Australia Southeast", + "Canada East", + "East Asia", + "West US 3", + "Switzerland West", + "Brazil South" + ], + "properties": null, + "resourceType": "privateClouds/workloadNetworks/portMirroringProfiles", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-05-01", + "2021-12-01", + "2021-06-01", + "2020-07-17-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "Germany West Central", + "France Central", + "Sweden Central", + "Switzerland North", + "Qatar Central", + "West Central US", + "North Central US", + "West US", + "West US 2", + "West Europe", + "Australia East", + "South Central US", + "Japan East", + "Japan West", + "South Africa North", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia", + "UK West", + "East US 2", + "Central US", + "Australia Southeast", + "Canada East", + "East Asia", + "West US 3", + "Switzerland West", + "Brazil South" + ], + "properties": null, + "resourceType": "privateClouds/workloadNetworks/segments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-05-01", + "2021-12-01", + "2021-06-01", + "2020-07-17-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "Germany West Central", + "France Central", + "Sweden Central", + "Switzerland North", + "Qatar Central", + "West Central US", + "North Central US", + "West US", + "West US 2", + "West Europe", + "Australia East", + "South Central US", + "Japan East", + "Japan West", + "South Africa North", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia", + "UK West", + "East US 2", + "Central US", + "Australia Southeast", + "Canada East", + "East Asia", + "West US 3", + "Switzerland West", + "Brazil South" + ], + "properties": null, + "resourceType": "privateClouds/workloadNetworks/vmGroups", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-05-01", + "2021-12-01", + "2021-06-01", + "2020-07-17-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "Germany West Central", + "France Central", + "Sweden Central", + "Switzerland North", + "Qatar Central", + "West Central US", + "North Central US", + "West US", + "West US 2", + "West Europe", + "Australia East", + "South Central US", + "Japan East", + "Japan West", + "South Africa North", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia", + "UK West", + "East US 2", + "Central US", + "Australia Southeast", + "Canada East", + "East Asia", + "West US 3", + "Switzerland West", + "Brazil South" + ], + "properties": null, + "resourceType": "privateClouds/workloadNetworks/gateways", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-05-01", + "2021-12-01", + "2021-06-01", + "2020-07-17-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "Germany West Central", + "France Central", + "Sweden Central", + "Switzerland North", + "Qatar Central", + "West Central US", + "North Central US", + "West US", + "West US 2", + "West Europe", + "Australia East", + "South Central US", + "Japan East", + "Japan West", + "South Africa North", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia", + "UK West", + "East US 2", + "Central US", + "Australia Southeast", + "Canada East", + "East Asia", + "West US 3", + "Switzerland West", + "Brazil South" + ], + "properties": null, + "resourceType": "privateClouds/workloadNetworks/virtualMachines", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-05-01", + "2021-12-01", + "2021-06-01", + "2020-07-17-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "Germany West Central", + "France Central", + "Sweden Central", + "Switzerland North", + "Qatar Central", + "West Central US", + "North Central US", + "West US", + "West US 2", + "West Europe", + "Australia East", + "South Central US", + "Japan East", + "Japan West", + "South Africa North", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia", + "UK West", + "East US 2", + "Central US", + "Australia Southeast", + "Canada East", + "East Asia", + "West US 3", + "Switzerland West", + "Brazil South" + ], + "properties": null, + "resourceType": "privateClouds/workloadNetworks/dnsServices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-05-01", + "2021-12-01", + "2021-06-01", + "2020-07-17-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "Germany West Central", + "France Central", + "Sweden Central", + "Switzerland North", + "Qatar Central", + "West Central US", + "North Central US", + "West US", + "West US 2", + "West Europe", + "Australia East", + "South Central US", + "Japan East", + "Japan West", + "South Africa North", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia", + "UK West", + "East US 2", + "Central US", + "Australia Southeast", + "Canada East", + "East Asia", + "West US 3", + "Switzerland West", + "Brazil South" + ], + "properties": null, + "resourceType": "privateClouds/workloadNetworks/dnsZones", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-05-01", + "2021-12-01", + "2021-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central US", + "East Asia", + "West US 3", + "Switzerland West", + "East US", + "East US 2", + "France Central", + "Sweden Central", + "Switzerland North", + "Qatar Central", + "Germany West Central", + "Japan East", + "Japan West", + "South Africa North", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West US", + "West US 2" + ], + "properties": null, + "resourceType": "privateClouds/workloadNetworks/publicIPs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-05-01", + "2021-12-01", + "2021-06-01", + "2021-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "Germany West Central", + "France Central", + "Sweden Central", + "Switzerland North", + "Qatar Central", + "West Central US", + "North Central US", + "West US", + "West US 2", + "West Europe", + "Australia East", + "South Central US", + "Japan East", + "Japan West", + "South Africa North", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia", + "UK West", + "East US 2", + "Central US", + "Australia Southeast", + "Canada East", + "East Asia", + "West US 3", + "Switzerland West", + "Brazil South" + ], + "properties": null, + "resourceType": "privateClouds/clusters/datastores", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-05-01", + "2021-12-01", + "2021-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "Germany West Central", + "France Central", + "Sweden Central", + "Switzerland North", + "Qatar Central", + "West Central US", + "North Central US", + "West US", + "West US 2", + "West Europe", + "Australia East", + "South Central US", + "Japan East", + "Japan West", + "South Africa North", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia", + "UK West", + "East US 2", + "Central US", + "Australia Southeast", + "Canada East", + "East Asia", + "West US 3", + "Switzerland West", + "Brazil South" + ], + "properties": null, + "resourceType": "privateClouds/cloudLinks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-09-01", + "locationMappings": null, + "locations": [ + "East US", + "Germany West Central", + "France Central", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "Qatar Central", + "West Central US", + "North Central US", + "West US", + "West US 2", + "West Europe", + "Australia East", + "South Central US", + "Japan East", + "Japan West", + "South Africa North", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia", + "UK West", + "East US 2", + "Central US", + "Australia Southeast", + "Canada East", + "East Asia", + "West US 3", + "Brazil South" + ], + "properties": null, + "resourceType": "privateClouds/eventGridFilters", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-05-01", + "2021-12-01", + "2021-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "Germany West Central", + "France Central", + "Sweden Central", + "Switzerland North", + "Qatar Central", + "West Central US", + "North Central US", + "West US", + "West US 2", + "West Europe", + "Australia East", + "South Central US", + "Japan East", + "Japan West", + "South Africa North", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia", + "UK West", + "East US 2", + "Central US", + "Australia Southeast", + "Canada East", + "East Asia", + "West US 3", + "Switzerland West", + "Brazil South" + ], + "properties": null, + "resourceType": "privateClouds/scriptExecutions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-05-01", + "2021-12-01", + "2021-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "Germany West Central", + "France Central", + "Sweden Central", + "Switzerland North", + "Qatar Central", + "West Central US", + "North Central US", + "West US", + "West US 2", + "West Europe", + "Australia East", + "South Central US", + "Japan East", + "Japan West", + "South Africa North", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia", + "UK West", + "East US 2", + "Central US", + "Australia Southeast", + "Canada East", + "East Asia", + "West US 3", + "Switzerland West", + "Brazil South" + ], + "properties": null, + "resourceType": "privateClouds/scriptPackages", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-05-01", + "2021-12-01", + "2021-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "Germany West Central", + "France Central", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "Qatar Central", + "West Central US", + "North Central US", + "West US", + "West US 2", + "West Europe", + "Australia East", + "South Central US", + "Japan East", + "Japan West", + "South Africa North", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia", + "UK West", + "East US 2", + "Central US", + "Australia Southeast", + "Canada East", + "East Asia", + "West US 3", + "Brazil South" + ], + "properties": null, + "resourceType": "privateClouds/scriptPackages/scriptCmdlets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-05-01", + "2021-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central US", + "East Asia", + "West US 3", + "Switzerland West", + "East US", + "East US 2", + "France Central", + "Sweden Central", + "Switzerland North", + "Qatar Central", + "Germany West Central", + "Japan East", + "Japan West", + "South Africa North", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West US", + "West US 2" + ], + "properties": null, + "resourceType": "privateClouds/clusters/placementPolicies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-05-01", + "2021-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central US", + "East Asia", + "West US 3", + "Switzerland West", + "East US", + "East US 2", + "France Central", + "Sweden Central", + "Switzerland North", + "Qatar Central", + "Germany West Central", + "Japan East", + "Japan West", + "South Africa North", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West US", + "West US 2" + ], + "properties": null, + "resourceType": "privateClouds/clusters/virtualMachines", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "e18cedde-9458-482f-9dd1-558c597ac42e", + "roleDefinitionId": "9c152674-d3fb-4ab5-9dfa-5f14c31f6e69" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.AwsConnector", + "namespace": "Microsoft.AwsConnector", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Operations", + "zoneMappings": null + } + ] + }, + { + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.AzureActiveDirectory", + "namespace": "Microsoft.AzureActiveDirectory", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-18-preview", + "2022-03-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-03-01-preview", + "locationMappings": null, + "locations": [ + "Global", + "United States", + "Europe", + "Asia Pacific", + "Australia", + "Japan" + ], + "properties": null, + "resourceType": "ciamDirectories", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-18-preview", + "2022-03-01-preview", + "2021-04-01-preview", + "2021-04-01", + "2020-05-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-05-01-preview", + "locationMappings": null, + "locations": [ + "Global", + "United States", + "Europe", + "Asia Pacific", + "Australia", + "Japan" + ], + "properties": null, + "resourceType": "guestUsages", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-18-preview", + "2022-03-01-preview", + "2021-04-01-preview", + "2021-04-01", + "2020-05-01-preview", + "2019-01-01-privatepreview", + "2019-01-01-preview", + "2017-01-30", + "2016-12-13-preview", + "2016-02-10-privatepreview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2017-01-30", + "locationMappings": null, + "locations": [ + "Global", + "United States", + "Europe", + "Asia Pacific", + "Australia", + "Japan" + ], + "properties": null, + "resourceType": "b2cDirectories", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-18-preview", + "2022-03-01-preview", + "2021-04-01-preview", + "2021-04-01", + "2020-05-01-preview", + "2019-01-01-privatepreview", + "2019-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Global", + "United States", + "Europe", + "Asia Pacific", + "Australia", + "Japan" + ], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-18-preview", + "2022-03-01-preview", + "2021-04-01-preview", + "2021-04-01", + "2020-05-01-preview", + "2019-01-01-privatepreview", + "2019-01-01-preview", + "2017-01-30", + "2016-12-13-preview", + "2016-02-10-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": "2017-01-30", + "locationMappings": null, + "locations": [ + "Global", + "United States", + "Europe", + "Asia Pacific", + "Australia", + "Japan" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-18-preview", + "2022-03-01-preview", + "2021-04-01-preview", + "2021-04-01", + "2020-05-01-preview", + "2016-02-10-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Global", + "United States", + "Europe", + "Asia Pacific", + "Australia", + "Japan" + ], + "properties": null, + "resourceType": "b2ctenants", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "319f651f-7ddb-4fc6-9857-7aef9250bd05", + "roleDefinitionId": "2e103dbb-6933-4a8b-a358-17ee9ff00b9e" + }, + { + "applicationId": "bb55177b-a7d9-4939-a257-8ab53a3b2bc6", + "roleDefinitionId": "2e103dbb-6933-4a8b-a358-17ee9ff00b9e" + }, + { + "applicationId": "a12e8ccb-0fcd-46f8-b6a1-b9df7a9d7231", + "roleDefinitionId": "2e103dbb-6933-4a8b-a358-17ee9ff00b9e" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.AzureArcData", + "namespace": "Microsoft.AzureArcData", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2023-05-16-preview", + "2023-01-15-preview", + "2022-06-15-preview", + "2022-03-01-preview", + "2021-11-01", + "2021-08-01", + "2021-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2023-05-16-preview", + "2023-01-15-preview", + "2022-06-15-preview", + "2022-03-01-preview", + "2021-11-01", + "2021-08-01", + "2021-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Japan East", + "Australia East", + "Korea Central", + "UK South", + "France Central", + "East US 2", + "Central US", + "Central US EUAP", + "West US 2", + "East Asia", + "East US", + "East US 2 EUAP", + "North Europe", + "Southeast Asia", + "West Europe", + "West US", + "West US 3", + "South Central US", + "North Central US", + "Canada Central", + "West Central US", + "Central India", + "Switzerland North", + "Canada East", + "Brazil South", + "South Africa North", + "UAE North" + ], + "properties": null, + "resourceType": "Locations/OperationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-15-preview", + "2022-06-15-preview", + "2022-03-01-preview", + "2021-11-01", + "2021-08-01", + "2021-07-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-01-15-preview", + "locationMappings": null, + "locations": [ + "Japan East", + "Australia East", + "Korea Central", + "UK South", + "Canada Central", + "France Central", + "East US 2", + "East US", + "Central US", + "West US 2", + "North Europe", + "West US 3", + "South Central US", + "North Central US", + "West US", + "Southeast Asia", + "West Europe", + "West Central US", + "Central India", + "Switzerland North", + "Canada East", + "Brazil South", + "South Africa North", + "UAE North" + ], + "properties": null, + "resourceType": "DataControllers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-15-preview", + "2022-06-15-preview", + "2022-03-01-preview", + "2021-11-01", + "2021-08-01", + "2021-07-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-01-15-preview", + "locationMappings": null, + "locations": [ + "Australia East", + "UK South", + "Canada Central", + "France Central", + "East US 2", + "West US 2", + "East US", + "Southeast Asia", + "West Europe", + "North Europe", + "West US 3", + "South Central US", + "North Central US", + "West US", + "Japan East", + "Korea Central", + "Central US", + "West Central US", + "Central India", + "Switzerland North", + "Canada East", + "Brazil South", + "South Africa North", + "UAE North" + ], + "properties": null, + "resourceType": "SqlManagedInstances", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-15-preview", + "2022-06-15-preview", + "2022-03-01-preview", + "2021-07-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-01-15-preview", + "locationMappings": null, + "locations": [ + "Australia East", + "UK South", + "Canada Central", + "France Central", + "East US 2", + "West US 2", + "East US", + "Southeast Asia", + "West Europe", + "North Europe", + "West US 3", + "South Central US", + "North Central US", + "West US", + "Japan East", + "Korea Central", + "Central US", + "West Central US", + "Central India", + "Switzerland North", + "Canada East", + "South Africa North", + "UAE North", + "Brazil South" + ], + "properties": null, + "resourceType": "PostgresInstances", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2023-05-16-preview", + "2023-01-15-preview", + "2022-06-15-preview", + "2022-03-01-preview", + "2021-11-01", + "2021-08-01", + "2021-07-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-01-15-preview", + "locationMappings": null, + "locations": [ + "Australia East", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East US", + "East US 2", + "France Central", + "Japan East", + "Korea Central", + "North Central US", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "West Central US", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "SqlServerInstances", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2023-05-16-preview", + "2023-01-15-preview", + "2022-06-15-preview", + "2022-03-01-preview", + "2021-11-01", + "2021-08-01", + "2021-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-15-preview", + "2022-06-15-preview", + "2022-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-01-15-preview", + "locationMappings": null, + "locations": [ + "Japan East", + "Australia East", + "Korea Central", + "UK South", + "Canada Central", + "France Central", + "East US 2", + "East US", + "Central US", + "West US 2", + "North Europe", + "West US 3", + "South Central US", + "North Central US", + "West US", + "Southeast Asia", + "West Europe", + "West Central US", + "Central India", + "Switzerland North", + "Canada East", + "Brazil South", + "South Africa North", + "UAE North" + ], + "properties": null, + "resourceType": "DataControllers/ActiveDirectoryConnectors", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2023-05-16-preview", + "2023-01-15-preview", + "2022-06-15-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-01-15-preview", + "locationMappings": null, + "locations": [ + "Australia East", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East US", + "East US 2", + "France Central", + "Japan East", + "Korea Central", + "North Central US", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "West Central US", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "SqlServerInstances/Databases", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-01-15-preview", + "locationMappings": null, + "locations": [ + "Australia East", + "UK South", + "Canada Central", + "France Central", + "East US 2", + "West US 2", + "East US", + "Southeast Asia", + "West Europe", + "North Europe", + "West US 3", + "South Central US", + "North Central US", + "West US", + "Japan East", + "Korea Central", + "Central US", + "West Central US", + "Central India", + "Switzerland North", + "Canada East", + "Brazil South", + "South Africa North", + "UAE North" + ], + "properties": null, + "resourceType": "SqlManagedInstances/FailoverGroups", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2023-05-16-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-05-16-preview", + "locationMappings": null, + "locations": [ + "Australia East", + "UK South", + "Canada Central", + "East US 2", + "Central US", + "West US 2", + "East US", + "North Europe", + "West US 3", + "South Central US", + "North Central US", + "West US", + "Southeast Asia", + "West Europe", + "Japan East", + "Korea Central", + "France Central", + "West Central US", + "Central India", + "Switzerland North", + "Canada East", + "Brazil South", + "South Africa North", + "UAE North" + ], + "properties": null, + "resourceType": "SqlServerInstances/AvailabilityGroups", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "a48bbb4a-8f73-478e-b492-5e1f05694d54", + "roleDefinitionId": "61454514-fba0-4f00-8820-a812288aa784" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.AzureCIS", + "namespace": "Microsoft.AzureCIS", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-08-10-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "autopilotEnvironments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-08-10-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-08-10-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2" + ], + "properties": null, + "resourceType": "Locations/OperationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-08-10-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "dstsServiceAccounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-08-10-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "dstsServiceClientIdentities", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-08-22-privatepreview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "plannedQuotas", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-08-10-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "dsmsAllowlists", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-08-10-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "dsmsRootFolders", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-08-10-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "dstsApplications", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "5be973a1-1c81-4878-9ab6-6b261ab404e6", + "roleDefinitionId": "2f697802-91d3-49b6-8fb4-926d006b9eb3" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.AzurePercept", + "namespace": "Microsoft.AzurePercept", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-04-01-preview", + "2021-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-04-01-preview", + "2021-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "5882560c-fcff-49a8-9b02-8a3e08428404", + "roleDefinitionId": "f5e38bf7-4249-4cc6-8e85-d1380d3e55f7" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.AzurePlaywrightService", + "namespace": "Microsoft.AzurePlaywrightService", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-10-01-preview", + "2023-06-01-preview", + "2022-04-05-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-10-01-preview", + "2023-06-01-preview", + "2022-04-05-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-10-01-preview", + "2023-06-01-preview", + "2022-04-05-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-10-01-preview", + "2023-06-01-preview", + "2022-04-05-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West US 3", + "East Asia" + ], + "properties": null, + "resourceType": "Locations/OperationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-10-01-preview", + "2023-06-01-preview", + "2022-04-05-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West US 3", + "West Europe", + "East Asia" + ], + "properties": null, + "resourceType": "accounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-10-01-preview", + "2023-06-01-preview", + "2022-04-05-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "registeredSubscriptions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-10-01-preview", + "2023-06-01-preview", + "2022-04-05-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West US 3", + "West Europe", + "East Asia" + ], + "properties": null, + "resourceType": "Locations/Quotas", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "bc6a0eea-9658-4fc2-bba8-145234e32d61", + "roleDefinitionId": "b206e309-beb5-4ad5-81f1-57ea12a21583" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.AzureScan", + "namespace": "Microsoft.AzureScan", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-05-17-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Europe", + "West Europe", + "East US", + "West US" + ], + "properties": null, + "resourceType": "scanningAccounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-05-17-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-05-17-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US EUAP", + "North Europe", + "West Europe", + "East US", + "West US" + ], + "properties": null, + "resourceType": "locations/OperationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-05-17-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-05-17-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "e7d5afaf-5e93-4aad-b546-878812ff572c", + "roleDefinitionId": "0bf1834f-602f-4692-b93c-814d655198fd" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.AzureSphere", + "namespace": "Microsoft.AzureSphere", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "catalogs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "catalogs/products", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "catalogs/products/devicegroups", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "catalogs/certificates", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "catalogs/images", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "East US 2", + "West US", + "West US 2" + ], + "properties": null, + "resourceType": "locations/operationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "catalogs/products/devicegroups/devices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "catalogs/products/devicegroups/deployments", + "zoneMappings": null + } + ] + }, + { + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.AzureStack", + "namespace": "Microsoft.AzureStack", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-06-01", + "2017-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Global" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-06-01", + "2020-06-01-preview", + "2017-06-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Global" + ], + "properties": null, + "resourceType": "registrations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-06-01", + "2017-06-01", + "2016-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Global" + ], + "properties": null, + "resourceType": "registrations/products", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-06-01", + "2017-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Global" + ], + "properties": null, + "resourceType": "registrations/customerSubscriptions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-06-01", + "2017-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Global" + ], + "properties": null, + "resourceType": "cloudManifestFiles", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-06-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Southeast Asia" + ], + "properties": null, + "resourceType": "linkedSubscriptions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Global" + ], + "properties": null, + "resourceType": "generateDeploymentLicense", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "1412d89f-b8a8-4111-b4fd-e82905cbd85d", + "managedByRoleDefinitionId": "5ece1ad5-ab30-4099-b16c-3aa7c8f5acb9", + "roleDefinitionId": "90ffa33f-4875-44d8-b86f-d41c3aa6050e" + }, + { + "applicationId": "1322e676-dee7-41ee-a874-ac923822781c", + "roleDefinitionId": "e91a9804-9f4d-4501-bf85-03bd4ea78451" + }, + { + "applicationId": "319f651f-7ddb-4fc6-9857-7aef9250bd05", + "roleDefinitionId": "12580382-2aec-4b61-ae1c-ecbdb4a0a25f" + }, + { + "applicationId": "9ddb5749-5660-445d-b859-394225a7d97d", + "roleDefinitionId": "25835680-8055-476b-862e-305b54cd43ec" + }, + { + "applicationId": "d2a590e7-6906-4a45-8f41-cecfdca9bca1", + "roleDefinitionId": "25835680-8055-476b-862e-305b54cd43ec" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.AzureStackHCI", + "namespace": "Microsoft.AzureStackHCI", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01-preview", + "2023-06-01", + "2023-03-01", + "2023-02-01", + "2022-12-15-preview", + "2022-12-01", + "2022-10-01", + "2022-09-01", + "2022-08-01-preview", + "2022-05-01", + "2022-03-01", + "2022-01-01", + "2021-09-01-preview", + "2021-09-01", + "2021-07-01-preview", + "2021-01-01-preview", + "2020-11-01-preview", + "2020-10-01", + "2020-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01-preview", + "2023-06-01", + "2023-03-01", + "2023-02-01", + "2022-12-15-preview", + "2022-12-01", + "2022-10-01", + "2022-09-01", + "2022-08-01-preview", + "2022-05-01", + "2022-03-01", + "2022-01-01", + "2021-09-01-preview", + "2021-09-01", + "2021-07-01-preview", + "2021-01-01-preview", + "2020-11-01-preview", + "2020-10-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01-preview", + "2023-06-01", + "2023-03-01", + "2023-02-01", + "2022-12-15-preview", + "2022-12-01", + "2022-11-01-preview", + "2022-10-01", + "2022-09-01", + "2022-08-01-preview", + "2022-05-01", + "2022-03-01", + "2022-01-01", + "2021-09-01-preview", + "2021-09-01", + "2021-07-01-preview", + "2021-01-01-preview", + "2020-10-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2 EUAP", + "West Europe", + "Southeast Asia", + "Central US EUAP", + "Central US", + "Japan East", + "North Europe", + "Australia East", + "East US 2", + "South Central US", + "Canada Central", + "Central India", + "West US 2" + ], + "properties": null, + "resourceType": "locations/operationstatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2022-12-15-preview", + "2021-09-01-preview", + "2021-07-01-preview", + "2020-11-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Southeast Asia" + ], + "properties": null, + "resourceType": "galleryImages", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2022-12-15-preview", + "2021-09-01-preview", + "2021-07-01-preview", + "2020-11-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Southeast Asia" + ], + "properties": null, + "resourceType": "networkInterfaces", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-12-15-preview", + "2021-09-01-preview", + "2021-07-01-preview", + "2020-11-01-preview" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Southeast Asia" + ], + "properties": null, + "resourceType": "virtualMachines", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2022-12-15-preview", + "2021-09-01-preview", + "2021-07-01-preview", + "2020-11-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Southeast Asia" + ], + "properties": null, + "resourceType": "virtualNetworks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2022-12-15-preview", + "2021-09-01-preview", + "2021-07-01-preview", + "2020-11-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Southeast Asia" + ], + "properties": null, + "resourceType": "virtualHardDisks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-03-01", + "2023-02-01", + "2022-12-01", + "2022-10-01", + "2022-09-01", + "2022-05-01", + "2022-03-01", + "2022-01-01", + "2021-09-01", + "2021-01-01-preview", + "2020-10-01" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "South Central US", + "East US", + "West Europe", + "Southeast Asia", + "Canada Central", + "Japan East", + "Central India" + ], + "properties": null, + "resourceType": "clusters", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-03-01", + "2023-02-01", + "2022-12-01", + "2022-10-01", + "2022-09-01", + "2022-05-01", + "2022-03-01", + "2022-01-01", + "2021-09-01", + "2021-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "South Central US", + "East US", + "West Europe", + "Southeast Asia", + "Canada Central", + "Japan East", + "Central India" + ], + "properties": null, + "resourceType": "clusters/arcSettings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-03-01", + "2023-02-01", + "2022-12-01", + "2022-10-01", + "2022-09-01", + "2022-05-01", + "2022-03-01", + "2022-01-01", + "2021-09-01", + "2021-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "South Central US", + "East US", + "West Europe", + "Southeast Asia", + "Canada Central", + "Japan East", + "Central India" + ], + "properties": null, + "resourceType": "clusters/arcSettings/extensions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-12-15-preview", + "2021-09-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Southeast Asia" + ], + "properties": null, + "resourceType": "virtualMachines/extensions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-12-15-preview", + "2021-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Southeast Asia" + ], + "properties": null, + "resourceType": "virtualMachines/hybrididentitymetadata", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "East US", + "West Europe", + "Southeast Asia", + "Canada Central", + "South Central US", + "Japan East", + "Central India" + ], + "properties": null, + "resourceType": "clusters/publishers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "East US", + "West Europe", + "Southeast Asia", + "Canada Central", + "South Central US", + "Japan East", + "Central India" + ], + "properties": null, + "resourceType": "clusters/offers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "East US", + "West Europe", + "Southeast Asia", + "Canada Central", + "South Central US", + "Japan East", + "Central India" + ], + "properties": null, + "resourceType": "clusters/publishers/offers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "East US", + "West Europe", + "Southeast Asia", + "Canada Central", + "South Central US", + "Japan East", + "Central India" + ], + "properties": null, + "resourceType": "clusters/publishers/offers/skus", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2022-12-15-preview", + "2021-09-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Southeast Asia" + ], + "properties": null, + "resourceType": "marketplaceGalleryImages", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2022-12-15-preview", + "2021-09-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Southeast Asia" + ], + "properties": null, + "resourceType": "storageContainers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-03-01", + "2023-02-01", + "2022-12-15-preview", + "2022-12-01", + "2022-10-01", + "2022-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "South Central US", + "East US", + "West Europe", + "Southeast Asia", + "Canada Central", + "Japan East", + "Central India" + ], + "properties": null, + "resourceType": "clusters/updates", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-03-01", + "2023-02-01", + "2022-12-15-preview", + "2022-12-01", + "2022-10-01", + "2022-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "South Central US", + "East US", + "West Europe", + "Southeast Asia", + "Canada Central", + "Japan East", + "Central India" + ], + "properties": null, + "resourceType": "clusters/updates/updateRuns", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-03-01", + "2023-02-01", + "2022-12-15-preview", + "2022-12-01", + "2022-10-01", + "2022-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "South Central US", + "East US", + "West Europe", + "Southeast Asia", + "Canada Central", + "Japan East", + "Central India" + ], + "properties": null, + "resourceType": "clusters/updateSummaries", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01", + "2023-03-01", + "2023-02-01", + "2022-12-01", + "2022-10-01", + "2022-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "registeredSubscriptions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Southeast Asia" + ], + "properties": null, + "resourceType": "virtualMachineInstances", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "ba4bc2bd-843f-4d61-9d33-199178eae34e", + "managedByAuthorization": { + "managedByResourceRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635" + }, + "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635", + "roleDefinitionId": "1da601d6-871c-4f4b-b117-55f6904119f7" + }, + { + "applicationId": "e90af282-4971-41d9-ab82-1b294e911ae5", + "roleDefinitionId": "7af42c56-6191-40f4-a916-477c82c62206" + }, + { + "applicationId": "f77c2a8f-8a0a-4776-8e0a-bcb2549610ca", + "managedByAuthorization": { + "additionalAuthorizations": [ + { + "applicationId": "e90af282-4971-41d9-ab82-1b294e911ae5", + "roleDefinitionId": "1e86f807-6ec0-40b3-8b5f-686b7e43a0a2" + } + ] + }, + "managedByRoleDefinitionId": "1e86f807-6ec0-40b3-8b5f-686b7e43a0a2", + "roleDefinitionId": "8010f77f-bee6-484b-bce2-444be3761632" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.BackupSolutions", + "namespace": "Microsoft.BackupSolutions", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-08-01-preview" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "East US", + "West Europe" + ], + "properties": null, + "resourceType": "VMwareApplications", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-08-01-preview", + "2022-04-01-preview", + "2021-07-01", + "2020-08-21-preview", + "2019-07-01", + "2018-09-01-preview", + "2018-06-01", + "2018-03-01", + "2018-02-01", + "2017-12-01", + "2017-09-01", + "2016-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "East US", + "West Europe" + ], + "properties": null, + "resourceType": "locations/operationstatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-08-21-preview", + "2019-07-01", + "2018-09-01-preview", + "2018-06-01", + "2018-03-01", + "2018-02-01", + "2017-12-01", + "2017-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorization": { + "applicationId": "cc5476ec-3074-44d1-8461-711f5d9b0e39", + "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635", + "roleDefinitionId": "4a10987e-dbcf-4c3d-8e3d-7ddcd9c771c2" + }, + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.BareMetalInfrastructure", + "namespace": "Microsoft.BareMetalInfrastructure", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-06", + "2021-08-09", + "2020-08-06-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Germany West Central", + "West US", + "West US 2", + "East US", + "East US 2", + "South Central US", + "West Europe", + "North Europe", + "Australia East", + "Australia Southeast" + ], + "properties": null, + "resourceType": "bareMetalInstances", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-06" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Germany West Central", + "West US", + "West US 2", + "East US", + "East US 2", + "South Central US", + "West Europe", + "North Europe", + "Australia East", + "Australia Southeast" + ], + "properties": null, + "resourceType": "bareMetalStorageInstances", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-06", + "2021-08-09", + "2020-08-06-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-08-06-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Germany West Central", + "West US", + "West US 2", + "East US", + "East US 2", + "South Central US", + "West Europe", + "North Europe", + "Australia East", + "Australia Southeast" + ], + "properties": null, + "resourceType": "locations/operationsStatus", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-06", + "2021-08-09", + "2020-08-06-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Germany West Central", + "West US", + "West US 2", + "East US", + "East US 2", + "South Central US", + "West Europe", + "North Europe", + "Australia East", + "Australia Southeast" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorization": { + "applicationId": "ddbf3205-c6bd-46ae-8127-60eb93363864", + "roleDefinitionId": "b7f84953-1d03-4eab-9ea4-45f065258ff8" + }, + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Batch", + "namespace": "Microsoft.Batch", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-09-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-05-01", + "2022-10-01", + "2022-06-01", + "2022-01-01", + "2021-06-01", + "2021-01-01", + "2020-09-01", + "2020-05-01", + "2020-03-01-preview", + "2020-03-01", + "2019-08-01", + "2019-04-01", + "2018-12-01", + "2017-09-01", + "2017-05-01", + "2017-01-01", + "2015-12-01", + "2015-09-01", + "2015-07-01", + "2014-05-01-privatepreview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "West Europe", + "East US", + "East US 2", + "West US", + "North Central US", + "Brazil South", + "North Europe", + "Central US", + "East Asia", + "Japan East", + "Australia Southeast", + "Japan West", + "Korea South", + "Korea Central", + "Southeast Asia", + "South Central US", + "Australia East", + "Jio India West", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "West Central US", + "West US 2", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Germany West Central", + "Switzerland North", + "Norway East", + "Brazil Southeast", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "batchAccounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-09-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-05-01", + "2022-10-01", + "2022-06-01", + "2022-01-01", + "2021-06-01", + "2021-01-01", + "2020-09-01", + "2020-05-01", + "2020-03-01-preview", + "2020-03-01", + "2019-08-01", + "2019-04-01", + "2018-12-01", + "2017-09-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "West Europe", + "East US", + "East US 2", + "West US", + "North Central US", + "Brazil South", + "North Europe", + "Central US", + "East Asia", + "Japan East", + "Australia Southeast", + "Japan West", + "Korea South", + "Korea Central", + "Southeast Asia", + "South Central US", + "Australia East", + "Jio India West", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "West Central US", + "West US 2", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Germany West Central", + "Switzerland North", + "Norway East", + "Brazil Southeast", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "batchAccounts/pools", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2022-10-01", + "2022-06-01", + "2022-01-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "West Europe", + "East US", + "East US 2", + "West US", + "North Central US", + "Brazil South", + "North Europe", + "Central US", + "East Asia", + "Japan East", + "Australia Southeast", + "Japan West", + "Korea South", + "Korea Central", + "Southeast Asia", + "South Central US", + "Australia East", + "Jio India West", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "West Central US", + "West US 2", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Germany West Central", + "Switzerland North", + "Norway East", + "Brazil Southeast", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "batchAccounts/detectors", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-09-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-05-01", + "2022-10-01", + "2022-06-01", + "2022-01-01", + "2021-06-01", + "2021-01-01", + "2020-09-01", + "2020-05-01", + "2020-03-01-preview", + "2020-03-01", + "2019-08-01", + "2019-04-01", + "2018-12-01", + "2017-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Europe", + "East US", + "East US 2", + "West US", + "North Central US", + "Brazil South", + "North Europe", + "Central US", + "East Asia", + "Japan East", + "Australia Southeast", + "Japan West", + "Korea South", + "Korea Central", + "Southeast Asia", + "South Central US", + "Australia East", + "Jio India West", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "West Central US", + "West US 2", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Germany West Central", + "Switzerland North", + "Norway East", + "Brazil Southeast", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "batchAccounts/certificates", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2022-10-01", + "2022-06-01", + "2022-01-01", + "2021-06-01", + "2021-01-01", + "2020-09-01", + "2020-05-01", + "2020-03-01-preview", + "2020-03-01", + "2019-08-01", + "2019-04-01", + "2018-12-01", + "2017-09-01", + "2017-05-01", + "2017-01-01", + "2015-12-01", + "2015-09-01", + "2015-07-01", + "2014-05-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Europe", + "East US", + "East US 2", + "West US", + "North Central US", + "Brazil South", + "North Europe", + "Central US", + "East Asia", + "Japan East", + "Australia Southeast", + "Japan West", + "Korea South", + "Korea Central", + "Southeast Asia", + "South Central US", + "Australia East", + "Jio India West", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "West Central US", + "West US 2", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Germany West Central", + "Switzerland North", + "Norway East", + "Brazil Southeast", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "batchAccounts/operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2022-10-01", + "2022-06-01", + "2022-01-01", + "2021-06-01", + "2021-01-01", + "2020-09-01", + "2020-05-01", + "2020-03-01-preview", + "2020-03-01", + "2019-08-01", + "2019-04-01", + "2018-12-01", + "2017-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Europe", + "East US", + "East US 2", + "West US", + "North Central US", + "Brazil South", + "North Europe", + "Central US", + "East Asia", + "Japan East", + "Australia Southeast", + "Japan West", + "Korea South", + "Korea Central", + "Southeast Asia", + "South Central US", + "Australia East", + "Jio India West", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "West Central US", + "West US 2", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Germany West Central", + "Switzerland North", + "Norway East", + "Brazil Southeast", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "batchAccounts/poolOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2022-10-01", + "2022-06-01", + "2022-01-01", + "2021-06-01", + "2021-01-01", + "2020-09-01", + "2020-05-01", + "2020-03-01-preview", + "2020-03-01", + "2019-08-01", + "2019-04-01", + "2018-12-01", + "2017-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Europe", + "East US", + "East US 2", + "West US", + "North Central US", + "Brazil South", + "North Europe", + "Central US", + "East Asia", + "Japan East", + "Australia Southeast", + "Japan West", + "Korea South", + "Korea Central", + "Southeast Asia", + "South Central US", + "Australia East", + "Jio India West", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "West Central US", + "West US 2", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Germany West Central", + "Switzerland North", + "Norway East", + "Brazil Southeast", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "batchAccounts/certificateOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2022-10-01", + "2022-06-01", + "2022-01-01", + "2021-06-01", + "2021-01-01", + "2020-09-01", + "2020-05-01", + "2020-03-01-preview", + "2020-03-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Europe", + "East US", + "East US 2", + "West US", + "North Central US", + "Brazil South", + "North Europe", + "Central US", + "East Asia", + "Japan East", + "Australia Southeast", + "Japan West", + "Korea South", + "Korea Central", + "Southeast Asia", + "South Central US", + "Australia East", + "Jio India West", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "West Central US", + "West US 2", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Germany West Central", + "Switzerland North", + "Norway East", + "Brazil Southeast", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "batchAccounts/privateEndpointConnectionProxyResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2022-10-01", + "2022-06-01", + "2022-01-01", + "2021-06-01", + "2021-01-01", + "2020-09-01", + "2020-05-01", + "2020-03-01-preview", + "2020-03-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Europe", + "East US", + "East US 2", + "West US", + "North Central US", + "Brazil South", + "North Europe", + "Central US", + "East Asia", + "Japan East", + "Australia Southeast", + "Japan West", + "Korea South", + "Korea Central", + "Southeast Asia", + "South Central US", + "Australia East", + "Jio India West", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "West Central US", + "West US 2", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Germany West Central", + "Switzerland North", + "Norway East", + "Brazil Southeast", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "batchAccounts/privateEndpointConnectionResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-09-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-05-01", + "2022-10-01", + "2022-06-01", + "2022-01-01", + "2021-06-01", + "2021-01-01", + "2020-09-01", + "2020-05-01", + "2020-03-01-preview", + "2020-03-01", + "2019-08-01", + "2019-04-01", + "2018-12-01", + "2017-09-01", + "2017-05-01", + "2017-01-01", + "2015-12-01", + "2015-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Europe", + "East US", + "East US 2", + "West US", + "North Central US", + "Brazil South", + "North Europe", + "Central US", + "East Asia", + "Japan East", + "Australia Southeast", + "Japan West", + "Korea South", + "Korea Central", + "Southeast Asia", + "South Central US", + "Australia East", + "Jio India West", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "West Central US", + "West US 2", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Germany West Central", + "Switzerland North", + "Norway East", + "Brazil Southeast", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-09-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-05-01", + "2022-10-01", + "2022-06-01", + "2022-01-01", + "2021-06-01", + "2021-01-01", + "2020-09-01", + "2020-05-01", + "2020-03-01-preview", + "2020-03-01", + "2019-08-01", + "2019-04-01", + "2018-12-01", + "2017-09-01", + "2017-05-01", + "2017-01-01", + "2015-12-01", + "2015-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-09-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-05-01", + "2022-10-01", + "2022-06-01", + "2022-01-01", + "2021-06-01", + "2021-01-01", + "2020-09-01", + "2020-05-01", + "2020-03-01-preview", + "2020-03-01", + "2019-08-01", + "2019-04-01", + "2018-12-01", + "2017-09-01", + "2017-05-01", + "2017-01-01", + "2015-12-01", + "2015-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Europe", + "East US", + "East US 2", + "West US", + "North Central US", + "Brazil South", + "North Europe", + "Central US", + "East Asia", + "Japan East", + "Australia Southeast", + "Japan West", + "Korea South", + "Korea Central", + "Southeast Asia", + "South Central US", + "Australia East", + "Jio India West", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "West Central US", + "West US 2", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Germany West Central", + "Switzerland North", + "Norway East", + "Brazil Southeast", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "locations/quotas", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-09-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-05-01", + "2022-10-01", + "2022-06-01", + "2022-01-01", + "2021-06-01", + "2021-01-01", + "2020-09-01", + "2020-05-01", + "2020-03-01-preview", + "2020-03-01", + "2019-08-01", + "2019-04-01", + "2018-12-01", + "2017-09-01", + "2017-05-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "West Europe", + "East US", + "East US 2", + "West US", + "North Central US", + "Brazil South", + "North Europe", + "Central US", + "East Asia", + "Japan East", + "Australia Southeast", + "Japan West", + "Korea South", + "Korea Central", + "Southeast Asia", + "South Central US", + "Australia East", + "Jio India West", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "West Central US", + "West US 2", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Germany West Central", + "Switzerland North", + "Norway East", + "Brazil Southeast", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "locations/checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2022-10-01", + "2022-06-01", + "2022-01-01", + "2021-06-01", + "2021-01-01", + "2020-09-01", + "2020-05-01", + "2020-03-01-preview", + "2020-03-01", + "2019-08-01", + "2019-04-01", + "2018-12-01", + "2017-09-01", + "2017-05-01", + "2017-01-01", + "2015-12-01", + "2015-09-01", + "2015-07-01", + "2014-05-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Europe", + "East US", + "East US 2", + "West US", + "North Central US", + "Brazil South", + "North Europe", + "Central US", + "East Asia", + "Japan East", + "Australia Southeast", + "Japan West", + "Korea South", + "Korea Central", + "Southeast Asia", + "South Central US", + "Australia East", + "Jio India West", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "West Central US", + "West US 2", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Germany West Central", + "Switzerland North", + "Norway East", + "Brazil Southeast", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "locations/accountOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2022-10-01", + "2022-06-01", + "2022-01-01", + "2021-06-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "West Europe", + "East US", + "East US 2", + "West US", + "North Central US", + "Brazil South", + "North Europe", + "Central US", + "East Asia", + "Japan East", + "Australia Southeast", + "Japan West", + "Korea South", + "Korea Central", + "Southeast Asia", + "South Central US", + "Australia East", + "Jio India West", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "West Central US", + "West US 2", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Germany West Central", + "Switzerland North", + "Norway East", + "Brazil Southeast", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "locations/virtualMachineSkus", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2022-10-01", + "2022-06-01", + "2022-01-01", + "2021-06-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "West Europe", + "East US", + "East US 2", + "West US", + "North Central US", + "Brazil South", + "North Europe", + "Central US", + "East Asia", + "Japan East", + "Australia Southeast", + "Japan West", + "Korea South", + "Korea Central", + "Southeast Asia", + "South Central US", + "Australia East", + "Jio India West", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "West Central US", + "West US 2", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Germany West Central", + "Switzerland North", + "Norway East", + "Brazil Southeast", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "locations/cloudServiceSkus", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "80dbdb39-4f33-4799-8b6f-711b5e3e61b6", + "roleDefinitionId": "acdc79db-513f-461d-a542-61908d543bdc" + }, + { + "applicationId": "3829f069-1c33-45dd-84ab-2465f4282677", + "roleDefinitionId": "acdc79db-513f-461d-a542-61908d543bdc" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Billing", + "namespace": "Microsoft.Billing", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationFree", + "registrationState": "Registered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-03-01-preview", + "2017-04-24-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingPeriods", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-05-01", + "2019-10-01-preview", + "2018-11-01-preview", + "2018-03-01-preview", + "2017-04-24-preview", + "2017-02-27-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "invoices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "enrollmentAccounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-11-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "permissionRequests", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-11-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/permissionRequests", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-11-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/associatedTenants", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-11-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingRoleDefinitions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-11-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingRoleAssignments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-11-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "createBillingRoleAssignment", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-15-privatepreview", + "2020-05-01", + "2019-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/createBillingRoleAssignment", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-15-privatepreview", + "2020-05-01", + "2019-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingProfiles/createBillingRoleAssignment", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-15-privatepreview", + "2020-05-01", + "2019-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingProfiles/invoiceSections/createBillingRoleAssignment", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-15-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/customers/createBillingRoleAssignment", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-11-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingPermissions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-15-privatepreview", + "2020-05-01", + "2019-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingRoleDefinitions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-privatepreview", + "2020-12-15-privatepreview", + "2020-05-01", + "2019-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingRoleAssignments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-privatepreview", + "2020-12-15-privatepreview", + "2020-05-01", + "2019-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingPermissions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-privatepreview", + "2020-12-15-privatepreview", + "2020-11-01-privatepreview", + "2020-05-01", + "2019-10-01-preview", + "2018-11-01-preview", + "2018-06-30", + "2018-05-31" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingProfilesSummaries", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-privatepreview", + "2020-11-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/policies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-privatepreview", + "2021-10-01", + "2020-12-15-privatepreview", + "2020-11-01-privatepreview", + "2020-05-01", + "2019-10-01-preview", + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-15-privatepreview", + "2020-05-01", + "2019-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingProfiles/billingRoleDefinitions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-privatepreview", + "2020-12-15-privatepreview", + "2020-05-01", + "2019-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingProfiles/billingRoleAssignments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-privatepreview", + "2020-12-15-privatepreview", + "2020-05-01", + "2019-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingProfiles/billingPermissions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-15-privatepreview", + "2020-05-01", + "2019-10-01-preview", + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/customers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-05-01", + "2019-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingProfiles/customers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-05-01", + "2019-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingProfiles/instructions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-05-01", + "2019-10-01-preview", + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/customers/billingSubscriptions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-05-01", + "2019-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/customers/products", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-11-01-privatepreview", + "2019-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/customers/transactions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/invoiceSections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-15-privatepreview", + "2020-11-01-privatepreview", + "2020-05-01", + "2019-10-01-preview", + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingProfiles/invoiceSections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-15-privatepreview", + "2020-05-01", + "2019-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingProfiles/invoiceSections/billingRoleDefinitions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-15-privatepreview", + "2020-05-01", + "2019-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingProfiles/invoiceSections/billingRoleAssignments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-15-privatepreview", + "2020-05-01", + "2019-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingProfiles/invoiceSections/billingPermissions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-15-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/customers/billingRoleDefinitions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-15-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/customers/billingRoleAssignments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-15-privatepreview", + "2020-05-01", + "2019-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/customers/billingPermissions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/invoiceSections/elevate", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/createInvoiceSectionOperations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/patchOperations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/invoiceSections/patchOperations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/invoiceSections/productMoveOperations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/invoiceSections/billingSubscriptionMoveOperations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-05-01", + "2019-10-01-preview", + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/listInvoiceSectionsWithCreateSubscriptionPermission", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-privatepreview", + "2020-12-15-privatepreview", + "2020-11-01-privatepreview", + "2020-05-01", + "2019-10-01-preview", + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingProfiles", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/BillingProfiles/patchOperations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-30", + "2018-05-31" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "departments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-15-privatepreview", + "2019-10-01-preview", + "2018-06-30" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/departments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingProfiles/departments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-15-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/notificationContacts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingProfiles/notificationContacts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-15-privatepreview", + "2020-05-01", + "2019-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/departments/billingRoleDefinitions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingProfiles/departments/billingRoleDefinitions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-15-privatepreview", + "2020-05-01", + "2019-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/departments/billingRoleAssignments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingProfiles/departments/billingRoleAssignments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-15-privatepreview", + "2020-05-01", + "2019-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/departments/billingPermissions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingProfiles/departments/billingPermissions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-15-privatepreview", + "2019-10-01-preview", + "2018-06-30" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/enrollmentAccounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-15-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/departments/enrollmentAccounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingProfiles/enrollmentAccounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingProfiles/departments/enrollmentAccounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-15-privatepreview", + "2020-05-01", + "2019-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/enrollmentAccounts/billingRoleDefinitions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-15-privatepreview", + "2020-05-01", + "2019-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/enrollmentAccounts/billingRoleAssignments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-15-privatepreview", + "2020-05-01", + "2019-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/enrollmentAccounts/billingPermissions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingProfiles/enrollmentAccounts/billingPermissions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-15-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/enrollmentAccounts/billingSubscriptions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-15-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/departments/billingSubscriptions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-10-01-preview", + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingProfiles/paymentMethods", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-11-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/availableBalance", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-11-01-privatepreview", + "2020-05-01", + "2019-10-01-preview", + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingProfiles/availableBalance", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-11-01-privatepreview", + "2020-05-01", + "2019-10-01-preview", + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/invoices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-11-01-privatepreview", + "2020-05-01", + "2019-10-01-preview", + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingProfiles/invoices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-05-01", + "2019-10-01-preview", + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/transactions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-11-01-privatepreview", + "2019-10-01-preview", + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingProfiles/transactions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/invoiceSections/transactions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-11-01-privatepreview", + "2019-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingProfiles/invoiceSections/transactions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingProfiles/invoices/transactions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-11-01-privatepreview", + "2020-05-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/invoices/transactions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-11-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/invoices/summary", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-11-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingProfiles/validateDeleteBillingProfileEligibility", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-11-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingProfiles/invoiceSections/validateDeleteInvoiceSectionEligibility", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-11-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/invoices/transactionSummary", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-privatepreview", + "2021-10-01", + "2020-12-15-privatepreview", + "2020-11-01-privatepreview", + "2020-05-01", + "2019-10-01-preview", + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingSubscriptions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-10-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingSubscriptionAliases", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-11-01-privatepreview", + "2020-05-01", + "2019-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingSubscriptions/invoices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingSubscriptions/policies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-privatepreview", + "2020-12-15-privatepreview", + "2020-05-01", + "2019-10-01-preview", + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingProfiles/billingSubscriptions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingProfiles/departments/billingSubscriptions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingProfiles/enrollmentAccounts/billingSubscriptions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/invoiceSections/billingSubscriptions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-05-01", + "2019-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingProfiles/invoiceSections/billingSubscriptions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-05-01", + "2019-10-01-preview", + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operationStatus", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-05-01", + "2019-10-01-preview", + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/invoiceSections/products", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-05-01", + "2019-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingProfiles/invoiceSections/products", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/invoiceSections/products/updateAutoRenew", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingProfiles/invoiceSections/products/updateAutoRenew", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-05-01", + "2019-10-01-preview", + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingProfiles/products", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-05-01", + "2019-10-01-preview", + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/products", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-11-01-privatepreview", + "2020-09-01-preview", + "2020-05-01", + "2019-10-01-preview", + "2018-11-01-preview", + "2018-06-30", + "2018-03-01-preview", + "2017-04-24-preview", + "2017-02-27-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/invoiceSections/initiateTransfer", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingProfiles/invoiceSections/initiateTransfer", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/invoiceSections/transfers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-11-01-privatepreview", + "2019-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingProfiles/invoiceSections/transfers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-10-01-preview", + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "transfers/acceptTransfer", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-11-01-privatepreview", + "2019-10-01-preview", + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "transfers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-10-01-preview", + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "transfers/declineTransfer", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-10-01-preview", + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "transfers/validateTransfer", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/customers/initiateTransfer", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-11-01-privatepreview", + "2019-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/customers/transfers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-11-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/customers/transferSupportedAccounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-11-01-privatepreview", + "2020-05-01", + "2019-10-01-preview", + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingProperty", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "policies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-privatepreview", + "2020-11-01-privatepreview", + "2020-05-01", + "2019-10-01-preview", + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingProfiles/policies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-11-01-privatepreview", + "2020-05-01", + "2019-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/customers/policies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-10-01-preview", + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingProfiles/invoices/pricesheet", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-10-01-preview", + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingProfiles/pricesheet", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-10-01-preview", + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingProfiles/pricesheetDownloadOperations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/invoiceSections/billingSubscriptions/transfer", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/invoiceSections/products/transfer", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingProfiles/invoiceSections/products/transfer", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/invoiceSections/productTransfersResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "transfers/operationStatus", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-11-01-privatepreview", + "2020-05-01", + "2019-10-01-preview", + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/agreements", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-10-01-preview", + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/lineOfCredit", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-10-01", + "2020-11-01-privatepreview", + "2019-10-01-preview", + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/paymentMethods", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-10-01", + "2020-11-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "paymentMethods", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-privatepreview", + "2021-10-01", + "2020-11-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingProfiles/paymentMethodLinks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-15-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/payableOverage", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-15-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/payNow", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-beta", + "2022-10-01-privatepreview", + "2022-10-01-beta", + "2020-11-01-privatepreview", + "2020-11-01-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/reservationOrders", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-beta", + "2022-10-01-privatepreview", + "2022-10-01-beta", + "2020-11-01-privatepreview", + "2020-11-01-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/reservationOrders/reservations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-beta", + "2022-10-01-privatepreview", + "2022-10-01-beta", + "2020-11-01-privatepreview", + "2020-11-01-beta", + "2020-05-01", + "2019-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/reservations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-05-01", + "2019-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingProfiles/reservations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-privatepreview", + "2019-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingProfiles/validateDetachPaymentMethodEligibility", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-05-01", + "2019-10-01-preview", + "2018-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "validateAddress", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-11-01-preview", + "2020-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "promotions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-11-01-preview", + "2020-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "promotions/checkeligibility", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-privatepreview", + "2020-12-15-privatepreview", + "2020-12-15-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingSubscriptions/elevateRole", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-15-privatepreview", + "2020-12-15-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/appliedReservationOrders", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-11-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "promotionalCredits", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-11-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/promotionalCredits", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-beta", + "2022-10-01-privatepreview", + "2022-10-01-beta", + "2020-12-15-privatepreview", + "2020-12-15-beta", + "2020-11-01-privatepreview", + "2020-11-01-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/savingsPlanOrders/savingsPlans", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-beta", + "2022-10-01-privatepreview", + "2022-10-01-beta", + "2020-12-15-privatepreview", + "2020-12-15-beta", + "2020-11-01-privatepreview", + "2020-11-01-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/savingsPlanOrders", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-beta", + "2022-10-01-privatepreview", + "2022-10-01-beta", + "2020-12-15-privatepreview", + "2020-12-15-beta", + "2020-11-01-privatepreview", + "2020-11-01-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/savingsPlans", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/alerts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/billingProfiles/alerts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/listProductRecommendations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/incentiveSchedules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "billingAccounts/incentiveSchedules/milestones", + "zoneMappings": null + } + ] + }, + { + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.BillingBenefits", + "namespace": "Microsoft.BillingBenefits", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-07-01-beta", + "2022-11-01-beta", + "2022-11-01", + "2022-06-02-privatepreview", + "2022-06-02-beta", + "2021-07-01-privatepreview", + "2021-07-01-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "savingsPlanOrders", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-07-01-beta", + "2022-11-01-beta", + "2022-11-01", + "2022-06-02-privatepreview", + "2022-06-02-beta", + "2021-07-01-privatepreview", + "2021-07-01-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "savingsPlanOrders/savingsPlans", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-11-01-preview", + "2023-11-01-beta", + "2022-11-01-beta", + "2022-11-01", + "2022-06-02-privatepreview", + "2022-06-02-beta", + "2021-07-01-privatepreview", + "2021-07-01-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "validate", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-11-01-beta", + "2022-11-01", + "2022-06-02-privatepreview", + "2022-06-02-beta", + "2021-07-01-privatepreview", + "2021-07-01-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "calculateMigrationCost", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-11-01-preview", + "2023-11-01-beta", + "2023-07-01-preview", + "2023-07-01-beta", + "2022-11-01-beta", + "2022-11-01", + "2022-06-02-privatepreview", + "2022-06-02-beta", + "2021-07-01-privatepreview", + "2021-07-01-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-11-01-beta", + "2022-11-01", + "2021-07-01-privatepreview", + "2021-07-01-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-07-01-beta", + "2022-11-01-beta", + "2022-11-01", + "2022-06-02-privatepreview", + "2022-06-02-beta", + "2021-07-01-privatepreview", + "2021-07-01-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "savingsPlanOrderAliases", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-07-01-beta", + "2022-11-01-beta", + "2022-11-01", + "2022-06-02-privatepreview", + "2022-06-02-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "reservationOrderAliases", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-07-01-beta", + "2022-11-01-beta", + "2022-11-01", + "2022-06-02-privatepreview", + "2022-06-02-beta", + "2021-07-01-privatepreview", + "2021-07-01-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "savingsPlans", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-beta" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "incentiveSchedules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "incentiveSchedules/milestones", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-11-01-preview", + "2023-11-01-beta" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "maccs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-11-01-preview", + "2023-11-01-beta", + "2023-07-01-preview", + "2023-07-01-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "maccs/contributors", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-11-01-preview", + "2023-11-01-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "listSellerResources", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "c19490b5-c092-426f-b1a2-674b279d4975", + "roleDefinitionId": "7963cd60-9634-4abc-9a64-2482a3ef6373" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Bing", + "namespace": "Microsoft.Bing", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-06-10" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-06-10" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "accounts/skus", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-06-10" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "accounts/usages", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-06-10" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "registeredSubscriptions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-06-10" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-06-10" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "West Europe", + "Southeast Asia" + ], + "properties": null, + "resourceType": "locations/operationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-06-10" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "accounts", + "zoneMappings": null + } + ] + }, + { + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.BlockchainTokens", + "namespace": "Microsoft.BlockchainTokens", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-07-19-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US" + ], + "properties": null, + "resourceType": "Operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "f71766dc-90d9-4b7d-bd9d-4499c4331c3f", + "roleDefinitionId": "cb180127-cf6d-4672-9e75-e29a487f9658" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Blueprint", + "namespace": "Microsoft.Blueprint", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-11-01-preview", + "2018-11-01-alpha", + "2017-11-11-preview", + "2017-11-11-alpha" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "blueprints", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-11-01-preview", + "2018-11-01-alpha", + "2017-11-11-preview", + "2017-11-11-alpha" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "blueprints/artifacts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-11-01-preview", + "2018-11-01-alpha", + "2017-11-11-preview", + "2017-11-11-alpha" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "blueprints/versions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-11-01-preview", + "2018-11-01-alpha", + "2017-11-11-preview", + "2017-11-11-alpha" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "blueprints/versions/artifacts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-11-01-preview", + "2018-11-01-alpha", + "2017-11-11-preview", + "2017-11-11-alpha" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "blueprintAssignments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-11-11-preview", + "2017-11-11-alpha" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "blueprintAssignments/operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-11-01-preview", + "2018-11-01-alpha" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "blueprintAssignments/assignmentOperations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-11-01-preview", + "2018-11-01-alpha", + "2017-11-11-preview", + "2017-11-11-alpha" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "f3723d34-6ff5-4ceb-a148-d99dcd2511fc", + "roleDefinitionId": "71213c26-43ed-41d8-9905-3c12971517a3" + }, + { + "applicationId": "27a762be-14e7-4f92-899c-151877d6d497", + "roleDefinitionId": "aab320d1-5b9b-4748-982e-be803163df77" + }, + { + "applicationId": "5b404cf4-a79d-4cfe-b866-24bf8e1a4921", + "roleDefinitionId": "3d07f186-e6fa-4974-ac88-b88eeda6370a" + }, + { + "applicationId": "ce48853e-0605-4f77-8746-d70ac63cc6bc", + "roleDefinitionId": "d5b49851-91ee-42df-9dc4-00b3a3b4d96b" + }, + { + "applicationId": "e6650347-047f-4e51-9386-839384472ea5", + "roleDefinitionId": "a9b54502-e245-45bc-bd0f-aa7e1074afdc" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.BotService", + "namespace": "Microsoft.BotService", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-12-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2018-07-12", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2020-06-02", + "profileVersion": "2020-09-01-hybrid" + }, + { + "apiVersion": "2021-03-01", + "profileVersion": "2019-03-01-hybrid" + }, + { + "apiVersion": "2021-05-01-preview", + "profileVersion": "2018-12-01-profile" + } + ], + "apiVersions": [ + "2022-09-15", + "2022-06-15-preview", + "2021-05-01-preview", + "2021-03-01", + "2020-06-02", + "2018-07-12", + "2017-12-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2021-03-01", + "locationMappings": null, + "locations": [ + "Global", + "West Europe", + "West US" + ], + "properties": null, + "resourceType": "botServices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-12-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2018-07-12", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2020-06-02", + "profileVersion": "2020-09-01-hybrid" + }, + { + "apiVersion": "2021-03-01", + "profileVersion": "2019-03-01-hybrid" + }, + { + "apiVersion": "2021-05-01-preview", + "profileVersion": "2018-12-01-profile" + } + ], + "apiVersions": [ + "2022-09-15", + "2022-06-15-preview", + "2021-05-01-preview", + "2021-03-01", + "2020-06-02", + "2018-07-12", + "2017-12-01" + ], + "capabilities": "None", + "defaultApiVersion": "2021-03-01", + "locationMappings": null, + "locations": [ + "Global", + "West Europe", + "West US" + ], + "properties": null, + "resourceType": "botServices/channels", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-12-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2018-07-12", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2020-06-02", + "profileVersion": "2020-09-01-hybrid" + }, + { + "apiVersion": "2021-03-01", + "profileVersion": "2019-03-01-hybrid" + }, + { + "apiVersion": "2021-05-01-preview", + "profileVersion": "2018-12-01-profile" + } + ], + "apiVersions": [ + "2022-09-15", + "2022-06-15-preview", + "2021-05-01-preview", + "2021-03-01", + "2020-06-02", + "2018-07-12", + "2017-12-01" + ], + "capabilities": "None", + "defaultApiVersion": "2021-03-01", + "locationMappings": null, + "locations": [ + "Global", + "West Europe", + "West US" + ], + "properties": null, + "resourceType": "botServices/connections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-12-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2018-07-12", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2020-06-02", + "profileVersion": "2020-09-01-hybrid" + }, + { + "apiVersion": "2021-03-01", + "profileVersion": "2019-03-01-hybrid" + }, + { + "apiVersion": "2021-05-01-preview", + "profileVersion": "2018-12-01-profile" + } + ], + "apiVersions": [ + "2022-09-15", + "2022-06-15-preview", + "2021-05-01-preview", + "2021-03-01", + "2020-06-02", + "2018-07-12", + "2017-12-01" + ], + "capabilities": "None", + "defaultApiVersion": "2021-03-01", + "locationMappings": null, + "locations": [ + "Global" + ], + "properties": null, + "resourceType": "listAuthServiceProviders", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [], + "apiVersions": [ + "2022-09-15", + "2022-06-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2022-06-15-preview", + "locationMappings": null, + "locations": [ + "Global" + ], + "properties": null, + "resourceType": "listQnAMakerEndpointKeys", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-15", + "2022-06-15-preview", + "2021-05-01-preview", + "2021-03-01" + ], + "capabilities": "None", + "defaultApiVersion": "2021-03-01", + "locationMappings": null, + "locations": [ + "Global" + ], + "properties": null, + "resourceType": "hostSettings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-12-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2018-07-12", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2020-06-02", + "profileVersion": "2020-09-01-hybrid" + }, + { + "apiVersion": "2021-03-01", + "profileVersion": "2019-03-01-hybrid" + }, + { + "apiVersion": "2021-05-01-preview", + "profileVersion": "2018-12-01-profile" + } + ], + "apiVersions": [ + "2022-09-15", + "2022-06-15-preview", + "2021-05-01-preview", + "2021-03-01", + "2020-06-02", + "2018-07-12", + "2017-12-01" + ], + "capabilities": "None", + "defaultApiVersion": "2021-03-01", + "locationMappings": null, + "locations": [ + "Global" + ], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-12-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2018-07-12", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2020-06-02", + "profileVersion": "2020-09-01-hybrid" + }, + { + "apiVersion": "2021-03-01", + "profileVersion": "2019-03-01-hybrid" + }, + { + "apiVersion": "2021-05-01-preview", + "profileVersion": "2018-12-01-profile" + } + ], + "apiVersions": [ + "2022-09-15", + "2022-06-15-preview", + "2021-05-01-preview", + "2021-03-01", + "2020-06-02", + "2018-07-12", + "2017-12-01" + ], + "capabilities": "None", + "defaultApiVersion": "2021-03-01", + "locationMappings": null, + "locations": [ + "Global" + ], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-12-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2018-07-12", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2020-06-02", + "profileVersion": "2020-09-01-hybrid" + }, + { + "apiVersion": "2021-03-01", + "profileVersion": "2019-03-01-hybrid" + }, + { + "apiVersion": "2021-05-01-preview", + "profileVersion": "2018-12-01-profile" + } + ], + "apiVersions": [ + "2022-09-15", + "2022-06-15-preview", + "2021-05-01-preview", + "2021-03-01", + "2020-06-02", + "2018-07-12", + "2017-12-01" + ], + "capabilities": "None", + "defaultApiVersion": "2021-03-01", + "locationMappings": null, + "locations": [ + "Global", + "West Europe", + "West US" + ], + "properties": null, + "resourceType": "locations/notifyNetworkSecurityPerimeterUpdatesAvailable", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-12-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2018-07-12", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2020-06-02", + "profileVersion": "2020-09-01-hybrid" + }, + { + "apiVersion": "2021-03-01", + "profileVersion": "2019-03-01-hybrid" + }, + { + "apiVersion": "2021-05-01-preview", + "profileVersion": "2018-12-01-profile" + } + ], + "apiVersions": [ + "2022-09-15", + "2022-06-15-preview", + "2021-05-01-preview", + "2021-03-01", + "2020-06-02", + "2018-07-12", + "2017-12-01" + ], + "capabilities": "None", + "defaultApiVersion": "2021-03-01", + "locationMappings": null, + "locations": [ + "Global" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2021-03-01", + "profileVersion": "2019-03-01-hybrid" + }, + { + "apiVersion": "2021-05-01-preview", + "profileVersion": "2018-12-01-profile" + } + ], + "apiVersions": [ + "2022-09-15", + "2022-06-15-preview", + "2021-05-01-preview", + "2021-03-01" + ], + "capabilities": "None", + "defaultApiVersion": "2021-03-01", + "locationMappings": null, + "locations": [ + "Global", + "West Europe", + "West US" + ], + "properties": null, + "resourceType": "botServices/privateEndpointConnectionProxies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2021-03-01", + "profileVersion": "2019-03-01-hybrid" + }, + { + "apiVersion": "2021-05-01-preview", + "profileVersion": "2018-12-01-profile" + } + ], + "apiVersions": [ + "2022-09-15", + "2022-06-15-preview", + "2021-05-01-preview", + "2021-03-01" + ], + "capabilities": "None", + "defaultApiVersion": "2021-03-01", + "locationMappings": null, + "locations": [ + "Global", + "West Europe", + "West US" + ], + "properties": null, + "resourceType": "botServices/privateEndpointConnections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2021-03-01", + "profileVersion": "2019-03-01-hybrid" + }, + { + "apiVersion": "2021-05-01-preview", + "profileVersion": "2018-12-01-profile" + } + ], + "apiVersions": [ + "2022-09-15", + "2022-06-15-preview", + "2021-05-01-preview", + "2021-03-01" + ], + "capabilities": "None", + "defaultApiVersion": "2021-03-01", + "locationMappings": null, + "locations": [ + "Global", + "West Europe", + "West US" + ], + "properties": null, + "resourceType": "botServices/privateLinkResources", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2021-03-01", + "profileVersion": "2019-03-01-hybrid" + }, + { + "apiVersion": "2021-05-01-preview", + "profileVersion": "2018-12-01-profile" + } + ], + "apiVersions": [ + "2022-09-15", + "2022-06-15-preview", + "2021-05-01-preview", + "2021-03-01" + ], + "capabilities": "None", + "defaultApiVersion": "2021-03-01", + "locationMappings": null, + "locations": [ + "Global" + ], + "properties": null, + "resourceType": "operationResults", + "zoneMappings": null + } + ] + }, + { + "authorization": { + "applicationId": "96231a05-34ce-4eb4-aa6a-70759cbb5e83", + "roleDefinitionId": "4f731528-ba85-45c7-acfb-cd0a9b3cf31b" + }, + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Cache", + "namespace": "Microsoft.Cache", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-03-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-08-01", + "2023-05-01-preview", + "2023-04-01", + "2022-06-01", + "2022-05-01", + "2021-06-01", + "2020-12-01", + "2020-06-01", + "2019-07-01", + "2018-03-01", + "2017-10-01", + "2017-02-01", + "2016-04-01", + "2015-08-01", + "2015-03-01", + "2014-04-01-preview", + "2014-04-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-08-01", + "locationMappings": null, + "locations": [ + "North Central US", + "South Central US", + "Central US", + "West Europe", + "North Europe", + "West US", + "East US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Southeast Asia", + "East Asia", + "Australia East", + "Australia Southeast", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "West US 2", + "West Central US", + "South India", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "Redis", + "zoneMappings": [ + { + "location": "Australia East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Central India", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East Asia", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Korea Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Norway East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Poland Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Qatar Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "South Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Sweden Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Switzerland North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "UAE North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 3", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Israel Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Italy North", + "zones": [ + "1", + "2", + "3" + ] + } + ] + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2023-05-01-preview", + "2023-04-01", + "2022-06-01", + "2022-05-01", + "2021-06-01", + "2020-12-01", + "2020-06-01", + "2019-07-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "South Central US", + "Central US", + "West Europe", + "North Europe", + "West US", + "East US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Southeast Asia", + "East Asia", + "Australia East", + "Australia Southeast", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "West US 2", + "West Central US", + "South India", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "Redis/privateEndpointConnectionProxies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2023-05-01-preview", + "2023-04-01", + "2022-06-01", + "2022-05-01", + "2021-06-01", + "2020-12-01", + "2020-06-01", + "2019-07-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "South Central US", + "Central US", + "West Europe", + "North Europe", + "West US", + "East US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Southeast Asia", + "East Asia", + "Australia East", + "Australia Southeast", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "West US 2", + "West Central US", + "South India", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "Redis/privateEndpointConnectionProxies/validate", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2023-05-01-preview", + "2023-04-01", + "2022-06-01", + "2022-05-01", + "2021-06-01", + "2020-12-01", + "2020-06-01", + "2019-07-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "South Central US", + "Central US", + "West Europe", + "North Europe", + "West US", + "East US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Southeast Asia", + "East Asia", + "Australia East", + "Australia Southeast", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "West US 2", + "West Central US", + "South India", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "Redis/privateEndpointConnections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2023-05-01-preview", + "2023-04-01", + "2022-06-01", + "2022-05-01", + "2021-06-01", + "2020-12-01", + "2020-06-01", + "2019-07-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "South Central US", + "Central US", + "West Europe", + "North Europe", + "West US", + "East US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Southeast Asia", + "East Asia", + "Australia East", + "Australia Southeast", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "West US 2", + "West Central US", + "South India", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "Redis/privateLinkResources", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2023-05-01-preview", + "2023-04-01", + "2022-06-01", + "2022-05-01", + "2021-06-01", + "2020-12-01", + "2020-06-01", + "2019-07-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "South Central US", + "Central US", + "West Europe", + "North Europe", + "West US", + "East US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Southeast Asia", + "East Asia", + "Australia East", + "Australia Southeast", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "West US 2", + "West Central US", + "South India", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "locations/asyncOperations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-03-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-07-01", + "2023-05-01-preview", + "2023-04-01", + "2023-03-01-preview", + "2022-11-01-preview", + "2022-06-01", + "2022-05-01", + "2022-01-01", + "2021-08-01", + "2021-06-01", + "2021-03-01", + "2021-02-01-preview", + "2020-12-01", + "2020-06-01", + "2020-04-01-preview", + "2019-07-01", + "2018-03-01", + "2017-10-01", + "2017-02-01", + "2016-04-01", + "2015-08-01", + "2015-03-01", + "2014-04-01-preview", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-03-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-08-01", + "2023-05-01-preview", + "2023-04-01", + "2022-06-01", + "2022-05-01", + "2021-06-01", + "2020-12-01", + "2020-06-01", + "2019-07-01", + "2018-03-01", + "2017-10-01", + "2017-02-01", + "2016-04-01", + "2015-08-01", + "2015-03-01", + "2014-04-01-preview", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "South Central US", + "Central US", + "West Europe", + "North Europe", + "West US", + "East US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Southeast Asia", + "East Asia", + "Australia East", + "Australia Southeast", + "Central India", + "West India", + "South India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "West US 2", + "West Central US", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "locations/operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2020-04-01-preview", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-07-01", + "2023-03-01-preview", + "2022-11-01-preview", + "2022-01-01", + "2021-08-01", + "2021-03-01", + "2021-02-01-preview", + "2020-10-01-preview", + "2020-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-03-01", + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West US", + "East US 2", + "West US 2", + "West US 3", + "North Central US", + "South Central US", + "UK South", + "Southeast Asia", + "Australia East", + "North Europe", + "Central US", + "Central India", + "West Central US", + "Canada Central", + "Brazil South" + ], + "properties": null, + "resourceType": "locations/operationsStatus", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-03-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-08-01", + "2023-05-01-preview", + "2023-04-01", + "2022-06-01", + "2022-05-01", + "2021-06-01", + "2020-12-01", + "2020-06-01", + "2019-07-01", + "2018-03-01", + "2017-10-01", + "2017-02-01", + "2016-04-01", + "2015-08-01", + "2015-03-01", + "2014-04-01-preview", + "2014-04-01-alpha", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-03-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-07-01", + "2023-05-01-preview", + "2023-04-01", + "2023-03-01-preview", + "2022-11-01-preview", + "2022-06-01", + "2022-05-01", + "2021-06-01", + "2021-03-01", + "2021-02-01-preview", + "2020-12-01", + "2020-10-01-preview", + "2020-06-01", + "2019-07-01", + "2018-03-01", + "2017-10-01", + "2017-02-01", + "2016-04-01", + "2015-08-01", + "2015-03-01", + "2014-04-01-preview", + "2014-04-01-alpha", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2020-04-01-preview", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-07-01", + "2023-03-01-preview", + "2022-11-01-preview", + "2022-01-01", + "2021-08-01", + "2021-03-01", + "2021-02-01-preview", + "2020-10-01-preview", + "2020-04-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-01-01", + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West US", + "East US 2", + "West US 2", + "West US 3", + "North Central US", + "South Central US", + "UK South", + "Southeast Asia", + "Australia East", + "North Europe", + "Central US", + "Central India", + "West Central US", + "Canada Central", + "Brazil South" + ], + "properties": null, + "resourceType": "redisEnterprise", + "zoneMappings": [ + { + "location": "Australia East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Central India", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "South Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 3", + "zones": [ + "1", + "2", + "3" + ] + } + ] + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-03-01-preview", + "2022-11-01-preview", + "2022-01-01", + "2021-08-01", + "2021-03-01", + "2021-02-01-preview", + "2020-10-01-preview", + "2020-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West US", + "East US 2", + "West US 2", + "West US 3", + "North Central US", + "South Central US", + "UK South", + "Southeast Asia", + "Australia East", + "North Europe", + "Central US", + "Central India", + "West Central US", + "Canada Central", + "Brazil South" + ], + "properties": null, + "resourceType": "RedisEnterprise/privateEndpointConnectionProxies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-03-01-preview", + "2022-11-01-preview", + "2022-01-01", + "2021-08-01", + "2021-03-01", + "2021-02-01-preview", + "2020-10-01-preview", + "2020-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West US", + "East US 2", + "West US 2", + "West US 3", + "North Central US", + "South Central US", + "UK South", + "Southeast Asia", + "Australia East", + "North Europe", + "Central US", + "Central India", + "West Central US", + "Canada Central", + "Brazil South" + ], + "properties": null, + "resourceType": "RedisEnterprise/privateEndpointConnectionProxies/validate", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-03-01-preview", + "2022-11-01-preview", + "2022-01-01", + "2021-08-01", + "2021-03-01", + "2021-02-01-preview", + "2020-10-01-preview", + "2020-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West US", + "East US 2", + "West US 2", + "West US 3", + "North Central US", + "South Central US", + "UK South", + "Southeast Asia", + "Australia East", + "North Europe", + "Central US", + "Central India", + "West Central US", + "Canada Central", + "Brazil South" + ], + "properties": null, + "resourceType": "RedisEnterprise/privateEndpointConnectionProxies/operationresults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-03-01-preview", + "2022-11-01-preview", + "2022-01-01", + "2021-08-01", + "2021-03-01", + "2021-02-01-preview", + "2020-10-01-preview", + "2020-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West US", + "East US 2", + "West US 2", + "West US 3", + "North Central US", + "South Central US", + "UK South", + "Southeast Asia", + "Australia East", + "North Europe", + "Central US", + "Central India", + "West Central US", + "Canada Central", + "Brazil South" + ], + "properties": null, + "resourceType": "RedisEnterprise/privateEndpointConnections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-03-01-preview", + "2022-11-01-preview", + "2022-01-01", + "2021-08-01", + "2021-03-01", + "2021-02-01-preview", + "2020-10-01-preview", + "2020-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West US", + "East US 2", + "West US 2", + "West US 3", + "North Central US", + "South Central US", + "UK South", + "Southeast Asia", + "Australia East", + "North Europe", + "Central US", + "Central India", + "West Central US", + "Canada Central", + "Brazil South" + ], + "properties": null, + "resourceType": "RedisEnterprise/privateEndpointConnections/operationresults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-03-01-preview", + "2022-11-01-preview", + "2022-01-01", + "2021-08-01", + "2021-03-01", + "2021-02-01-preview", + "2020-10-01-preview", + "2020-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West US", + "East US 2", + "West US 2", + "West US 3", + "North Central US", + "South Central US", + "UK South", + "Southeast Asia", + "Australia East", + "North Europe", + "Central US", + "Central India", + "West Central US", + "Canada Central", + "Brazil South" + ], + "properties": null, + "resourceType": "RedisEnterprise/privateLinkResources", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-03-01-preview", + "2022-11-01-preview", + "2022-01-01", + "2021-08-01", + "2021-03-01", + "2021-02-01-preview", + "2020-10-01-preview", + "2020-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2022-01-01", + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West US", + "East US 2", + "West US 2", + "West US 3", + "North Central US", + "South Central US", + "UK South", + "Southeast Asia", + "Australia East", + "North Europe", + "Central US", + "Central India", + "West Central US", + "Canada Central", + "Brazil South" + ], + "properties": null, + "resourceType": "redisEnterprise/databases", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-03-01-preview", + "2022-11-01-preview", + "2022-01-01", + "2021-08-01", + "2021-03-01", + "2021-02-01-preview", + "2020-10-01-preview", + "2020-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2022-01-01", + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West US", + "East US 2", + "West US 2", + "West US 3", + "North Central US", + "South Central US", + "UK South", + "Southeast Asia", + "Australia East", + "North Europe", + "Central US", + "Central India", + "West Central US", + "Canada Central", + "Brazil South" + ], + "properties": null, + "resourceType": "locations/checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2023-05-01-preview", + "2023-04-01", + "2022-06-01", + "2022-05-01", + "2021-06-01", + "2020-12-01", + "2020-06-01", + "2019-07-01", + "2018-03-01", + "2017-10-01", + "2017-02-01", + "2016-04-01", + "2015-08-01", + "2015-03-01", + "2014-04-01-preview", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "South Central US", + "Central US", + "West Europe", + "North Europe", + "West US", + "East US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Southeast Asia", + "East Asia", + "Australia East", + "Australia Southeast", + "Central India", + "West India", + "South India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "West US 2", + "West Central US", + "Korea Central", + "Korea South", + "France South", + "France Central", + "Australia Central", + "Australia Central 2", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "Switzerland North", + "Switzerland West", + "Germany North", + "Germany West Central", + "Norway East", + "Norway West", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "Redis/EventGridFilters", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "4d0ad6c7-f6c3-46d8-ab0d-1406d5e6c86b", + "roleDefinitionId": "FD9C0A9A-4DB9-4F41-8A61-98385DEB6E2D" + }, + { + "applicationId": "fbc197b7-9e9c-4f98-823f-93cb1cb554e6", + "roleDefinitionId": "941F67D2-083A-4B78-AF91-9B3B30B9B150" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Capacity", + "namespace": "Microsoft.Capacity", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-10-25", + "2019-07-19-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "resourceProviders", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-10-25", + "2019-07-19-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "resourceProviders/locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-10-25", + "2019-07-19-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "resourceProviders/locations/serviceLimits", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-10-25", + "2019-07-19-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "resourceProviders/locations/serviceLimitsRequests", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-04-01", + "2018-06-01", + "2017-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "South Central US" + ], + "properties": null, + "resourceType": "resources", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-11-01-beta", + "2022-11-01", + "2022-06-02-privatepreview", + "2022-06-02-beta", + "2022-03-01-beta", + "2022-03-01", + "2021-07-01-beta", + "2021-07-01", + "2020-11-15-preview", + "2020-11-15-beta", + "2020-10-01-preview", + "2020-10-01-beta", + "2020-06-01-beta", + "2020-06-01", + "2019-04-01-beta", + "2019-04-01", + "2018-06-01-beta", + "2018-06-01", + "2017-11-01-beta", + "2017-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "reservationOrders", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-11-01-beta", + "2022-11-01", + "2022-06-02-privatepreview", + "2022-06-02-beta", + "2022-03-01-beta", + "2022-03-01", + "2021-07-01-beta", + "2021-07-01", + "2021-03-01-privatepreview", + "2021-03-01-beta", + "2020-10-01-preview", + "2020-10-01-beta", + "2020-06-01-beta", + "2019-04-01-beta", + "2019-04-01", + "2018-06-01-beta", + "2018-06-01", + "2017-11-01-beta", + "2017-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "reservationOrders/reservations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-04-01-beta", + "2019-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "listbenefits", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-11-01-beta", + "2022-11-01", + "2022-06-02-privatepreview", + "2022-06-02-beta", + "2022-03-01-beta", + "2022-03-01", + "2021-07-01-beta", + "2021-07-01", + "2020-10-01-preview", + "2020-10-01-beta", + "2020-06-01-beta", + "2020-06-01", + "2019-04-01-beta", + "2019-04-01", + "2018-06-01-beta", + "2018-06-01", + "2017-11-01-beta", + "2017-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "reservations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-11-01-beta", + "2022-11-01", + "2022-06-02-privatepreview", + "2022-06-02-beta", + "2022-03-01-beta", + "2022-03-01", + "2021-07-01-beta", + "2021-07-01", + "2020-10-01-preview", + "2020-10-01-beta", + "2020-06-01-beta", + "2019-04-01-beta", + "2019-04-01", + "2018-06-01-beta", + "2018-06-01", + "2017-11-01-beta", + "2017-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "reservationOrders/reservations/revisions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-11-01-beta", + "2022-11-01", + "2022-06-02-privatepreview", + "2022-06-02-beta", + "2022-03-01-beta", + "2022-03-01", + "2021-07-01-beta", + "2021-07-01", + "2020-10-01-preview", + "2020-10-01-beta", + "2019-04-01-beta", + "2019-04-01", + "2018-06-01-beta", + "2018-06-01", + "2017-11-01-beta", + "2017-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-11-01-beta", + "2022-11-01", + "2022-06-02-privatepreview", + "2022-06-02-beta", + "2022-03-01-beta", + "2022-03-01", + "2021-07-01-beta", + "2021-07-01", + "2021-03-01-privatepreview", + "2021-03-01-beta", + "2020-10-01-preview", + "2020-10-01-beta", + "2019-04-01-beta", + "2019-04-01", + "2018-06-01-beta", + "2018-06-01", + "2017-11-01-beta", + "2017-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "catalogs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-11-01-beta", + "2022-11-01", + "2022-06-02-privatepreview", + "2022-06-02-beta", + "2022-03-01-beta", + "2022-03-01", + "2021-07-01-beta", + "2021-07-01", + "2020-10-01-preview", + "2020-10-01-beta", + "2020-06-01-beta", + "2019-04-01-beta", + "2019-04-01", + "2018-06-01-beta", + "2018-06-01", + "2017-11-01-beta", + "2017-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "appliedReservations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-10-01-preview", + "2020-10-01-beta", + "2020-06-01-beta", + "2019-04-01-beta", + "2019-04-01", + "2018-06-01-beta", + "2018-06-01", + "2017-11-01-beta", + "2017-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkOffers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-10-01-preview", + "2020-10-01-beta", + "2020-06-01-beta", + "2019-04-01-beta", + "2019-04-01", + "2018-06-01-beta", + "2018-06-01", + "2017-11-01-beta", + "2017-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkScopes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-11-01-beta", + "2022-11-01", + "2022-06-02-privatepreview", + "2022-06-02-beta", + "2022-03-01-beta", + "2022-03-01", + "2021-07-01-beta", + "2021-07-01", + "2020-10-01-preview", + "2020-10-01-beta", + "2020-06-01-beta", + "2019-04-01-beta", + "2019-04-01", + "2018-06-01-beta", + "2018-06-01", + "2017-11-01-beta", + "2017-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "calculatePrice", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-11-01-beta", + "2022-11-01", + "2022-06-02-privatepreview", + "2022-06-02-beta", + "2022-03-01-beta", + "2022-03-01", + "2022-02-16-privatepreview", + "2022-02-16-beta", + "2021-07-01-beta", + "2021-07-01", + "2020-10-01-preview", + "2020-10-01-beta", + "2019-04-01-beta", + "2019-04-01", + "2018-06-01-beta", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "calculateExchange", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-11-01-beta", + "2022-11-01", + "2022-06-02-privatepreview", + "2022-06-02-beta", + "2022-03-01-beta", + "2022-03-01", + "2022-02-16-privatepreview", + "2022-02-16-beta", + "2021-07-01-beta", + "2021-07-01", + "2020-10-01-preview", + "2020-10-01-beta", + "2020-06-01-beta", + "2019-04-01-beta", + "2019-04-01", + "2018-06-01-beta", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "exchange", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-11-01-beta", + "2022-11-01", + "2022-06-02-privatepreview", + "2022-06-02-beta", + "2022-03-01-beta", + "2022-03-01", + "2020-10-01-preview", + "2020-10-01-beta", + "2020-06-01-beta", + "2019-04-01-beta", + "2019-04-01", + "2018-06-01-beta", + "2018-06-01", + "2017-11-01-beta", + "2017-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "reservationOrders/calculateRefund", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-11-01-beta", + "2022-11-01", + "2022-06-02-privatepreview", + "2022-06-02-beta", + "2022-03-01-beta", + "2022-03-01", + "2020-10-01-preview", + "2020-10-01-beta", + "2020-06-01-beta", + "2020-06-01", + "2019-04-01-beta", + "2019-04-01", + "2018-06-01-beta", + "2018-06-01", + "2017-11-01-beta", + "2017-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "reservationOrders/return", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-11-01-beta", + "2022-11-01", + "2022-06-02-privatepreview", + "2022-06-02-beta", + "2022-03-01-beta", + "2022-03-01", + "2021-07-01-beta", + "2021-07-01", + "2020-10-01-preview", + "2020-10-01-beta", + "2020-06-01-beta", + "2019-04-01-beta", + "2019-04-01", + "2018-06-01-beta", + "2018-06-01", + "2017-11-01-beta", + "2017-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "reservationOrders/split", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-11-01-beta", + "2022-11-01", + "2022-06-02-privatepreview", + "2022-06-02-beta", + "2022-03-01-beta", + "2022-03-01", + "2021-07-01-beta", + "2021-07-01", + "2020-10-01-preview", + "2020-10-01-beta", + "2020-06-01-beta", + "2019-04-01-beta", + "2019-04-01", + "2018-06-01-beta", + "2018-06-01", + "2017-11-01-beta", + "2017-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "reservationOrders/merge", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-10-01-preview", + "2020-10-01-beta", + "2019-04-01-beta", + "2019-04-01", + "2018-06-01-beta", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "reservationOrders/swap", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-11-01-beta", + "2022-11-01", + "2022-06-02-privatepreview", + "2022-06-02-beta", + "2022-03-01-beta", + "2022-03-01", + "2022-02-16-privatepreview", + "2022-02-16-beta", + "2021-07-01", + "2020-11-15-preview", + "2020-11-15-beta", + "2020-11-15" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "reservationOrders/changeDirectory", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-11-01-beta", + "2022-11-01", + "2022-06-02-privatepreview", + "2022-06-02-beta", + "2020-10-01-preview", + "2020-10-01-beta", + "2020-06-01-beta", + "2019-04-01-beta", + "2019-04-01", + "2018-06-01-beta", + "2018-06-01", + "2017-11-01-beta", + "2017-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "validateReservationOrder", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-10-01-preview", + "2020-10-01-beta", + "2020-06-01-beta", + "2019-04-01-beta", + "2019-04-01", + "2018-06-01-beta", + "2018-06-01", + "2017-11-01-beta", + "2017-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "reservationOrders/availableScopes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-11-01-beta", + "2022-11-01", + "2022-06-02-privatepreview", + "2022-06-02-beta", + "2022-03-01-beta", + "2022-03-01", + "2021-07-01-beta", + "2021-07-01", + "2019-04-01-beta", + "2019-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "reservationOrders/reservations/availableScopes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-04-01-beta", + "2019-04-01", + "2018-06-01-beta", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "commercialReservationOrders", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-06-01-privatepreview", + "2019-06-01-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "calculatePurchasePrice", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-06-01-privatepreview", + "2019-06-01-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "placePurchaseOrder", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-06-01-privatepreview", + "2019-06-01-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkPurchaseStatus", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-06-01-beta", + "2020-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "ownReservations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-11-01-beta", + "2022-11-01", + "2022-06-02-privatepreview", + "2022-06-02-beta", + "2022-03-01-beta", + "2022-03-01", + "2022-02-16-privatepreview", + "2022-02-16-beta", + "2021-07-01-beta", + "2021-07-01", + "2020-10-01-preview", + "2020-10-01-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-01-01-privatepreview", + "2021-01-01-beta" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "listSkus", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-03-01-privatepreview", + "2021-03-01-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkBenefitScopes", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "d05a94d3-4ebf-4d16-a4b5-c5157fe79490" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Carbon", + "namespace": "Microsoft.Carbon", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-04-01-preview", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "carbonEmissionReports", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-04-01-preview", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "queryCarbonEmissionDataAvailableDateRange", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "92b61450-2139-4e4a-a0cc-898eced7a779", + "roleDefinitionId": "067b29c5-33d0-424f-9209-a02a6cc90732" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Cdn", + "namespace": "Microsoft.Cdn", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-05-01-preview", + "2021-06-01", + "2020-09-01", + "2020-04-15", + "2020-03-31", + "2019-12-31", + "2019-06-15-preview", + "2019-04-15", + "2018-04-02", + "2017-10-12", + "2017-04-02", + "2016-10-02", + "2016-04-02", + "2015-06-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US", + "West Central US" + ], + "properties": null, + "resourceType": "profiles", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-05-01-preview", + "2021-06-01", + "2020-09-01", + "2020-04-15", + "2020-03-31", + "2019-12-31", + "2019-06-15-preview", + "2019-04-15", + "2018-04-02", + "2017-10-12", + "2017-04-02", + "2016-10-02", + "2016-04-02", + "2015-06-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US", + "West Central US" + ], + "properties": null, + "resourceType": "profiles/endpoints", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-05-01-preview", + "2021-06-01", + "2020-09-01", + "2020-04-15", + "2020-03-31", + "2019-12-31", + "2019-06-15-preview", + "2019-04-15", + "2018-04-02", + "2017-10-12", + "2017-04-02", + "2016-10-02", + "2016-04-02", + "2015-06-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US", + "West Central US" + ], + "properties": null, + "resourceType": "profiles/endpoints/origins", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-05-01-preview", + "2021-06-01", + "2020-09-01", + "2020-04-15", + "2020-03-31", + "2019-12-31" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US", + "West Central US" + ], + "properties": null, + "resourceType": "profiles/endpoints/origingroups", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-05-01-preview", + "2021-06-01", + "2020-09-01", + "2020-04-15", + "2020-03-31", + "2019-12-31", + "2019-06-15-preview", + "2019-04-15", + "2018-04-02", + "2017-10-12", + "2017-04-02", + "2016-10-02", + "2016-04-02", + "2015-06-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US", + "West Central US" + ], + "properties": null, + "resourceType": "profiles/endpoints/customdomains", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-05-01-preview", + "2021-06-01", + "2020-09-01", + "2020-04-15", + "2020-03-31", + "2019-12-31", + "2019-06-15-preview", + "2019-04-15", + "2018-04-02", + "2017-10-12", + "2017-04-02", + "2016-10-02", + "2016-04-02", + "2015-06-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US", + "West Central US" + ], + "properties": null, + "resourceType": "operationresults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-05-01-preview", + "2021-06-01", + "2020-09-01", + "2020-04-15", + "2020-03-31", + "2019-12-31", + "2019-06-15-preview", + "2019-04-15", + "2018-04-02", + "2017-10-12", + "2017-04-02", + "2016-10-02", + "2016-04-02", + "2015-06-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US", + "West Central US" + ], + "properties": null, + "resourceType": "operationresults/profileresults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-05-01-preview", + "2021-06-01", + "2020-09-01", + "2020-04-15", + "2020-03-31", + "2019-12-31", + "2019-06-15-preview", + "2019-04-15", + "2018-04-02", + "2017-10-12", + "2017-04-02", + "2016-10-02", + "2016-04-02", + "2015-06-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US", + "West Central US" + ], + "properties": null, + "resourceType": "operationresults/profileresults/endpointresults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-05-01-preview", + "2021-06-01", + "2020-09-01", + "2020-04-15", + "2020-03-31", + "2019-12-31", + "2019-06-15-preview", + "2019-04-15", + "2018-04-02", + "2017-10-12", + "2017-04-02", + "2016-10-02", + "2016-04-02", + "2015-06-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US", + "West Central US" + ], + "properties": null, + "resourceType": "operationresults/profileresults/endpointresults/originresults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-05-01-preview", + "2021-06-01", + "2020-09-01", + "2020-04-15", + "2020-03-31", + "2019-12-31" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "properties": null, + "resourceType": "operationresults/profileresults/endpointresults/origingroupresults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-05-01-preview", + "2021-06-01", + "2020-09-01", + "2020-04-15", + "2020-03-31", + "2019-12-31", + "2019-06-15-preview", + "2019-04-15", + "2018-04-02", + "2017-10-12", + "2017-04-02", + "2016-10-02", + "2016-04-02", + "2015-06-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US", + "West Central US" + ], + "properties": null, + "resourceType": "operationresults/profileresults/endpointresults/customdomainresults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-05-01-preview", + "2021-06-01", + "2020-09-01", + "2020-04-15", + "2020-03-31", + "2019-12-31", + "2019-06-15-preview", + "2019-04-15", + "2018-04-02", + "2017-10-12", + "2017-04-02", + "2016-10-02", + "2016-04-02", + "2015-06-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US", + "West Central US" + ], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-05-01-preview", + "2021-06-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US", + "West Central US" + ], + "properties": null, + "resourceType": "checkEndpointNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-05-01-preview", + "2021-06-01", + "2020-09-01", + "2020-04-15", + "2020-03-31", + "2019-12-31", + "2019-06-15-preview", + "2019-04-15", + "2018-04-02", + "2017-10-12", + "2017-04-02", + "2016-10-02" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US", + "West Central US" + ], + "properties": null, + "resourceType": "checkResourceUsage", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-05-01-preview", + "2021-06-01", + "2020-09-01", + "2020-04-15", + "2020-03-31", + "2019-12-31", + "2019-06-15-preview", + "2019-04-15", + "2018-04-02", + "2017-10-12", + "2017-04-02" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US", + "West Central US" + ], + "properties": null, + "resourceType": "validateProbe", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US", + "West Central US" + ], + "properties": null, + "resourceType": "canMigrate", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US", + "West Central US" + ], + "properties": null, + "resourceType": "migrate", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-05-01-preview", + "2021-06-01", + "2020-09-01", + "2020-04-15", + "2020-03-31", + "2019-12-31", + "2019-06-15-preview", + "2019-04-15", + "2018-04-02", + "2017-10-12", + "2017-04-02", + "2016-10-02", + "2016-04-02", + "2015-06-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US", + "West Central US" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-05-01-preview", + "2021-06-01", + "2020-09-01", + "2020-04-15", + "2020-03-31", + "2019-12-31", + "2019-06-15-preview", + "2019-04-15", + "2018-04-02", + "2017-10-12", + "2017-04-02", + "2016-10-02", + "2016-04-02", + "2015-06-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US", + "West Central US" + ], + "properties": null, + "resourceType": "edgenodes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-05-01-preview", + "2021-06-01", + "2020-09-01", + "2020-04-15", + "2019-06-15-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "CdnWebApplicationFirewallPolicies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-05-01-preview", + "2021-06-01", + "2020-09-01", + "2020-04-15", + "2019-06-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "CdnWebApplicationFirewallManagedRuleSets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-05-01-preview", + "2021-06-01", + "2020-09-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "properties": null, + "resourceType": "profiles/afdendpoints", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-05-01-preview", + "2021-06-01", + "2020-09-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "properties": null, + "resourceType": "profiles/afdendpoints/routes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-05-01-preview", + "2021-06-01", + "2020-09-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "properties": null, + "resourceType": "profiles/customdomains", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-05-01-preview", + "2021-06-01", + "2020-09-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "properties": null, + "resourceType": "profiles/origingroups", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-05-01-preview", + "2021-06-01", + "2020-09-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "properties": null, + "resourceType": "profiles/origingroups/origins", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-05-01-preview", + "2021-06-01", + "2020-09-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "properties": null, + "resourceType": "profiles/rulesets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-05-01-preview", + "2021-06-01", + "2020-09-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "properties": null, + "resourceType": "profiles/rulesets/rules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-05-01-preview", + "2021-06-01", + "2020-09-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "properties": null, + "resourceType": "profiles/secrets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-05-01-preview", + "2021-06-01", + "2020-09-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "properties": null, + "resourceType": "validateSecret", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-07-01-preview", + "locationMappings": null, + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "properties": null, + "resourceType": "profiles/keygroups", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-05-01-preview", + "2021-06-01", + "2020-09-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "properties": null, + "resourceType": "profiles/securitypolicies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-05-01-preview", + "2021-06-01", + "2020-09-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "properties": null, + "resourceType": "operationresults/profileresults/afdendpointresults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-05-01-preview", + "2021-06-01", + "2020-09-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "properties": null, + "resourceType": "operationresults/profileresults/afdendpointresults/routeresults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-05-01-preview", + "2021-06-01", + "2020-09-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "properties": null, + "resourceType": "operationresults/profileresults/customdomainresults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-05-01-preview", + "2021-06-01", + "2020-09-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "properties": null, + "resourceType": "operationresults/profileresults/origingroupresults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-05-01-preview", + "2021-06-01", + "2020-09-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "properties": null, + "resourceType": "operationresults/profileresults/origingroupresults/originresults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-05-01-preview", + "2021-06-01", + "2020-09-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "properties": null, + "resourceType": "operationresults/profileresults/rulesetresults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-05-01-preview", + "2021-06-01", + "2020-09-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "properties": null, + "resourceType": "operationresults/profileresults/rulesetresults/ruleresults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-05-01-preview", + "2021-06-01", + "2020-09-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "properties": null, + "resourceType": "operationresults/profileresults/secretresults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-05-01-preview", + "2021-06-01", + "2020-09-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "properties": null, + "resourceType": "operationresults/profileresults/securitypoliciesresults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2022-01-01-preview", + "locationMappings": null, + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "properties": null, + "resourceType": "profiles/policies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2022-11-01-preview", + "locationMappings": null, + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "properties": null, + "resourceType": "profiles/networkpolicies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-05-01-preview", + "2022-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2022-01-01-preview", + "locationMappings": null, + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "properties": null, + "resourceType": "operationresults/profileresults/policyresults", + "zoneMappings": null + } + ] + }, + { + "authorization": { + "applicationId": "f3c21649-0979-4721-ac85-b0216b2cf413", + "roleDefinitionId": "933fba7e-2ed3-4da8-973d-8bd8298a9b40" + }, + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.CertificateRegistration", + "namespace": "Microsoft.CertificateRegistration", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-02-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-02-01", + "2015-08-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "certificateOrders", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-02-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-02-01", + "2015-08-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "certificateOrders/certificates", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-02-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-02-01", + "2015-08-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "validateCertificateRegistrationInformation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-02-01", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-02-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2022-09-01", + "2022-03-01", + "2021-03-01", + "2021-02-01", + "2021-01-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-02-01", + "2015-08-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "2cfc91a4-7baa-4a8f-a6c9-5f3d279060b8", + "roleDefinitionId": "f5a6bd90-af71-455c-9030-c486e8c42c95" + }, + { + "applicationId": "3edcf11f-df80-41b2-a5e4-7e213cca30d1", + "roleDefinitionId": "f5a6bd90-af71-455c-9030-c486e8c42c95" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.ChangeAnalysis", + "namespace": "Microsoft.ChangeAnalysis", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-04-01-preview", + "2019-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-04-01-preview", + "2021-04-01", + "2020-04-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "resourceChanges", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-04-01-preview", + "2021-04-01", + "2020-10-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "changes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-04-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "changeSnapshots", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-04-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "computeChanges", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "ecad3f28-c75d-4414-94e0-a5e1de4df79e", + "managedByRoleDefinitionId": "633e521d-b900-4d1b-a682-02173ce1b47e", + "roleDefinitionId": "602d2aea-8ce8-4141-89a0-a454371c4a64" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Chaos", + "namespace": "Microsoft.Chaos", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-15-preview", + "2023-04-01-preview", + "2022-10-01-preview", + "2022-07-01-preview", + "2021-09-15-preview", + "2021-08-11-preview", + "2021-07-05-preview", + "2021-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-15-preview", + "2023-04-01-preview", + "2022-10-01-preview", + "2022-07-01-preview", + "2021-09-15-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": "2022-10-01-preview", + "locationMappings": null, + "locations": [ + "West Central US", + "East US", + "Central US", + "West US 3", + "UK South", + "West US", + "North Europe", + "West Europe", + "Japan East", + "North Central US", + "East US 2", + "Australia East", + "East Asia", + "Brazil South", + "Sweden Central", + "West US 2", + "Southeast Asia" + ], + "properties": null, + "resourceType": "targets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-15-preview", + "2023-04-01-preview", + "2022-10-01-preview", + "2022-07-01-preview", + "2021-09-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2022-10-01-preview", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-15-preview", + "2023-04-01-preview", + "2022-10-01-preview", + "2022-07-01-preview", + "2021-09-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2022-10-01-preview", + "locationMappings": null, + "locations": [ + "West Central US", + "East US", + "Central US", + "West US 3", + "UK South", + "West US", + "North Europe", + "West Europe", + "Japan East", + "North Central US", + "East US 2", + "Australia East", + "East Asia", + "Brazil South", + "Sweden Central", + "West US 2", + "Southeast Asia" + ], + "properties": null, + "resourceType": "locations/targetTypes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-15-preview", + "2023-04-01-preview", + "2022-10-01-preview", + "2022-07-01-preview", + "2021-09-15-preview" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-10-01-preview", + "locationMappings": null, + "locations": [ + "West Central US", + "East US", + "West US", + "Central US", + "UK South", + "West Europe", + "Japan East", + "North Central US", + "East US 2", + "Australia East", + "Brazil South", + "Sweden Central", + "Southeast Asia" + ], + "properties": null, + "resourceType": "experiments", + "zoneMappings": null + } + ] + }, + { + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.ClassicCompute", + "namespace": "Microsoft.ClassicCompute", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-02-01", + "2020-02-01", + "2018-06-01", + "2017-11-15", + "2017-11-01", + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-10-01", + "2015-06-01", + "2014-06-01", + "2014-01-01" + ], + "capabilities": "CrossResourceGroupResourceMove, SupportsLocation", + "defaultApiVersion": "2014-06-01", + "locationMappings": null, + "locations": [ + "East Asia", + "Southeast Asia", + "East US", + "East US 2", + "West US", + "West US 2", + "North Central US", + "South Central US", + "West Central US", + "Central US", + "North Europe", + "West Europe", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "East US 2 (Stage)", + "North Central US (Stage)", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Qatar Central", + "Sweden Central", + "Israel Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "domainNames", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-11-01", + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-10-01", + "2015-06-01", + "2014-06-01", + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": "2014-06-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "domainNames/internalLoadBalancers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-10-01", + "2015-06-01", + "2014-06-01", + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkDomainNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-02-01", + "2018-06-01", + "2017-11-15", + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-10-01", + "2015-06-01", + "2014-06-01", + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East Asia", + "Southeast Asia", + "East US", + "East US 2", + "West US", + "West US 2", + "North Central US", + "South Central US", + "West Central US", + "Central US", + "North Europe", + "West Europe", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "East US 2 (Stage)", + "North Central US (Stage)", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Norway East", + "Jio India West", + "West US 3", + "Qatar Central", + "Sweden Central", + "Israel Central", + "Poland Central", + "Italy North", + "Germany West Central" + ], + "properties": null, + "resourceType": "domainNames/slots", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-10-01", + "2015-06-01", + "2014-06-01", + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East Asia", + "Southeast Asia", + "East US", + "East US 2", + "West US", + "West US 2", + "North Central US", + "South Central US", + "West Central US", + "Central US", + "North Europe", + "West Europe", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "East US 2 (Stage)", + "North Central US (Stage)", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Qatar Central", + "Sweden Central", + "Israel Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "domainNames/slots/roles", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "domainNames/slots/roles/metricDefinitions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "South Central US", + "East US", + "East US 2", + "Canada Central", + "Canada East", + "West US", + "West US 2", + "West Central US", + "Australia East", + "Australia Southeast", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Central US", + "East Asia", + "Southeast Asia", + "North Europe", + "West Europe", + "UK South", + "UK West", + "Japan East", + "Japan West", + "Brazil South", + "South India", + "Central India", + "West India", + "East US 2 (Stage)", + "North Central US (Stage)", + "Korea Central", + "Korea South", + "France Central", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Israel Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "domainNames/slots/roles/metrics", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-04-01", + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-10-01", + "2015-06-01", + "2014-06-01", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "CrossResourceGroupResourceMove, SupportsLocation", + "defaultApiVersion": "2014-06-01", + "locationMappings": null, + "locations": [ + "East Asia", + "Southeast Asia", + "East US", + "East US 2", + "West US", + "West US 2", + "North Central US", + "South Central US", + "West Central US", + "Central US", + "North Europe", + "West Europe", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "East US 2 (Stage)", + "North Central US (Stage)", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Qatar Central", + "Sweden Central", + "Israel Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "virtualMachines", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-10-01", + "2015-06-01", + "2014-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "capabilities", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-10-01", + "2015-06-01", + "2014-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "domainNames/capabilities", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-10-01", + "2015-06-01", + "2014-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "domainNames/serviceCertificates", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-10-01", + "2015-06-01", + "2014-06-01", + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "quotas", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "North Central US", + "North Europe", + "West Europe", + "Brazil South", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Qatar Central", + "Sweden Central", + "Israel Central", + "Poland Central", + "Italy North", + "West US", + "Central US", + "South Central US", + "Japan East", + "Japan West", + "East Asia", + "Southeast Asia", + "Australia East", + "Australia Southeast", + "West US 2", + "West Central US", + "South India", + "Central India", + "West India", + "Korea Central", + "Korea South", + "East US 2 (Stage)", + "North Central US (Stage)" + ], + "properties": null, + "resourceType": "virtualMachines/diagnosticSettings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "North Central US", + "North Europe", + "West Europe", + "Brazil South", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Qatar Central", + "Sweden Central", + "Israel Central", + "Poland Central", + "Italy North", + "West US", + "Central US", + "South Central US", + "Japan East", + "Japan West", + "East Asia", + "Southeast Asia", + "Australia East", + "Australia Southeast", + "Australia Central", + "West US 2", + "West Central US", + "Germany West Central", + "Norway East", + "West US 3", + "South India", + "Central India", + "West India", + "Korea Central", + "Korea South", + "Jio India West", + "East US 2 (Stage)", + "North Central US (Stage)" + ], + "properties": null, + "resourceType": "virtualMachines/metricDefinitions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "South Central US", + "East US", + "East US 2", + "Canada Central", + "Canada East", + "West US", + "West US 2", + "West Central US", + "Australia East", + "Australia Southeast", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Central US", + "East Asia", + "Southeast Asia", + "North Europe", + "West Europe", + "UK South", + "UK West", + "Japan East", + "Japan West", + "Brazil South", + "South India", + "Central India", + "West India", + "East US 2 (Stage)", + "North Central US (Stage)", + "Korea Central", + "Korea South", + "France Central", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Israel Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "virtualMachines/metrics", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-04-01", + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-10-01", + "2015-06-01", + "2014-06-01", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-10-01", + "2015-06-01", + "2014-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "resourceTypes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-10-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "moveSubscriptionResources", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-10-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "validateSubscriptionMoveAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-10-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-10-01", + "2015-06-01", + "2014-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operatingSystems", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-10-01", + "2015-06-01", + "2014-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operatingSystemFamilies", + "zoneMappings": null + } + ] + }, + { + "authorization": { + "applicationId": "5e5abe2b-83cd-4786-826a-a05653ebb103", + "roleDefinitionId": "766c4d9b-ef83-4f73-8352-1450a506a69b" + }, + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.ClassicInfrastructureMigrate", + "namespace": "Microsoft.ClassicInfrastructureMigrate", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2015-06-15" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East Asia", + "Southeast Asia", + "East US", + "East US 2", + "West US", + "North Central US", + "South Central US", + "Central US", + "North Europe", + "West Europe", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "West India", + "South India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "France South", + "Australia Central", + "Australia Central 2", + "Germany North", + "Germany West Central", + "Norway East", + "Norway West", + "South Africa North", + "South Africa West", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North" + ], + "properties": null, + "resourceType": "classicInfrastructureResources", + "zoneMappings": null + } + ] + }, + { + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.ClassicNetwork", + "namespace": "Microsoft.ClassicNetwork", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-11-15", + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-06-01", + "2014-06-01", + "2014-01-01" + ], + "capabilities": "SupportsLocation", + "defaultApiVersion": "2014-06-01", + "locationMappings": null, + "locations": [ + "East Asia", + "Southeast Asia", + "East US", + "East US 2", + "West US", + "West US 2", + "North Central US", + "South Central US", + "West Central US", + "Central US", + "North Europe", + "West Europe", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "East US 2 (Stage)", + "North Central US (Stage)", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Jio India West", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central", + "Australia Central", + "Germany West Central", + "Norway East", + "West US 3", + "Sweden Central" + ], + "properties": null, + "resourceType": "virtualNetworks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "East US 2 (Stage)", + "North Central US (Stage)", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "virtualNetworks/virtualNetworkPeerings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "East US 2 (Stage)", + "North Central US (Stage)", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "virtualNetworks/remoteVirtualNetworkPeeringProxies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-06-01", + "2014-06-01", + "2014-01-01" + ], + "capabilities": "SupportsLocation", + "defaultApiVersion": "2014-06-01", + "locationMappings": null, + "locations": [ + "East Asia", + "Southeast Asia", + "East US", + "East US 2", + "West US", + "West US 2", + "North Central US", + "South Central US", + "West Central US", + "Central US", + "North Europe", + "West Europe", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "East US 2 (Stage)", + "North Central US (Stage)", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Jio India West", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central", + "Australia Central", + "Germany West Central", + "Norway East", + "West US 3", + "Sweden Central" + ], + "properties": null, + "resourceType": "reservedIps", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-06-01", + "2014-06-01", + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "quotas", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-06-01", + "2014-06-01", + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "gatewaySupportedDevices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-11-01", + "2016-04-01-beta", + "2016-04-01", + "2015-12-01", + "2015-06-01", + "2014-06-01", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-06-01" + ], + "capabilities": "SupportsLocation", + "defaultApiVersion": "2015-06-01", + "locationMappings": null, + "locations": [ + "East Asia", + "Southeast Asia", + "East US", + "East US 2", + "West US", + "West US 2", + "North Central US", + "South Central US", + "West Central US", + "Central US", + "North Europe", + "West Europe", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "East US 2 (Stage)", + "North Central US (Stage)", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Jio India West", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central", + "Australia Central", + "Germany West Central", + "West US 3", + "Norway East", + "Sweden Central" + ], + "properties": null, + "resourceType": "networkSecurityGroups", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-10-01", + "2015-06-01", + "2014-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "capabilities", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-10-01", + "2015-06-01", + "2014-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "expressRouteCrossConnections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-10-01", + "2015-06-01", + "2014-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "expressRouteCrossConnections/peerings", + "zoneMappings": null + } + ] + }, + { + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.ClassicStorage", + "namespace": "Microsoft.ClassicStorage", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-06-01", + "2014-06-01", + "2014-04-01-beta", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "CrossResourceGroupResourceMove, SupportsLocation", + "defaultApiVersion": "2014-06-01", + "locationMappings": null, + "locations": [ + "East Asia", + "Southeast Asia", + "East US", + "East US 2", + "West US", + "West US 2", + "North Central US", + "South Central US", + "West Central US", + "Central US", + "North Europe", + "West Europe", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "East US 2 (Stage)", + "North Central US (Stage)", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Qatar Central", + "Sweden Central", + "Israel Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "storageAccounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-06-01", + "2014-06-01", + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "quotas", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-06-01", + "2014-06-01", + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkStorageAccountAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "Central US", + "South Central US", + "Japan East", + "Japan West", + "East Asia", + "Southeast Asia", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "East US 2 (Stage)", + "North Central US (Stage)", + "West US 2", + "West Central US", + "Jio India West", + "Sweden Central", + "East US", + "East US 2", + "North Central US", + "North Europe", + "West Europe", + "Brazil South", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Qatar Central", + "Israel Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "storageAccounts/services", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "Central US", + "South Central US", + "Japan East", + "Japan West", + "East Asia", + "Southeast Asia", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "East US 2 (Stage)", + "North Central US (Stage)", + "West US 2", + "West Central US", + "Jio India West", + "Sweden Central", + "East US", + "East US 2", + "North Central US", + "North Europe", + "West Europe", + "Brazil South", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Qatar Central", + "Israel Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "storageAccounts/services/diagnosticSettings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "storageAccounts/services/metricDefinitions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "Central US", + "South Central US", + "Japan East", + "Japan West", + "East Asia", + "Southeast Asia", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "East US 2 (Stage)", + "North Central US (Stage)", + "West US 2", + "West Central US", + "East US", + "East US 2", + "North Central US", + "North Europe", + "West Europe", + "Brazil South", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Israel Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "storageAccounts/services/metrics", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "storageAccounts/metricDefinitions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "Central US", + "South Central US", + "Japan East", + "Japan West", + "East Asia", + "Southeast Asia", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "East US 2 (Stage)", + "North Central US (Stage)", + "West US 2", + "West Central US", + "East US", + "East US 2", + "North Central US", + "North Europe", + "West Europe", + "Brazil South", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Israel Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "storageAccounts/metrics", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-06-01", + "2014-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "capabilities", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-06-01", + "2014-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "storageAccounts/blobServices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-06-01", + "2014-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "storageAccounts/tableServices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-06-01", + "2014-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "storageAccounts/fileServices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-06-01", + "2014-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "storageAccounts/queueServices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-06-01", + "2014-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "disks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-06-01", + "2014-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "images", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "vmImages", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-06-01", + "2014-06-01", + "2014-04-01-beta", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "storageAccounts/vmImages", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-11-01", + "2016-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "publicImages", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-06-01", + "2014-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "osImages", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-06-01", + "2014-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "osPlatformImages", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-11-01", + "2016-04-01-beta", + "2016-04-01", + "2015-12-01", + "2015-06-01", + "2014-06-01", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.ClassicSubscription", + "namespace": "Microsoft.ClassicSubscription", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationFree", + "registrationState": "Registered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-09-01", + "2017-06-01" + ], + "capabilities": "None", + "defaultApiVersion": "2017-06-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "d76bde86-0387-4db5-af46-51a9e31e6666", + "roleDefinitionId": "1e86f807-6ec0-40b3-8b5f-686b7e43a0a2" + }, + { + "applicationId": "f77c2a8f-8a0a-4776-8e0a-bcb2549610ca", + "managedByAuthorization": { + "additionalAuthorizations": [ + { + "applicationId": "d76bde86-0387-4db5-af46-51a9e31e6666", + "roleDefinitionId": "1e86f807-6ec0-40b3-8b5f-686b7e43a0a2" + } + ] + }, + "managedByRoleDefinitionId": "1e86f807-6ec0-40b3-8b5f-686b7e43a0a2", + "roleDefinitionId": "8010f77f-bee6-484b-bce2-444be3761632" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.CleanRoom", + "namespace": "Microsoft.CleanRoom", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-12-31-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-12-31-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-12-31-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US" + ], + "properties": null, + "resourceType": "Locations/OperationStatuses", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "2233b157-f44d-4812-b777-036cdaf9a96e", + "roleDefinitionId": "b0ddbf2d-f082-4fa8-97b2-3a069c305e47" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.CloudShell", + "namespace": "Microsoft.CloudShell", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2020-04-01-preview", + "2018-10-01", + "2017-12-01-preview", + "2017-08-01-preview", + "2017-01-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "3cbcded7-0049-4401-9e00-5f4f10f75efe", + "roleDefinitionId": "2a79b4a6-c891-4849-8a3c-e75bf686bc10" + }, + { + "applicationId": "9fc8264d-0a40-4790-86e1-e7b73a2d2298", + "roleDefinitionId": "2a79b4a6-c891-4849-8a3c-e75bf686bc10" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.CloudTest", + "namespace": "Microsoft.CloudTest", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2020-05-07", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2020-05-07" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-05-07", + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Japan East", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "South India", + "Southeast Asia", + "West US", + "West US 2", + "Brazil South", + "Brazil Southeast", + "Central India", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "North Europe", + "Norway East", + "Norway West", + "South Africa North", + "South Africa West", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Europe", + "West India", + "Canada Central", + "Canada East", + "Central US", + "North Central US", + "South Central US", + "West Central US", + "West US 3" + ], + "properties": null, + "resourceType": "accounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2020-05-07", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2020-05-07" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-05-07", + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Japan East", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "South India", + "Southeast Asia", + "West US", + "West US 2", + "Brazil South", + "Brazil Southeast", + "Central India", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "North Europe", + "Norway East", + "Norway West", + "South Africa North", + "South Africa West", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Europe", + "West India", + "Canada Central", + "Canada East", + "Central US", + "North Central US", + "South Central US", + "West Central US", + "West US 3" + ], + "properties": null, + "resourceType": "pools", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2020-05-07", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2020-05-07" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-05-07", + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Japan East", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "South India", + "Southeast Asia", + "West US", + "West US 2", + "Brazil South", + "Brazil Southeast", + "Central India", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "North Europe", + "Norway East", + "Norway West", + "South Africa North", + "South Africa West", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Europe", + "West India", + "Canada Central", + "Canada East", + "Central US", + "North Central US", + "South Central US", + "West Central US", + "West US 3" + ], + "properties": null, + "resourceType": "hostedpools", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2020-05-07", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2020-05-07" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-05-07", + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Japan East", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "South India", + "Southeast Asia", + "West US", + "West US 2", + "Brazil South", + "Brazil Southeast", + "Central India", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "North Europe", + "Norway East", + "Norway West", + "South Africa North", + "South Africa West", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Europe", + "West India", + "Canada Central", + "Canada East", + "Central US", + "North Central US", + "South Central US", + "West Central US", + "West US 3" + ], + "properties": null, + "resourceType": "images", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2020-05-07", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2020-05-07" + ], + "capabilities": "SystemAssignedResourceIdentity", + "defaultApiVersion": "2020-05-07", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2020-05-07", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2020-05-07" + ], + "capabilities": "SystemAssignedResourceIdentity", + "defaultApiVersion": "2020-05-07", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2020-05-07", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2020-05-07" + ], + "capabilities": "SystemAssignedResourceIdentity", + "defaultApiVersion": "2020-05-07", + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Japan East", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "South India", + "Southeast Asia", + "West US", + "West US 2", + "Brazil South", + "Brazil Southeast", + "Central India", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "North Europe", + "Norway East", + "Norway West", + "South Africa North", + "South Africa West", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Europe", + "West India", + "Canada Central", + "Canada East", + "Central US", + "North Central US", + "South Central US", + "West Central US", + "West US 3" + ], + "properties": null, + "resourceType": "locations/operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "71af9eaf-3a7b-43eb-bc59-c504bfe12240", + "roleDefinitionId": "19b6cda9-0548-4af8-a2cd-e1228d75f5fe" + }, + { + "applicationId": "aa91afce-cb45-4805-9529-74f450750af6", + "roleDefinitionId": "19b6cda9-0548-4af8-a2cd-e1228d75f5fe" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.CodeSigning", + "namespace": "Microsoft.CodeSigning", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-30-preview", + "2020-12-14-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-30-preview", + "2020-12-14-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US EUAP", + "West Central US", + "West US 2", + "North Europe", + "West Europe" + ], + "properties": null, + "resourceType": "Locations/OperationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-30-preview", + "2020-12-14-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-30-preview", + "2020-12-14-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "0b9ae698-bb35-4f49-8cf3-cc64850b135c", + "roleDefinitionId": "13815979-ffac-438c-8395-3af2f99ce6da" + }, + { + "applicationId": "340bb451-b6f5-4864-88f8-c96c7a85b8fb", + "roleDefinitionId": "30e0b1fc-4e98-4fbf-88a6-c90f0e53d1b4" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.CognitiveSearch", + "namespace": "Microsoft.CognitiveSearch", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Commerce", + "namespace": "Microsoft.Commerce", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationFree", + "registrationState": "Registered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2015-06-01-preview", + "2015-03-31" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "UsageAggregates", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-08-31-preview", + "2015-06-01-preview", + "2015-05-15" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "RateCard", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2015-06-01-preview", + "2015-03-31" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "632ec9eb-fad7-4cbd-993a-e72973ba2acc", + "roleDefinitionId": "6c5c31b0-3a00-47ea-9555-f233670ba313" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Communication", + "namespace": "Microsoft.Communication", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview", + "2023-03-31", + "2023-03-01-preview", + "2022-10-01-preview", + "2022-07-01-preview", + "2022-03-29-preview", + "2021-10-01-preview", + "2020-08-20" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview", + "2023-03-31", + "2023-03-01-preview", + "2022-10-01-preview", + "2022-07-01-preview", + "2022-03-29-preview", + "2021-10-01-preview", + "2020-08-20" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "CommunicationServices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-09-09-privatepreview", + "2020-08-20" + ], + "capabilities": "None", + "defaultApiVersion": "2020-08-20", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "CommunicationServices/eventGridFilters", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview", + "2023-03-31", + "2023-03-01-preview", + "2022-10-01-preview", + "2022-07-01-preview", + "2022-03-29-preview", + "2021-10-01-preview", + "2020-08-20" + ], + "capabilities": "None", + "defaultApiVersion": "2023-03-31", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview", + "2023-03-31", + "2023-03-01-preview", + "2022-10-01-preview", + "2022-07-01-preview", + "2021-10-01-preview", + "2020-08-20" + ], + "capabilities": "None", + "defaultApiVersion": "2020-08-20", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "registeredSubscriptions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview", + "2023-03-31", + "2023-03-01-preview", + "2022-10-01-preview", + "2022-07-01-preview", + "2022-03-29-preview", + "2021-10-01-preview", + "2020-08-20" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2" + ], + "properties": null, + "resourceType": "locations/operationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview", + "2023-03-31", + "2023-03-01-preview", + "2022-10-01-preview", + "2022-07-01-preview", + "2021-10-01-preview", + "2020-08-20" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "CheckNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview", + "2023-03-31", + "2023-03-01-preview", + "2022-10-01-preview", + "2022-07-01-preview", + "2021-10-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-03-01-preview", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "EmailServices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview", + "2023-03-31", + "2023-03-01-preview", + "2022-10-01-preview", + "2022-07-01-preview", + "2021-10-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-03-01-preview", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "EmailServices/Domains", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview", + "2023-03-31", + "2023-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-03-01-preview", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "EmailServices/Domains/SenderUsernames", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", + "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" + }, + { + "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", + "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" + }, + { + "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", + "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" + }, + { + "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", + "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" + }, + { + "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", + "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Compute", + "namespace": "Microsoft.Compute", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-03-30", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2017-03-30", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2017-12-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2017-12-01", + "profileVersion": "2019-03-01-hybrid" + }, + { + "apiVersion": "2020-06-01", + "profileVersion": "2020-09-01-hybrid" + } + ], + "apiVersions": [ + "2023-07-01", + "2023-03-01", + "2022-11-01", + "2022-08-01", + "2022-03-01", + "2021-11-01", + "2021-07-01", + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-03-01", + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "availabilitySets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-03-30", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2017-03-30", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2017-12-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2017-12-01", + "profileVersion": "2019-03-01-hybrid" + }, + { + "apiVersion": "2020-06-01", + "profileVersion": "2020-09-01-hybrid" + } + ], + "apiVersions": [ + "2023-07-01", + "2023-03-01", + "2022-11-01", + "2022-08-01", + "2022-03-01", + "2021-11-01", + "2021-07-01", + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-03-01", + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "virtualMachines", + "zoneMappings": [ + { + "location": "Australia East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Central India", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East Asia", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Korea Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Norway East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Poland Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Qatar Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "South Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Sweden Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Switzerland North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "UAE North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 3", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Israel Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Italy North", + "zones": [ + "1", + "2", + "3" + ] + } + ] + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-03-30", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2017-03-30", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2017-12-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2017-12-01", + "profileVersion": "2019-03-01-hybrid" + }, + { + "apiVersion": "2020-06-01", + "profileVersion": "2020-09-01-hybrid" + } + ], + "apiVersions": [ + "2023-07-01", + "2023-03-01", + "2022-11-01", + "2022-08-01", + "2022-03-01", + "2021-11-01", + "2021-07-01", + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-03-01", + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "virtualMachines/extensions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-03-30", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2017-03-30", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2017-12-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2017-12-01", + "profileVersion": "2019-03-01-hybrid" + }, + { + "apiVersion": "2020-06-01", + "profileVersion": "2020-09-01-hybrid" + } + ], + "apiVersions": [ + "2023-07-01", + "2023-03-01", + "2022-11-01", + "2022-08-01", + "2022-03-01", + "2021-11-01", + "2021-07-01", + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-03-01", + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "virtualMachineScaleSets", + "zoneMappings": [ + { + "location": "Australia East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Central India", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East Asia", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Korea Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Norway East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Poland Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Qatar Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "South Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Sweden Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Switzerland North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "UAE North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 3", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Israel Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Italy North", + "zones": [ + "1", + "2", + "3" + ] + } + ] + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-03-30", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2017-03-30", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2017-12-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2017-12-01", + "profileVersion": "2019-03-01-hybrid" + }, + { + "apiVersion": "2020-06-01", + "profileVersion": "2020-09-01-hybrid" + } + ], + "apiVersions": [ + "2023-07-01", + "2023-03-01", + "2022-11-01", + "2022-08-01", + "2022-03-01", + "2021-11-01", + "2021-07-01", + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2015-06-15", + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "virtualMachineScaleSets/extensions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-03-30", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2017-03-30", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2017-12-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2017-12-01", + "profileVersion": "2019-03-01-hybrid" + }, + { + "apiVersion": "2020-06-01", + "profileVersion": "2020-09-01-hybrid" + } + ], + "apiVersions": [ + "2023-07-01", + "2023-03-01", + "2022-11-01", + "2022-08-01", + "2022-03-01", + "2021-11-01", + "2021-07-01", + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2022-03-01", + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "virtualMachineScaleSets/virtualMachines", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-03-30", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2017-03-30", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2017-12-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2017-12-01", + "profileVersion": "2019-03-01-hybrid" + }, + { + "apiVersion": "2020-06-01", + "profileVersion": "2020-09-01-hybrid" + } + ], + "apiVersions": [ + "2023-07-01", + "2023-03-01", + "2022-11-01", + "2022-08-01", + "2022-03-01", + "2021-11-01", + "2021-07-01", + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-03-30", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2017-03-30", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2017-12-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2017-12-01", + "profileVersion": "2019-03-01-hybrid" + }, + { + "apiVersion": "2020-06-01", + "profileVersion": "2020-09-01-hybrid" + } + ], + "apiVersions": [ + "2023-07-01", + "2023-03-01", + "2022-11-01", + "2022-08-01", + "2022-03-01", + "2021-11-01", + "2021-07-01", + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "virtualMachineScaleSets/networkInterfaces", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-03-30", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2017-03-30", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2017-12-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2017-12-01", + "profileVersion": "2019-03-01-hybrid" + }, + { + "apiVersion": "2020-06-01", + "profileVersion": "2020-09-01-hybrid" + } + ], + "apiVersions": [ + "2023-07-01", + "2023-03-01", + "2022-11-01", + "2022-08-01", + "2022-03-01", + "2021-11-01", + "2021-07-01", + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-03-30", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2017-12-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2017-12-01", + "profileVersion": "2019-03-01-hybrid" + }, + { + "apiVersion": "2020-06-01", + "profileVersion": "2020-09-01-hybrid" + } + ], + "apiVersions": [ + "2023-07-01", + "2023-03-01", + "2022-11-01", + "2022-08-01", + "2022-03-01", + "2021-11-01", + "2021-07-01", + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "virtualMachineScaleSets/publicIPAddresses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-03-01", + "2022-11-01", + "2022-08-01", + "2022-03-01", + "2021-11-01", + "2021-07-01", + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-03-30", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2017-03-30", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2017-12-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2017-12-01", + "profileVersion": "2019-03-01-hybrid" + }, + { + "apiVersion": "2020-06-01", + "profileVersion": "2020-09-01-hybrid" + } + ], + "apiVersions": [ + "2023-07-01", + "2023-03-01", + "2022-11-01", + "2022-08-01", + "2022-03-01", + "2021-11-01", + "2021-07-01", + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "locations/operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-03-30", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2017-03-30", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2017-12-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2017-12-01", + "profileVersion": "2019-03-01-hybrid" + }, + { + "apiVersion": "2020-06-01", + "profileVersion": "2020-09-01-hybrid" + } + ], + "apiVersions": [ + "2023-07-01", + "2023-03-01", + "2022-11-01", + "2022-08-01", + "2022-03-01", + "2021-11-01", + "2021-07-01", + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "locations/vmSizes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-03-30", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2017-12-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2017-12-01", + "profileVersion": "2019-03-01-hybrid" + }, + { + "apiVersion": "2020-06-01", + "profileVersion": "2020-09-01-hybrid" + } + ], + "apiVersions": [ + "2023-07-01", + "2023-03-01", + "2022-11-01", + "2022-08-01", + "2022-03-01", + "2021-11-01", + "2021-07-01", + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "locations/runCommands", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-03-30", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2017-12-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2017-12-01", + "profileVersion": "2019-03-01-hybrid" + }, + { + "apiVersion": "2020-06-01", + "profileVersion": "2020-09-01-hybrid" + } + ], + "apiVersions": [ + "2023-07-01", + "2023-03-01", + "2022-11-01", + "2022-08-01", + "2022-03-01", + "2021-11-01", + "2021-07-01", + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30" + ], + "capabilities": "None", + "defaultApiVersion": "2022-03-01", + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "locations/virtualMachines", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-03-30", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2017-12-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2017-12-01", + "profileVersion": "2019-03-01-hybrid" + }, + { + "apiVersion": "2020-06-01", + "profileVersion": "2020-09-01-hybrid" + } + ], + "apiVersions": [ + "2023-07-01", + "2023-03-01", + "2022-11-01", + "2022-08-01", + "2022-03-01", + "2021-11-01", + "2021-07-01", + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30" + ], + "capabilities": "None", + "defaultApiVersion": "2022-03-01", + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "locations/virtualMachineScaleSets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-03-30", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2017-03-30", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2017-12-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2017-12-01", + "profileVersion": "2019-03-01-hybrid" + }, + { + "apiVersion": "2020-06-01", + "profileVersion": "2020-09-01-hybrid" + } + ], + "apiVersions": [ + "2023-07-03", + "2023-07-01", + "2023-03-01", + "2022-11-01", + "2022-08-03", + "2022-08-01", + "2022-03-03", + "2022-03-01", + "2022-01-03", + "2021-11-01", + "2021-07-01", + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-09-30", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "locations/publishers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-03-01", + "2022-11-01", + "2022-08-01", + "2022-03-01", + "2021-11-01", + "2021-07-01", + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-03-01", + "2022-11-01", + "2022-08-01", + "2022-03-01", + "2021-11-01", + "2021-07-01", + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-03-01", + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "virtualMachines/runCommands", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-03-01", + "2022-11-01", + "2022-08-01", + "2022-03-01", + "2021-11-01", + "2021-07-01" + ], + "capabilities": "None", + "defaultApiVersion": "2022-03-01", + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "virtualMachineScaleSets/applications", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-03-01", + "2022-11-01", + "2022-08-01", + "2022-03-01", + "2021-11-01", + "2021-07-01" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-03-01", + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "virtualMachines/VMApplications", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-03-01", + "2022-11-01", + "2022-08-01", + "2022-03-01", + "2021-11-01", + "2021-07-01", + "2021-04-01", + "2021-03-01", + "2020-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations/edgeZones", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-03-01", + "2022-11-01", + "2022-08-01", + "2022-03-01", + "2021-11-01", + "2021-07-01", + "2021-04-01", + "2021-03-01", + "2020-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "locations/edgeZones/vmimages", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-03-01", + "2022-11-01", + "2022-08-01", + "2022-03-01", + "2021-11-01", + "2021-07-01", + "2021-04-01", + "2021-03-01", + "2020-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "locations/edgeZones/publishers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-03-01", + "2022-11-01", + "2022-08-01", + "2022-03-01", + "2021-11-01", + "2021-07-01", + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-03-01", + "locationMappings": null, + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "restorePointCollections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-03-01", + "2022-11-01", + "2022-08-01", + "2022-03-01", + "2021-11-01", + "2021-07-01", + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "restorePointCollections/restorePoints", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-03-01", + "2022-11-01", + "2022-08-01", + "2022-03-01", + "2021-11-01", + "2021-07-01", + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-03-01", + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "proximityPlacementGroups", + "zoneMappings": [ + { + "location": "Australia East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Central India", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East Asia", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Korea Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Norway East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Poland Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Qatar Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "South Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Sweden Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Switzerland North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "UAE North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 3", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Israel Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Italy North", + "zones": [ + "1", + "2", + "3" + ] + } + ] + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-03-01", + "2022-11-01", + "2022-08-01", + "2022-03-01", + "2021-11-01", + "2021-07-01", + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-03-01", + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "sshPublicKeys", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-03-01", + "2022-11-01", + "2022-08-01", + "2022-03-01", + "2021-11-01", + "2021-07-01", + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-03-01", + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "capacityReservationGroups", + "zoneMappings": [ + { + "location": "Australia East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Central India", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East Asia", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Korea Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Norway East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Poland Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Qatar Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "South Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Sweden Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Switzerland North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "UAE North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 3", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Israel Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Italy North", + "zones": [ + "1", + "2", + "3" + ] + } + ] + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-03-01", + "2022-11-01", + "2022-08-01", + "2022-03-01", + "2021-11-01", + "2021-07-01", + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-03-01", + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "capacityReservationGroups/capacityReservations", + "zoneMappings": [ + { + "location": "Australia East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Central India", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East Asia", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Korea Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Norway East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Poland Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Qatar Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "South Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Sweden Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Switzerland North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "UAE North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 3", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Israel Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Italy North", + "zones": [ + "1", + "2", + "3" + ] + } + ] + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Israel Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "virtualMachines/metricDefinitions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-03-01", + "2022-11-01", + "2022-08-01", + "2022-03-01", + "2021-11-01", + "2021-07-01", + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01" + ], + "capabilities": "None", + "defaultApiVersion": "2022-03-01", + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "locations/spotEvictionRates", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-03-01", + "2022-11-01", + "2022-08-01", + "2022-03-01", + "2021-11-01", + "2021-07-01", + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01" + ], + "capabilities": "None", + "defaultApiVersion": "2022-03-01", + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "locations/spotPriceHistory", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-03-01", + "2022-11-01", + "2022-08-01", + "2022-03-01", + "2021-11-01", + "2021-07-01" + ], + "capabilities": "None", + "defaultApiVersion": "2022-03-01", + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "locations/recommendations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-03-30", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2017-03-30", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2017-12-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2017-12-01", + "profileVersion": "2019-03-01-hybrid" + }, + { + "apiVersion": "2020-06-01", + "profileVersion": "2020-09-01-hybrid" + } + ], + "apiVersions": [ + "2023-07-03", + "2023-07-01", + "2023-03-01", + "2022-11-01", + "2022-08-03", + "2022-08-01", + "2022-03-03", + "2022-03-01", + "2022-01-03", + "2021-11-01", + "2021-07-01", + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-09-30", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "locations/sharedGalleries", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-03-30", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2017-03-30", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2017-12-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2017-12-01", + "profileVersion": "2019-03-01-hybrid" + }, + { + "apiVersion": "2020-06-01", + "profileVersion": "2020-09-01-hybrid" + } + ], + "apiVersions": [ + "2023-07-03", + "2023-07-01", + "2023-03-01", + "2022-11-01", + "2022-08-03", + "2022-08-01", + "2022-03-03", + "2022-03-01", + "2022-01-03", + "2021-11-01", + "2021-07-01", + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-09-30", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "locations/communityGalleries", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-10-15-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2017-10-15-preview", + "locationMappings": null, + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "properties": null, + "resourceType": "sharedVMImages", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-10-15-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2017-10-15-preview", + "locationMappings": null, + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "properties": null, + "resourceType": "sharedVMImages/versions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-10-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "properties": null, + "resourceType": "locations/artifactPublishers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-03", + "2022-08-03", + "2022-03-03", + "2022-01-03", + "2021-10-01", + "2021-07-01", + "2021-03-01", + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01", + "2017-10-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "locations/capsoperations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-03", + "2022-08-03", + "2022-03-03", + "2022-01-03", + "2021-10-01", + "2021-07-01", + "2021-03-01", + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2018-06-01", + "locationMappings": null, + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "galleries", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-03", + "2022-08-03", + "2022-03-03", + "2022-01-03", + "2021-10-01", + "2021-07-01", + "2021-03-01", + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2018-06-01", + "locationMappings": null, + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "galleries/images", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-03", + "2022-08-03", + "2022-03-03", + "2022-01-03", + "2021-10-01", + "2021-07-01", + "2021-03-01", + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2018-06-01", + "locationMappings": null, + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "galleries/images/versions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-03", + "2022-08-03", + "2022-03-03", + "2022-01-03", + "2021-10-01", + "2021-07-01", + "2021-03-01", + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": "2018-06-01", + "locationMappings": null, + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "locations/galleries", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-03", + "2022-08-03", + "2022-03-03", + "2022-01-03", + "2021-10-01", + "2021-07-01", + "2021-03-01", + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2019-03-01", + "locationMappings": null, + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "galleries/applications", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-03", + "2022-08-03", + "2022-03-03", + "2022-01-03", + "2021-10-01", + "2021-07-01", + "2021-03-01", + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2019-03-01", + "locationMappings": null, + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "galleries/applications/versions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-03-30", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-04-02", + "2023-01-02", + "2022-07-02", + "2022-03-02", + "2021-12-01", + "2021-08-01", + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-03-02", + "locationMappings": null, + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "disks", + "zoneMappings": [ + { + "location": "Australia East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Central India", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East Asia", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Korea Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Norway East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Poland Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Qatar Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "South Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Sweden Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Switzerland North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "UAE North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 3", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Israel Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Italy North", + "zones": [ + "1", + "2", + "3" + ] + } + ] + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-03-30", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-04-02", + "2023-01-02", + "2022-07-02", + "2022-03-02", + "2021-12-01", + "2021-08-01", + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-03-02", + "locationMappings": null, + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "snapshots", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-03-30", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-04-02", + "2023-01-02", + "2022-07-02", + "2022-03-02", + "2021-12-01", + "2021-08-01", + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "locations/diskoperations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-02", + "2023-01-02", + "2022-07-02", + "2022-03-02", + "2021-12-01", + "2021-08-01", + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-03-02", + "locationMappings": null, + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "diskEncryptionSets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-02", + "2023-01-02", + "2022-07-02", + "2022-03-02", + "2021-12-01", + "2021-08-01", + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-03-02", + "locationMappings": null, + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "diskAccesses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-02", + "2023-01-02", + "2022-07-02", + "2022-03-02", + "2021-12-01", + "2021-08-01", + "2021-04-01", + "2020-12-01", + "2020-09-30" + ], + "capabilities": "None", + "defaultApiVersion": "2022-03-02", + "locationMappings": null, + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "restorePointCollections/restorePoints/diskRestorePoints", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-03-30", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-04-02", + "2023-01-02", + "2022-07-02", + "2022-03-02", + "2021-12-01", + "2021-08-01", + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2022-03-02", + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "virtualMachineScaleSets/disks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-04", + "2022-04-04", + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2021-03-01", + "locationMappings": null, + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "cloudServices", + "zoneMappings": [ + { + "location": "Australia East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Central India", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East Asia", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Korea Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Norway East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Poland Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Qatar Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "South Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Sweden Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Switzerland North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "UAE North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 3", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Israel Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Italy North", + "zones": [ + "1", + "2", + "3" + ] + } + ] + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-04", + "2022-04-04", + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-03-01", + "locationMappings": null, + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "cloudServices/roles", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-04", + "2022-04-04", + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-03-01", + "locationMappings": null, + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "cloudServices/roleInstances", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-04", + "2022-04-04", + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "locations/csoperations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-04", + "2022-04-04", + "2021-03-01" + ], + "capabilities": "None", + "defaultApiVersion": "2021-03-01", + "locationMappings": null, + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "locations/cloudServiceOsVersions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-04", + "2022-04-04", + "2021-03-01" + ], + "capabilities": "None", + "defaultApiVersion": "2021-03-01", + "locationMappings": null, + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "locations/cloudServiceOsFamilies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "cloudServices/networkInterfaces", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "cloudServices/roleInstances/networkInterfaces", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "cloudServices/publicIPAddresses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-03-30", + "profileVersion": "2017-03-09-profile" + }, + { + "apiVersion": "2017-03-30", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2017-12-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2017-12-01", + "profileVersion": "2019-03-01-hybrid" + }, + { + "apiVersion": "2020-06-01", + "profileVersion": "2020-09-01-hybrid" + } + ], + "apiVersions": [ + "2023-07-01", + "2023-03-01", + "2022-11-01", + "2022-08-01", + "2022-03-01", + "2021-11-01", + "2021-07-01", + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2022-03-01", + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "locations/usages", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-03-30", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2018-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-07-01", + "2023-03-01", + "2022-11-01", + "2022-08-01", + "2022-03-01", + "2021-11-01", + "2021-07-01", + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-03-01", + "locationMappings": null, + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "images", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-06-01-preview", + "locationMappings": null, + "locations": [ + "West Central US", + "Southeast Asia", + "East US 2", + "East US", + "South Central US", + "West Europe", + "North Europe", + "West US 2", + "UK South", + "Australia East", + "South India", + "Central India", + "West India", + "Korea Central", + "Korea South", + "Jio India West", + "Japan West", + "Japan East", + "East Asia", + "Canada Central", + "Canada East", + "South Africa North", + "Central US", + "West US 3", + "West US", + "UK West", + "France Central", + "UAE North", + "Australia Central", + "Australia Southeast", + "Switzerland North", + "Germany West Central", + "Norway East", + "North Central US", + "Brazil South", + "Sweden Central" + ], + "properties": null, + "resourceType": "locations/diagnostics", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-06-01-preview", + "locationMappings": null, + "locations": [ + "West Central US", + "Southeast Asia", + "East US 2", + "East US", + "South Central US", + "West Europe", + "North Europe", + "West US 2", + "UK South", + "Australia East", + "South India", + "Central India", + "West India", + "Korea Central", + "Korea South", + "Jio India West", + "Japan West", + "Japan East", + "East Asia", + "Canada Central", + "Canada East", + "South Africa North", + "Central US", + "West US 3", + "West US", + "UK West", + "France Central", + "UAE North", + "Australia Central", + "Australia Southeast", + "Switzerland North", + "Germany West Central", + "Norway East", + "North Central US", + "Brazil South", + "Sweden Central" + ], + "properties": null, + "resourceType": "locations/diagnosticOperations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-03-01", + "2022-11-01", + "2022-08-01", + "2022-03-01", + "2021-11-01", + "2021-07-01", + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "locations/logAnalytics", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-03-01", + "2022-11-01", + "2022-08-01", + "2022-03-01", + "2021-11-01", + "2021-07-01", + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-03-01", + "locationMappings": null, + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "hostGroups", + "zoneMappings": [ + { + "location": "Australia East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Central India", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East Asia", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Korea Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Norway East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Poland Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Qatar Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "South Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Sweden Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Switzerland North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "UAE North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 3", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Israel Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Italy North", + "zones": [ + "1", + "2", + "3" + ] + } + ] + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-03-01", + "2022-11-01", + "2022-08-01", + "2022-03-01", + "2021-11-01", + "2021-07-01", + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-03-01", + "locationMappings": null, + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "hostGroups/hosts", + "zoneMappings": [ + { + "location": "Australia East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Central India", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East Asia", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Korea Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Norway East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Poland Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Qatar Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "South Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Sweden Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Switzerland North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "UAE North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 3", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Israel Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Italy North", + "zones": [ + "1", + "2", + "3" + ] + } + ] + } + ] + }, + { + "authorizations": [ + { + "applicationId": "4353526e-1c33-4fcf-9e82-9683edf52848" + }, + { + "applicationId": "c9e0b461-3515-4a03-b576-ede91ed4336d" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.ConfidentialLedger", + "namespace": "Microsoft.ConfidentialLedger", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-26-preview", + "2022-09-08-preview", + "2022-05-13", + "2021-05-13-preview", + "2020-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "Locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-26-preview", + "2022-09-08-preview", + "2022-05-13", + "2021-05-13-preview", + "2020-12-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "West Europe", + "Japan East", + "Australia East" + ], + "properties": null, + "resourceType": "Ledgers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-26-preview", + "2022-09-08-preview", + "2022-05-13", + "2021-05-13-preview", + "2020-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2022-05-13", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-05-13", + "2021-05-13-preview", + "2020-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Locations/operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-26-preview", + "2022-09-08-preview", + "2022-05-13", + "2021-05-13-preview", + "2020-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US 2 EUAP", + "East US", + "South Central US", + "West Europe" + ], + "properties": null, + "resourceType": "Locations/operationstatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-26-preview", + "2022-09-08-preview", + "2022-05-13", + "2021-05-13-preview", + "2020-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "1448fd13-7e74-41f4-b6e3-17e485d8ac2e", + "roleDefinitionId": "4db34280-b0be-4827-aa5b-418391409cee" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Confluent", + "namespace": "Microsoft.Confluent", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-22", + "2023-07-11-preview", + "2023-02-09-preview", + "2022-10-07-preview", + "2022-07-21-preview", + "2022-04-10-preview", + "2021-12-01", + "2021-09-01-preview", + "2021-03-01-preview", + "2020-03-01-preview", + "2020-03-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-22", + "2023-07-11-preview", + "2023-02-09-preview", + "2022-10-07-preview", + "2022-07-21-preview", + "2022-04-10-preview", + "2021-12-01", + "2021-09-01-preview", + "2021-03-01-preview", + "2020-03-01-preview", + "2020-03-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-22", + "2023-07-11-preview", + "2023-02-09-preview", + "2022-10-07-preview", + "2022-07-21-preview", + "2022-04-10-preview", + "2021-12-01", + "2021-09-01-preview", + "2021-03-01-preview", + "2020-03-01-preview", + "2020-03-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "West US 3", + "East US 2 EUAP", + "West Central US", + "Australia East", + "Japan East", + "South Africa North", + "Brazil South", + "Germany West Central", + "Sweden Central", + "Switzerland North", + "Norway East", + "South Central US", + "France Central", + "Canada Central", + "East US", + "UK South", + "West Europe", + "Central US", + "East US 2", + "North Europe", + "Southeast Asia", + "East Asia", + "Central India", + "Korea Central", + "Qatar Central", + "UAE North", + "Central US EUAP" + ], + "properties": null, + "resourceType": "locations/OperationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-22", + "2023-07-11-preview", + "2023-02-09-preview", + "2022-10-07-preview", + "2022-07-21-preview", + "2022-04-10-preview", + "2021-12-01", + "2021-09-01-preview", + "2021-03-01-preview", + "2020-03-01-preview", + "2020-03-01" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "West US 3", + "South Central US", + "Brazil South", + "West Central US", + "Australia East", + "Japan East", + "Switzerland North", + "France Central", + "Canada Central", + "East US", + "UK South", + "West Europe", + "South Africa North", + "Germany West Central", + "Central US", + "East US 2", + "North Europe", + "Sweden Central", + "Norway East", + "Southeast Asia", + "East Asia", + "Central India", + "Korea Central", + "Qatar Central", + "UAE North" + ], + "properties": null, + "resourceType": "organizations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-22", + "2023-07-11-preview", + "2023-02-09-preview", + "2022-10-07-preview", + "2022-07-21-preview", + "2022-04-10-preview", + "2021-12-01", + "2021-09-01-preview", + "2021-03-01-preview", + "2020-03-01-preview", + "2020-03-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-22", + "2023-07-11-preview", + "2023-02-09-preview", + "2022-10-07-preview", + "2022-07-21-preview", + "2022-04-10-preview", + "2021-12-01", + "2021-09-01-preview", + "2021-03-01-preview", + "2020-03-01-preview", + "2020-03-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "agreements", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-22", + "2023-07-11-preview", + "2023-02-09-preview", + "2022-10-07-preview", + "2022-07-21-preview", + "2022-04-10-preview", + "2021-12-01", + "2021-09-01-preview", + "2021-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "validations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-22", + "2023-07-11-preview", + "2023-02-09-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "West US 3", + "South Central US", + "Brazil South", + "West Central US", + "Australia East", + "Japan East", + "France Central", + "Canada Central", + "East US", + "UK South", + "West Europe", + "South Africa North", + "Germany West Central", + "Central US", + "East US 2", + "North Europe", + "Sweden Central", + "Switzerland North", + "Norway East", + "Southeast Asia", + "East Asia", + "Central India", + "Korea Central", + "Qatar Central", + "UAE North" + ], + "properties": null, + "resourceType": "organizations/access", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "74e6a066-dc08-4f09-b7db-63671913f210", + "roleDefinitionId": "e9f2a118-4c69-4bf5-bda9-fd47ae0f79ea" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.ConnectedCache", + "namespace": "Microsoft.ConnectedCache", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-09-15-preview", + "2019-12-04-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "West Central US" + ], + "properties": null, + "resourceType": "cacheNodes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-09-15-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "West Central US" + ], + "properties": null, + "resourceType": "enterpriseCustomers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview", + "2022-03-21-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview", + "2022-03-21-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview", + "2022-03-21-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "North Europe", + "Korea Central" + ], + "properties": null, + "resourceType": "locations/operationstatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview", + "2022-03-21-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "North Europe", + "Korea Central" + ], + "properties": null, + "resourceType": "ispCustomers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview", + "2022-03-21-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "North Europe", + "Korea Central" + ], + "properties": null, + "resourceType": "ispCustomers/ispcachenodes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "North Europe", + "Korea Central" + ], + "properties": null, + "resourceType": "enterpriseMccCustomers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "North Europe", + "Korea Central" + ], + "properties": null, + "resourceType": "enterpriseMccCustomers/enterpriseMccCacheNodes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2023-04-01-preview", + "2022-03-21-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "registeredSubscriptions", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "319f651f-7ddb-4fc6-9857-7aef9250bd05", + "roleDefinitionId": "2573d829-44d3-4e8e-80e7-599224bf91f3" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.ConnectedCredentials", + "namespace": "Microsoft.ConnectedCredentials", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-12-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-12-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Korea Central", + "Southeast Asia", + "Japan East", + "Central US", + "West US 2", + "West Europe", + "North Europe", + "UK South", + "Canada Central", + "Australia East", + "France Central" + ], + "properties": null, + "resourceType": "locations/operationstatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-12-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Southeast Asia", + "Korea Central", + "Japan East", + "Central US", + "West US 2", + "West Europe", + "North Europe", + "UK South", + "Canada Central", + "Australia East", + "France Central" + ], + "properties": null, + "resourceType": "credentials", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-12-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "432d3ac8-d6b9-43b9-9ef5-236ea50a049a" + }, + { + "applicationId": "319f651f-7ddb-4fc6-9857-7aef9250bd05", + "roleDefinitionId": "eb6576d5-8a8b-42a5-9bcb-f68dd99e6db8" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/microsoft.connectedopenstack", + "namespace": "microsoft.connectedopenstack", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-05-31-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-05-31-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-05-31-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US 2 EUAP", + "East US", + "West Europe" + ], + "properties": null, + "resourceType": "locations/operationStatuses", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "070fc472-7cef-4d53-9b65-34464c4d5f4a", + "roleDefinitionId": "d9be9a0d-13a3-4571-9428-498be31834b1" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.ConnectedVehicle", + "namespace": "Microsoft.ConnectedVehicle", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "West Europe", + "East US", + "North Europe" + ], + "properties": null, + "resourceType": "Locations/OperationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "registeredSubscriptions", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "ac9dc5fe-b644-4832-9d03-d9f1ab70c5f7", + "roleDefinitionId": "a27a5b7c-3d1a-4e97-b0ad-195eef808eb6" + }, + { + "applicationId": "157638eb-a5cb-4c10-af42-2d6759eb1871", + "roleDefinitionId": "59a59e1d-c18a-4c7c-8a99-2b5b311f08d2" + }, + { + "applicationId": "d2a590e7-6906-4a45-8f41-cecfdca9bca1", + "roleDefinitionId": "59a59e1d-c18a-4c7c-8a99-2b5b311f08d2" + }, + { + "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", + "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" + }, + { + "applicationId": "8c420feb-03df-47cc-8a05-55df0cf3064b", + "roleDefinitionId": "24686d2b-8862-4f7f-bde4-7fa81942fcfc" + }, + { + "applicationId": "c8f5141d-83e0-4e9a-84d0-bb6677e26f64", + "roleDefinitionId": "b9872c82-72dd-402b-add5-f99a58f990da" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.ConnectedVMwarevSphere", + "namespace": "Microsoft.ConnectedVMwarevSphere", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-10-01", + "2023-03-01-preview", + "2022-07-15-preview", + "2022-01-10-preview", + "2020-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-10-01", + "2023-03-01-preview", + "2022-07-15-preview", + "2022-01-10-preview", + "2020-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2 EUAP", + "West Europe", + "Australia East", + "Canada Central", + "Southeast Asia", + "UK South", + "North Europe", + "South Central US", + "East US 2", + "West US 2", + "West US 3", + "Sweden Central" + ], + "properties": null, + "resourceType": "locations/operationstatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01-preview", + "2022-07-15-preview", + "2022-01-10-preview", + "2020-10-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Australia East", + "Canada Central", + "Southeast Asia", + "UK South", + "North Europe", + "East US 2", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "VCenters", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01-preview", + "2022-07-15-preview", + "2022-01-10-preview", + "2020-10-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Australia East", + "Canada Central", + "Southeast Asia", + "UK South", + "North Europe", + "East US 2", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "resourcepools", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01-preview", + "2022-07-15-preview", + "2022-01-10-preview", + "2020-10-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Australia East", + "Canada Central", + "Southeast Asia", + "UK South", + "North Europe", + "East US 2", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "virtualnetworks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01-preview", + "2022-07-15-preview", + "2022-01-10-preview", + "2020-10-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Australia East", + "Canada Central", + "Southeast Asia", + "UK South", + "North Europe", + "East US 2", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "virtualmachinetemplates", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-10-01", + "2023-03-01-preview", + "2022-07-15-preview", + "2022-01-10-preview", + "2020-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01-preview", + "2022-07-15-preview", + "2022-01-10-preview", + "2020-10-01-preview" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Australia East", + "Canada Central", + "Southeast Asia", + "UK South", + "North Europe", + "East US 2", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "virtualmachines", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01-preview", + "2022-07-15-preview", + "2022-01-10-preview", + "2020-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Australia East", + "Canada Central", + "Southeast Asia", + "UK South", + "North Europe", + "East US 2", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "vcenters/inventoryitems", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01-preview", + "2022-07-15-preview", + "2022-01-10-preview", + "2020-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Australia East", + "Canada Central", + "Southeast Asia", + "UK South", + "North Europe", + "East US 2", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "virtualmachines/hybrididentitymetadata", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01-preview", + "2022-07-15-preview", + "2022-01-10-preview", + "2020-10-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Australia East", + "Canada Central", + "Southeast Asia", + "UK South", + "North Europe", + "East US 2", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "virtualmachines/extensions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01-preview", + "2022-07-15-preview", + "2022-01-10-preview", + "2020-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Australia East", + "Canada Central", + "Southeast Asia", + "UK South", + "North Europe", + "East US 2", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "virtualmachines/guestagents", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01-preview", + "2022-07-15-preview", + "2022-01-10-preview", + "2020-10-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Australia East", + "Canada Central", + "Southeast Asia", + "UK South", + "North Europe", + "East US 2", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "clusters", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01-preview", + "2022-07-15-preview", + "2022-01-10-preview", + "2020-10-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Australia East", + "Canada Central", + "Southeast Asia", + "UK South", + "North Europe", + "East US 2", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "datastores", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01-preview", + "2022-07-15-preview", + "2022-01-10-preview", + "2020-10-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Australia East", + "Canada Central", + "Southeast Asia", + "UK South", + "North Europe", + "East US 2", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "hosts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Australia East", + "Canada Central", + "Southeast Asia", + "UK South", + "North Europe", + "East US 2", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "virtualmachineinstances", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "c5b17a4f-cc6f-4649-9480-684280a2af3a", + "roleDefinitionId": "4a2e6ae9-2713-4cc9-a3b3-312899d687c3" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Consumption", + "namespace": "Microsoft.Consumption", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationFree", + "registrationState": "Registered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2023-03-01", + "2019-10-01", + "2019-05-01", + "2019-01-01", + "2018-10-01", + "2018-08-31", + "2018-06-30", + "2018-05-31" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Forecasts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2023-03-01", + "2021-10-01", + "2019-10-01", + "2019-05-01", + "2019-01-01", + "2018-10-01", + "2018-08-31", + "2018-06-30" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "AggregatedCost", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2023-03-01", + "2021-10-01", + "2019-10-01", + "2019-05-01", + "2019-01-01", + "2018-10-01" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "tenants", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2023-03-01", + "2021-10-01", + "2019-10-01", + "2019-05-01", + "2019-01-01-preview", + "2019-01-01", + "2018-10-01", + "2018-08-31", + "2018-06-30", + "2018-03-31" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "ReservationRecommendations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2023-03-01", + "2021-10-01", + "2019-10-01" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "ReservationRecommendationDetails", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2023-03-01", + "2021-10-01", + "2019-10-01", + "2019-05-01", + "2019-01-01-preview", + "2019-01-01", + "2018-10-01", + "2018-08-31", + "2018-06-30", + "2018-03-31", + "2018-01-31", + "2017-11-30", + "2017-06-30-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "ReservationSummaries", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2023-03-01", + "2021-10-01", + "2019-10-01", + "2019-05-01", + "2019-01-01", + "2018-10-01", + "2018-08-31", + "2018-06-30", + "2018-05-31", + "2018-03-31", + "2018-01-31", + "2017-11-30", + "2017-06-30-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "ReservationTransactions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2023-03-01", + "2022-09-01", + "2021-10-01", + "2019-10-01", + "2019-05-01", + "2019-01-01", + "2018-10-01", + "2018-08-31", + "2018-06-30", + "2018-05-31", + "2018-03-31", + "2018-01-31", + "2017-11-30", + "2017-06-30-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Balances", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2023-03-01", + "2021-10-01", + "2019-10-01", + "2019-05-01", + "2019-01-01", + "2018-10-01", + "2018-08-31", + "2018-06-30", + "2018-05-31", + "2018-03-31", + "2018-01-31" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Marketplaces", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2023-03-01", + "2022-06-01", + "2021-10-01", + "2020-01-01-preview", + "2019-10-01", + "2019-05-01", + "2019-01-01", + "2018-10-01", + "2018-08-31", + "2018-06-30", + "2018-05-31", + "2018-03-31", + "2018-01-31", + "2017-11-30", + "2017-06-30-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Pricesheets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2023-03-01", + "2021-10-01", + "2019-10-01", + "2019-05-01", + "2019-01-01-preview", + "2019-01-01", + "2018-10-01", + "2018-08-31", + "2018-06-30", + "2018-03-31", + "2018-01-31", + "2017-11-30", + "2017-06-30-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "ReservationDetails", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2023-03-01", + "2021-10-01", + "2019-10-01", + "2019-05-01", + "2019-04-01-preview", + "2019-03-01-preview", + "2019-01-01-preview", + "2019-01-01", + "2018-12-01-preview", + "2018-10-01", + "2018-08-31", + "2018-06-30", + "2018-03-31", + "2018-01-31", + "2017-12-30-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Budgets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2023-03-01", + "2021-10-01", + "2019-11-01", + "2019-10-01", + "2019-05-01", + "2018-10-01", + "2018-08-31", + "2018-06-30", + "2018-05-31", + "2018-03-31" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "CostTags", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2023-03-01", + "2021-10-01", + "2019-11-01", + "2019-10-01", + "2019-05-01", + "2019-04-01-preview", + "2019-03-01-preview", + "2019-01-01", + "2018-12-01-preview", + "2018-10-01", + "2018-08-31", + "2018-08-01-preview", + "2018-06-30", + "2018-05-31", + "2018-03-31" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Tags", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2023-03-01", + "2021-10-01", + "2019-10-01", + "2019-05-01", + "2019-01-01", + "2018-10-01", + "2018-08-31", + "2018-06-30", + "2018-03-31", + "2018-01-31", + "2017-12-30-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Terms", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2023-03-01", + "2021-10-01", + "2021-01-01", + "2019-11-01", + "2019-10-01", + "2019-05-01-preview", + "2019-05-01", + "2019-04-01-preview", + "2019-01-01", + "2018-12-01-preview", + "2018-11-01-preview", + "2018-10-01", + "2018-08-31", + "2018-06-30", + "2018-05-31", + "2018-03-31", + "2018-01-31", + "2017-11-30", + "2017-06-30-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "UsageDetails", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2023-03-01", + "2021-10-01", + "2019-10-01", + "2019-05-01-preview", + "2019-05-01", + "2019-01-01", + "2018-11-01-preview", + "2018-10-01", + "2018-08-31" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Charges", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2023-03-01", + "2021-10-01", + "2021-05-01", + "2019-10-01", + "2018-11-01-preview", + "2018-10-01", + "2018-08-31" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "credits", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2023-03-01", + "2021-10-01", + "2021-05-01", + "2019-10-01", + "2018-11-01-preview", + "2018-10-01", + "2018-08-31" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "events", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2023-03-01", + "2021-10-01", + "2021-05-01", + "2019-10-01", + "2018-11-01-preview", + "2018-10-01", + "2018-08-31" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "lots", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2023-03-01", + "2021-10-01", + "2019-10-01", + "2018-10-01", + "2018-08-31" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "products", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2023-03-01", + "2022-09-01", + "2022-06-01", + "2021-10-01", + "2021-01-01", + "2019-11-01", + "2019-10-01", + "2019-05-01-preview", + "2019-05-01", + "2019-04-01-preview", + "2019-01-01", + "2018-11-01-preview", + "2018-10-01", + "2018-08-31" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "OperationStatus", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2023-03-01", + "2022-06-01", + "2021-10-01", + "2021-01-01", + "2019-11-01", + "2019-10-01", + "2019-05-01-preview", + "2019-05-01", + "2019-04-01-preview", + "2019-01-01", + "2018-11-01-preview", + "2018-10-01", + "2018-08-31" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "OperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2023-03-01", + "2022-06-01", + "2021-10-01", + "2019-10-01", + "2019-05-01", + "2019-01-01", + "2018-11-01-preview", + "2018-10-01", + "2018-08-31", + "2018-08-01-preview", + "2018-06-30", + "2018-05-31", + "2018-03-31", + "2018-01-31", + "2017-11-30", + "2017-06-30-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "6bb8e274-af5d-4df2-98a3-4fd78b4cafd9", + "roleDefinitionId": "3c60422b-a83a-428d-9830-22609c77aa6c" + }, + { + "applicationId": "63ea3c01-7483-456e-8073-d3fed34fbdda", + "roleDefinitionId": "bafbada8-7822-4049-a4d7-4a3f19fa394b" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.ContainerInstance", + "namespace": "Microsoft.ContainerInstance", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-15-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-10-01-preview", + "2022-09-01", + "2022-04-01-preview", + "2021-10-01", + "2021-09-01", + "2021-07-01", + "2021-03-01", + "2020-11-01", + "2019-12-01", + "2018-10-01", + "2018-09-01", + "2018-07-01", + "2018-06-01", + "2018-04-01", + "2018-02-01-preview", + "2017-12-01-preview", + "2017-10-01-preview", + "2017-08-01-preview" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Africa West", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "containerGroups", + "zoneMappings": [ + { + "location": "Australia East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Central India", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East Asia", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Korea Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Norway East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Poland Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Qatar Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "South Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Sweden Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Switzerland North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "UAE North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 3", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Israel Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Italy North", + "zones": [ + "1", + "2", + "3" + ] + } + ] + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-15-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-10-01-preview", + "2022-09-01", + "2022-04-01-preview", + "2021-10-01", + "2021-09-01", + "2021-07-01", + "2021-03-01", + "2020-11-01", + "2019-12-01", + "2018-10-01", + "2018-09-01", + "2018-07-01", + "2018-06-01", + "2018-04-01", + "2018-02-01-preview", + "2017-12-01-preview", + "2017-10-01-preview", + "2017-08-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Africa West", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "serviceAssociationLinks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-15-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-10-01-preview", + "2022-09-01", + "2022-04-01-preview", + "2021-10-01", + "2021-09-01", + "2021-07-01", + "2021-03-01", + "2020-11-01", + "2019-12-01", + "2018-10-01", + "2018-09-01", + "2018-07-01", + "2018-06-01", + "2018-04-01", + "2018-02-01-preview", + "2017-12-01-preview", + "2017-10-01-preview", + "2017-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-15-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-10-01-preview", + "2022-09-01", + "2022-04-01-preview", + "2021-10-01", + "2021-09-01", + "2021-07-01", + "2021-03-01", + "2020-11-01", + "2019-12-01", + "2018-10-01", + "2018-09-01", + "2018-07-01", + "2018-06-01", + "2018-04-01", + "2018-02-01-preview", + "2017-12-01-preview", + "2017-10-01-preview", + "2017-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Africa West", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/capabilities", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-15-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-10-01-preview", + "2022-09-01", + "2022-04-01-preview", + "2021-10-01", + "2021-09-01", + "2021-07-01", + "2021-03-01", + "2020-11-01", + "2019-12-01", + "2018-10-01", + "2018-09-01", + "2018-07-01", + "2018-06-01", + "2018-04-01", + "2018-02-01-preview", + "2017-12-01-preview", + "2017-10-01-preview", + "2017-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Africa West", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/usages", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-15-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-10-01-preview", + "2022-09-01", + "2022-04-01-preview", + "2021-10-01", + "2021-09-01", + "2021-07-01", + "2021-03-01", + "2020-11-01", + "2019-12-01", + "2018-10-01", + "2018-09-01", + "2018-07-01", + "2018-06-01", + "2018-04-01", + "2018-02-01-preview", + "2017-12-01-preview", + "2017-10-01-preview", + "2017-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Africa West", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-15-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-10-01-preview", + "2022-09-01", + "2022-04-01-preview", + "2021-10-01", + "2021-09-01", + "2021-07-01", + "2021-03-01", + "2020-11-01", + "2019-12-01", + "2018-10-01", + "2018-09-01", + "2018-07-01", + "2018-06-01", + "2018-04-01", + "2018-02-01-preview", + "2017-12-01-preview", + "2017-10-01-preview", + "2017-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Africa West", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/operationresults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-15-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-10-01-preview", + "2022-09-01", + "2022-04-01-preview", + "2021-10-01", + "2021-09-01", + "2021-07-01", + "2021-03-01", + "2020-11-01", + "2019-12-01", + "2018-10-01", + "2018-09-01", + "2018-07-01", + "2018-06-01", + "2018-04-01", + "2018-02-01-preview", + "2017-12-01-preview", + "2017-10-01-preview", + "2017-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-15-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-10-01-preview", + "2022-09-01", + "2022-04-01-preview", + "2021-10-01", + "2021-09-01", + "2021-07-01", + "2021-03-01", + "2020-11-01", + "2019-12-01", + "2018-10-01", + "2018-09-01", + "2018-07-01", + "2018-06-01", + "2018-04-01", + "2018-02-01-preview", + "2017-12-01-preview", + "2017-10-01-preview", + "2017-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Africa West", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/cachedImages", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-15-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-10-01-preview", + "2022-09-01", + "2022-04-01-preview", + "2021-10-01", + "2021-09-01", + "2021-07-01", + "2021-03-01", + "2020-11-01", + "2019-12-01", + "2018-12-01", + "2018-10-01", + "2018-09-01", + "2018-07-01", + "2018-06-01", + "2018-04-01", + "2018-02-01-preview", + "2017-12-01-preview", + "2017-10-01-preview", + "2017-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Africa West", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/validateDeleteVirtualNetworkOrSubnets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-15-preview", + "2023-05-01", + "2023-02-01-preview", + "2022-10-01-preview", + "2022-09-01", + "2022-04-01-preview", + "2021-10-01", + "2021-09-01", + "2021-07-01", + "2021-03-01", + "2020-11-01", + "2019-12-01", + "2018-12-01", + "2018-10-01", + "2018-09-01", + "2018-07-01", + "2018-06-01", + "2018-04-01", + "2018-02-01-preview", + "2017-12-01-preview", + "2017-10-01-preview", + "2017-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Africa West", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/deleteVirtualNetworkOrSubnets", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26", + "roleDefinitionId": "78e18383-93eb-418a-9887-bc9271046576" + }, + { + "applicationId": "737d58c1-397a-46e7-9d12-7d8c830883c2", + "roleDefinitionId": "716bb53a-0390-4428-bf41-b1bedde7d751" + }, + { + "applicationId": "918d0db8-4a38-4938-93c1-9313bdfe0272", + "roleDefinitionId": "dcd2d2c9-3f80-4d72-95a8-2593111b4b12" + }, + { + "applicationId": "d2fa1650-4805-4a83-bcb9-cf41fe63539c", + "roleDefinitionId": "c15f8dab-b103-4f8d-9afb-fbe4b8e98de2" + }, + { + "applicationId": "a4c95b9e-3994-40cc-8953-5dc66d48348d", + "roleDefinitionId": "dc88c655-90fa-48d9-8d51-003cc8738508" + }, + { + "applicationId": "62c559cd-db0c-4da0-bab2-972528c65d42", + "roleDefinitionId": "437b639a-6d74-491d-959f-d172e8c5c1fc" + }, + { + "applicationId": "a3747411-ce7c-4888-9ddc-3a230786ca19", + "roleDefinitionId": "b29ead14-d6d9-4957-bdf1-494b07fe2e87" + }, + { + "applicationId": "76c92352-c057-4cc2-9b1e-f34c32bc58bd" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.ContainerRegistry", + "namespace": "Microsoft.ContainerRegistry", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01", + "2023-06-01-preview", + "2023-01-01-preview", + "2022-12-01", + "2022-02-01-preview", + "2021-12-01-preview", + "2021-09-01", + "2021-08-01-preview", + "2021-06-01-preview", + "2020-11-01-preview", + "2019-12-01-preview", + "2019-05-01", + "2017-10-01", + "2017-03-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "South Central US", + "West Europe", + "North Europe", + "UK South", + "UK West", + "Australia East", + "Australia Southeast", + "Central India", + "Korea Central", + "France Central", + "South Africa North", + "UAE North", + "East Asia", + "Japan East", + "Japan West", + "Southeast Asia", + "South India", + "Brazil South", + "Canada East", + "Canada Central", + "Central US", + "East US 2", + "North Central US", + "West Central US", + "West US 2", + "Switzerland North", + "UAE Central", + "Switzerland West", + "Germany West Central", + "Brazil Southeast", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "registries", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01", + "2023-06-01-preview", + "2023-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "South Central US", + "West Europe", + "North Europe", + "UK South", + "UK West", + "Australia East", + "Australia Southeast", + "Central India", + "East Asia", + "Japan East", + "Japan West", + "Southeast Asia", + "South India", + "Brazil South", + "Canada East", + "Canada Central", + "Central US", + "East US 2", + "North Central US", + "West Central US", + "West US 2", + "Korea Central", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "UAE Central", + "Switzerland West", + "Germany West Central", + "Brazil Southeast", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "registries/cacheRules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01", + "2023-06-01-preview", + "2023-01-01-preview" + ], + "capabilities": "SystemAssignedResourceIdentity", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "South Central US", + "West Europe", + "North Europe", + "UK South", + "UK West", + "Australia East", + "Australia Southeast", + "Central India", + "East Asia", + "Japan East", + "Japan West", + "Southeast Asia", + "South India", + "Brazil South", + "Canada East", + "Canada Central", + "Central US", + "East US 2", + "North Central US", + "West Central US", + "West US 2", + "Korea Central", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "UAE Central", + "Switzerland West", + "Germany West Central", + "Brazil Southeast", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "registries/credentialSets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-01-01-preview", + "2022-02-01-preview", + "2021-12-01-preview", + "2021-08-01-preview", + "2021-06-01-preview", + "2020-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "South Central US", + "West Europe", + "North Europe", + "UK South", + "UK West", + "Australia East", + "Australia Southeast", + "Central India", + "East Asia", + "Japan East", + "Japan West", + "Southeast Asia", + "South India", + "Brazil South", + "Canada East", + "Canada Central", + "Central US", + "East US 2", + "North Central US", + "West Central US", + "West US 2", + "Korea Central", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "UAE Central", + "Switzerland West", + "Germany West Central", + "Brazil Southeast", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "registries/connectedRegistries", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-01-01-preview", + "2022-02-01-preview", + "2021-12-01-preview", + "2021-08-01-preview", + "2021-06-01-preview", + "2020-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "South Central US", + "West Europe", + "North Europe", + "UK South", + "UK West", + "Australia East", + "Australia Southeast", + "Central India", + "East Asia", + "Japan East", + "Japan West", + "Southeast Asia", + "South India", + "Brazil South", + "Canada East", + "Canada Central", + "Central US", + "East US 2", + "North Central US", + "West Central US", + "West US 2", + "Korea Central", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "UAE Central", + "Switzerland West", + "Germany West Central", + "Brazil Southeast", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "registries/connectedRegistries/deactivate", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01", + "2023-06-01-preview", + "2023-01-01-preview", + "2022-12-01", + "2022-02-01-preview", + "2021-12-01-preview", + "2021-08-01-preview", + "2021-06-01-preview", + "2020-11-01-preview", + "2019-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "South Central US", + "West Europe", + "North Europe", + "UK South", + "UK West", + "Australia East", + "Australia Southeast", + "Central India", + "East Asia", + "Japan East", + "Japan West", + "Southeast Asia", + "South India", + "Brazil South", + "Canada East", + "Canada Central", + "Central US", + "East US 2", + "North Central US", + "West Central US", + "West US 2", + "Korea Central", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "UAE Central", + "Switzerland West", + "Germany West Central", + "Brazil Southeast", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "registries/scopeMaps", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01", + "2023-06-01-preview", + "2023-01-01-preview", + "2022-12-01", + "2022-02-01-preview", + "2021-12-01-preview", + "2021-08-01-preview", + "2021-06-01-preview", + "2020-11-01-preview", + "2019-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "South Central US", + "West Europe", + "North Europe", + "UK South", + "UK West", + "Australia East", + "Australia Southeast", + "Central India", + "East Asia", + "Japan East", + "Japan West", + "Southeast Asia", + "South India", + "Brazil South", + "Canada East", + "Canada Central", + "Central US", + "East US 2", + "North Central US", + "West Central US", + "West US 2", + "Korea Central", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "UAE Central", + "Switzerland West", + "Germany West Central", + "Brazil Southeast", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "registries/tokens", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01", + "2023-06-01-preview", + "2023-01-01-preview", + "2022-12-01", + "2022-02-01-preview", + "2021-12-01-preview", + "2021-08-01-preview", + "2021-06-01-preview", + "2020-11-01-preview", + "2019-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "South Central US", + "West Europe", + "North Europe", + "UK South", + "UK West", + "Australia East", + "Australia Southeast", + "Central India", + "East Asia", + "Japan East", + "Japan West", + "Southeast Asia", + "South India", + "Brazil South", + "Canada East", + "Canada Central", + "Central US", + "East US 2", + "North Central US", + "West Central US", + "West US 2", + "Korea Central", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "UAE Central", + "Switzerland West", + "Germany West Central", + "Brazil Southeast", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "registries/generateCredentials", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01", + "2023-06-01-preview", + "2023-01-01-preview", + "2022-12-01", + "2022-02-01-preview", + "2021-12-01-preview", + "2021-09-01", + "2021-08-01-preview", + "2021-06-01-preview", + "2020-11-01-preview", + "2019-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "South Central US", + "West Europe", + "Switzerland North", + "North Europe", + "UK South", + "UK West", + "Australia East", + "Australia Southeast", + "Central India", + "East Asia", + "Japan East", + "Japan West", + "Southeast Asia", + "South India", + "Brazil South", + "Canada East", + "Canada Central", + "Central US", + "East US 2", + "North Central US", + "West Central US", + "West US 2", + "Korea Central", + "France Central", + "South Africa North", + "UAE North", + "UAE Central", + "Switzerland West", + "Germany West Central", + "Brazil Southeast", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "registries/privateEndpointConnections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01", + "2023-06-01-preview", + "2023-01-01-preview", + "2022-12-01", + "2022-02-01-preview", + "2021-12-01-preview", + "2021-09-01", + "2021-08-01-preview", + "2021-06-01-preview", + "2020-11-01-preview", + "2019-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "South Central US", + "West Europe", + "Switzerland North", + "North Europe", + "UK South", + "UK West", + "Australia East", + "Australia Southeast", + "Central India", + "East Asia", + "Japan East", + "Japan West", + "Southeast Asia", + "South India", + "Brazil South", + "Canada East", + "Canada Central", + "Central US", + "East US 2", + "North Central US", + "West Central US", + "West US 2", + "Korea Central", + "France Central", + "South Africa North", + "UAE North", + "UAE Central", + "Switzerland West", + "Germany West Central", + "Brazil Southeast", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "registries/privateEndpointConnectionProxies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01", + "2023-06-01-preview", + "2023-01-01-preview", + "2022-12-01", + "2022-02-01-preview", + "2021-12-01-preview", + "2021-09-01", + "2021-08-01-preview", + "2021-06-01-preview", + "2020-11-01-preview", + "2019-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "South Central US", + "West Europe", + "Switzerland North", + "North Europe", + "UK South", + "UK West", + "Australia East", + "Australia Southeast", + "Central India", + "East Asia", + "Japan East", + "Japan West", + "Southeast Asia", + "South India", + "Brazil South", + "Canada East", + "Canada Central", + "Central US", + "East US 2", + "North Central US", + "West Central US", + "West US 2", + "Korea Central", + "France Central", + "South Africa North", + "UAE North", + "UAE Central", + "Switzerland West", + "Germany West Central", + "Brazil Southeast", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "registries/privateEndpointConnectionProxies/validate", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01", + "2023-06-01-preview", + "2023-01-01-preview", + "2022-12-01", + "2022-02-01-preview", + "2021-12-01-preview", + "2021-09-01", + "2021-08-01-preview", + "2021-06-01-preview", + "2020-11-01-preview", + "2019-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "South Central US", + "West Europe", + "Switzerland North", + "North Europe", + "UK South", + "UK West", + "Australia East", + "Australia Southeast", + "Central India", + "East Asia", + "Japan East", + "Japan West", + "Southeast Asia", + "South India", + "Brazil South", + "Canada East", + "Canada Central", + "Central US", + "East US 2", + "North Central US", + "West Central US", + "West US 2", + "Korea Central", + "France Central", + "South Africa North", + "UAE North", + "UAE Central", + "Switzerland West", + "Germany West Central", + "Brazil Southeast", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "registries/privateLinkResources", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01", + "2023-06-01-preview", + "2023-01-01-preview", + "2022-12-01", + "2022-02-01-preview", + "2021-12-01-preview", + "2021-09-01", + "2021-08-01-preview", + "2021-06-01-preview", + "2020-11-01-preview", + "2019-12-01-preview", + "2019-05-01", + "2017-10-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "South Central US", + "West Central US", + "East US", + "West Europe", + "West US", + "Japan East", + "North Europe", + "Southeast Asia", + "North Central US", + "East US 2", + "West US 2", + "Brazil South", + "Australia East", + "Central India", + "Korea Central", + "France Central", + "South Africa North", + "UAE North", + "Central US", + "Canada East", + "Canada Central", + "UK South", + "UK West", + "Australia Southeast", + "East Asia", + "Japan West", + "South India", + "Switzerland North", + "UAE Central", + "Switzerland West", + "Germany West Central", + "Brazil Southeast", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "registries/importImage", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-01-01-preview", + "2022-02-01-preview", + "2021-12-01-preview", + "2021-08-01-preview", + "2021-06-01-preview", + "2020-11-01-preview", + "2019-12-01-preview" + ], + "capabilities": "SystemAssignedResourceIdentity", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "South Central US", + "West Europe", + "Switzerland North", + "North Europe", + "UK South", + "UK West", + "Australia East", + "Australia Southeast", + "Central India", + "East Asia", + "Japan East", + "Japan West", + "Southeast Asia", + "South India", + "Brazil South", + "Canada East", + "Canada Central", + "Central US", + "East US 2", + "North Central US", + "West Central US", + "West US 2", + "Korea Central", + "France Central", + "South Africa North", + "UAE North", + "UAE Central", + "Switzerland West", + "Germany West Central", + "Brazil Southeast", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "registries/exportPipelines", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-01-01-preview", + "2022-02-01-preview", + "2021-12-01-preview", + "2021-08-01-preview", + "2021-06-01-preview", + "2020-11-01-preview", + "2019-12-01-preview" + ], + "capabilities": "SystemAssignedResourceIdentity", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "South Central US", + "West Europe", + "Switzerland North", + "North Europe", + "UK South", + "UK West", + "Australia East", + "Australia Southeast", + "Central India", + "East Asia", + "Japan East", + "Japan West", + "Southeast Asia", + "South India", + "Brazil South", + "Canada East", + "Canada Central", + "Central US", + "East US 2", + "North Central US", + "West Central US", + "West US 2", + "Korea Central", + "France Central", + "South Africa North", + "UAE North", + "UAE Central", + "Switzerland West", + "Germany West Central", + "Brazil Southeast", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "registries/importPipelines", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-01-01-preview", + "2022-02-01-preview", + "2021-12-01-preview", + "2021-08-01-preview", + "2021-06-01-preview", + "2020-11-01-preview", + "2019-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "South Central US", + "West Europe", + "Switzerland North", + "North Europe", + "UK South", + "UK West", + "Australia East", + "Australia Southeast", + "Central India", + "East Asia", + "Japan East", + "Japan West", + "Southeast Asia", + "South India", + "Brazil South", + "Canada East", + "Canada Central", + "Central US", + "East US 2", + "North Central US", + "West Central US", + "West US 2", + "Korea Central", + "France Central", + "South Africa North", + "UAE North", + "UAE Central", + "Switzerland West", + "Germany West Central", + "Brazil Southeast", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "registries/pipelineRuns", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-06-01-preview", + "2019-04-01", + "2018-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West US 2", + "South Central US", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "Southeast Asia", + "South India", + "UK South", + "UK West", + "West US", + "West Central US", + "France Central", + "Korea Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Switzerland West", + "UAE Central", + "Brazil Southeast", + "Germany West Central", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "registries/listBuildSourceUploadUrl", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-06-01-preview", + "2019-04-01", + "2018-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West US 2", + "South Central US", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "Southeast Asia", + "South India", + "UK South", + "UK West", + "West US", + "West Central US", + "France Central", + "Korea Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Switzerland West", + "UAE Central", + "Brazil Southeast", + "Germany West Central", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "registries/scheduleRun", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-06-01-preview", + "2019-04-01", + "2018-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West US 2", + "South Central US", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "Southeast Asia", + "South India", + "UK South", + "UK West", + "West US", + "West Central US", + "France Central", + "Korea Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Switzerland West", + "UAE Central", + "Brazil Southeast", + "Germany West Central", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "registries/runs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2019-06-01-preview", + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West US 2", + "South Central US", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "Southeast Asia", + "South India", + "UK South", + "UK West", + "West US", + "West Central US", + "France Central", + "Korea Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Switzerland West", + "UAE Central", + "Brazil Southeast", + "Germany West Central", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "registries/taskRuns", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West US 2", + "South Central US", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "Southeast Asia", + "South India", + "UK South", + "UK West", + "West US", + "West Central US", + "France Central", + "Korea Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Switzerland West", + "UAE Central", + "Brazil Southeast", + "Germany West Central", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "registries/taskRuns/listDetails", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-06-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2019-06-01-preview", + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West US 2", + "South Central US", + "Canada Central", + "Central US", + "East Asia", + "East US 2", + "North Europe" + ], + "properties": null, + "resourceType": "registries/agentPools", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West US 2", + "South Central US", + "Canada Central", + "Central US", + "East Asia", + "East US 2", + "North Europe" + ], + "properties": null, + "resourceType": "registries/agentPoolsOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West US 2", + "South Central US", + "Canada Central", + "Central US", + "East Asia", + "East US 2", + "North Europe" + ], + "properties": null, + "resourceType": "registries/agentPools/listQueueStatus", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-06-01-preview", + "2019-04-01", + "2018-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West US 2", + "South Central US", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "Southeast Asia", + "South India", + "UK South", + "UK West", + "West US", + "West Central US", + "France Central", + "Korea Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Switzerland West", + "UAE Central", + "Brazil Southeast", + "Germany West Central", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "registries/runs/listLogSasUrl", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-06-01-preview", + "2019-04-01", + "2018-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West US 2", + "South Central US", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "Southeast Asia", + "South India", + "UK South", + "UK West", + "West US", + "West Central US", + "France Central", + "Korea Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Switzerland West", + "UAE Central", + "Brazil Southeast", + "Germany West Central", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "registries/runs/cancel", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-06-01-preview", + "2019-04-01", + "2018-09-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2019-04-01", + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West US 2", + "South Central US", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "Southeast Asia", + "South India", + "UK South", + "UK West", + "West US", + "West Central US", + "France Central", + "Korea Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Switzerland West", + "UAE Central", + "Brazil Southeast", + "Germany West Central", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "registries/tasks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-06-01-preview", + "2019-04-01", + "2018-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West US 2", + "South Central US", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "Southeast Asia", + "South India", + "UK South", + "UK West", + "West US", + "West Central US", + "France Central", + "Korea Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Switzerland West", + "UAE Central", + "Brazil Southeast", + "Germany West Central", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "registries/tasks/listDetails", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West US 2", + "South Central US", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "Southeast Asia", + "South India", + "UK South", + "UK West", + "West US", + "West Central US", + "France Central", + "Korea Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Switzerland West", + "UAE Central", + "Brazil Southeast", + "Germany West Central", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "registries/getBuildSourceUploadUrl", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West US 2", + "South Central US", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "Southeast Asia", + "South India", + "UK South", + "UK West", + "West US", + "West Central US", + "France Central", + "Korea Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Switzerland West", + "UAE Central", + "Brazil Southeast", + "Germany West Central", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "registries/queueBuild", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West US 2", + "South Central US", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "Southeast Asia", + "South India", + "UK South", + "UK West", + "West US", + "West Central US", + "France Central", + "Korea Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Switzerland West", + "UAE Central", + "Brazil Southeast", + "Germany West Central", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "registries/builds", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West US 2", + "South Central US", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "Southeast Asia", + "South India", + "UK South", + "UK West", + "West US", + "West Central US", + "France Central", + "Korea Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Switzerland West", + "UAE Central", + "Brazil Southeast", + "Germany West Central", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "registries/builds/getLogLink", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West US 2", + "South Central US", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "Southeast Asia", + "South India", + "UK South", + "UK West", + "West US", + "West Central US", + "France Central", + "Korea Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Switzerland West", + "UAE Central", + "Brazil Southeast", + "Germany West Central", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "registries/builds/cancel", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-02-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West US 2", + "South Central US", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "Southeast Asia", + "South India", + "UK South", + "UK West", + "West US", + "West Central US", + "France Central", + "Korea Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Switzerland West", + "UAE Central", + "Brazil Southeast", + "Germany West Central", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "registries/buildTasks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West US 2", + "South Central US", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "Southeast Asia", + "South India", + "UK South", + "UK West", + "West US", + "West Central US", + "France Central", + "Korea Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Switzerland West", + "UAE Central", + "Brazil Southeast", + "Germany West Central", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "registries/buildTasks/listSourceRepositoryProperties", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West US 2", + "South Central US", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "Southeast Asia", + "South India", + "UK South", + "UK West", + "West US", + "West Central US", + "France Central", + "Korea Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Switzerland West", + "UAE Central", + "Brazil Southeast", + "Germany West Central", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "registries/buildTasks/steps", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West US 2", + "South Central US", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "Southeast Asia", + "South India", + "UK South", + "UK West", + "West US", + "West Central US", + "France Central", + "Korea Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Switzerland West", + "UAE Central", + "Brazil Southeast", + "Germany West Central", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "registries/buildTasks/steps/listBuildArguments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01", + "2023-06-01-preview", + "2023-01-01-preview", + "2022-12-01", + "2022-02-01-preview", + "2021-12-01-preview", + "2021-09-01", + "2021-08-01-preview", + "2021-06-01-preview", + "2020-11-01-preview", + "2019-12-01-preview", + "2019-05-01", + "2017-10-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "South Central US", + "West Central US", + "East US", + "West Europe", + "West US", + "Japan East", + "North Europe", + "Southeast Asia", + "North Central US", + "East US 2", + "West US 2", + "Brazil South", + "Australia East", + "Central India", + "Korea Central", + "South Africa North", + "UAE North", + "France Central", + "Central US", + "Canada East", + "Canada Central", + "UK South", + "UK West", + "Australia Southeast", + "East Asia", + "Japan West", + "South India", + "Switzerland North", + "UAE Central", + "Switzerland West", + "Germany West Central", + "Brazil Southeast", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "registries/replications", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01", + "2023-06-01-preview", + "2023-01-01-preview", + "2022-12-01", + "2022-02-01-preview", + "2021-12-01-preview", + "2021-09-01", + "2021-08-01-preview", + "2021-06-01-preview", + "2020-11-01-preview", + "2019-12-01-preview", + "2019-05-01", + "2017-10-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "East US", + "West Europe", + "South Central US", + "West US", + "Japan East", + "North Europe", + "Southeast Asia", + "North Central US", + "East US 2", + "West US 2", + "Brazil South", + "Australia East", + "Central India", + "Korea Central", + "South Africa North", + "UAE North", + "France Central", + "Central US", + "Canada East", + "Canada Central", + "UK South", + "UK West", + "Australia Southeast", + "East Asia", + "Japan West", + "South India", + "Switzerland North", + "UAE Central", + "Switzerland West", + "Germany West Central", + "Brazil Southeast", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "registries/webhooks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01", + "2023-06-01-preview", + "2023-01-01-preview", + "2022-12-01", + "2022-02-01-preview", + "2021-12-01-preview", + "2021-09-01", + "2021-08-01-preview", + "2021-06-01-preview", + "2020-11-01-preview", + "2019-12-01-preview", + "2019-05-01", + "2017-10-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "East US", + "West Europe", + "South Central US", + "West US", + "Japan East", + "North Europe", + "Southeast Asia", + "North Central US", + "East US 2", + "West US 2", + "Brazil South", + "Australia East", + "Central India", + "Korea Central", + "South Africa North", + "UAE North", + "France Central", + "Central US", + "Canada East", + "Canada Central", + "UK South", + "UK West", + "Australia Southeast", + "East Asia", + "Japan West", + "South India", + "Switzerland North", + "UAE Central", + "Switzerland West", + "Germany West Central", + "Brazil Southeast", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "registries/webhooks/ping", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01", + "2023-06-01-preview", + "2023-01-01-preview", + "2022-12-01", + "2022-02-01-preview", + "2021-12-01-preview", + "2021-09-01", + "2021-08-01-preview", + "2021-06-01-preview", + "2020-11-01-preview", + "2019-12-01-preview", + "2019-05-01", + "2017-10-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "East US", + "West Europe", + "South Central US", + "West US", + "Japan East", + "North Europe", + "Southeast Asia", + "North Central US", + "East US 2", + "West US 2", + "Brazil South", + "Australia East", + "Central India", + "Korea Central", + "South Africa North", + "UAE North", + "France Central", + "Central US", + "Canada East", + "Canada Central", + "UK South", + "UK West", + "Australia Southeast", + "East Asia", + "Japan West", + "South India", + "Switzerland North", + "UAE Central", + "Switzerland West", + "Germany West Central", + "Brazil Southeast", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "registries/webhooks/getCallbackConfig", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01", + "2023-06-01-preview", + "2023-01-01-preview", + "2022-12-01", + "2022-02-01-preview", + "2021-12-01-preview", + "2021-09-01", + "2021-08-01-preview", + "2021-06-01-preview", + "2020-11-01-preview", + "2019-12-01-preview", + "2019-05-01", + "2017-10-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "East US", + "West Europe", + "South Central US", + "West US", + "Japan East", + "North Europe", + "Southeast Asia", + "North Central US", + "East US 2", + "West US 2", + "Brazil South", + "Australia East", + "Central India", + "Korea Central", + "South Africa North", + "UAE North", + "France Central", + "Central US", + "Canada East", + "Canada Central", + "UK South", + "UK West", + "Australia Southeast", + "East Asia", + "Japan West", + "South India", + "Switzerland North", + "UAE Central", + "Switzerland West", + "Germany West Central", + "Brazil Southeast", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "registries/webhooks/listEvents", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West US 2", + "South Central US", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "Southeast Asia", + "South India", + "UK South", + "UK West", + "West US", + "West Central US", + "France Central", + "Korea Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Switzerland West", + "UAE Central", + "Brazil Southeast", + "Germany West Central", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "locations/setupAuth", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West US 2", + "South Central US", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "Southeast Asia", + "South India", + "UK South", + "UK West", + "West US", + "West Central US", + "France Central", + "Korea Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Switzerland West", + "UAE Central", + "Brazil Southeast", + "Germany West Central", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "locations/authorize", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01", + "2023-06-01-preview", + "2023-01-01-preview", + "2022-12-01", + "2022-02-01-preview", + "2021-12-01-preview", + "2021-09-01", + "2021-08-01-preview", + "2021-06-01-preview", + "2020-11-01-preview", + "2019-12-01-preview", + "2019-05-01-preview", + "2019-05-01", + "2017-10-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "East US", + "West Europe", + "South Central US", + "West US", + "Japan East", + "North Europe", + "Southeast Asia", + "North Central US", + "East US 2", + "West US 2", + "Brazil South", + "Australia East", + "Central India", + "Korea Central", + "France Central", + "Central US", + "South Africa North", + "UAE North", + "Canada East", + "Canada Central", + "UK South", + "UK West", + "Australia Southeast", + "East Asia", + "Japan West", + "South India", + "Switzerland North", + "UAE Central", + "Switzerland West", + "Germany West Central", + "Brazil Southeast", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "locations/operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-05-01", + "2017-10-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "East US", + "West Europe", + "South Central US", + "West US", + "Japan East", + "North Europe", + "Southeast Asia", + "North Central US", + "East US 2", + "West US 2", + "Brazil South", + "Australia East", + "Central India", + "Korea Central", + "South Africa North", + "UAE North", + "France Central", + "Central US", + "Canada East", + "Canada Central", + "UK South", + "UK West", + "Australia Southeast", + "East Asia", + "Japan West", + "South India", + "Switzerland North", + "UAE Central", + "Switzerland West", + "Germany West Central", + "Brazil Southeast", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "locations/deleteVirtualNetworkOrSubnets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-06-27-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "South Central US", + "West Europe" + ], + "properties": null, + "resourceType": "registries/GetCredentials", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01", + "2023-06-01-preview", + "2023-01-01-preview", + "2022-12-01", + "2022-02-01-preview", + "2021-12-01-preview", + "2021-09-01", + "2021-08-01-preview", + "2021-06-01-preview", + "2020-11-01-preview", + "2019-12-01-preview", + "2019-05-01", + "2017-10-01", + "2017-03-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "South Central US", + "East US", + "West US", + "West Europe", + "North Europe", + "UK South", + "UK West", + "Australia East", + "Australia Southeast", + "Central India", + "Korea Central", + "South Africa North", + "UAE North", + "France Central", + "East Asia", + "Japan East", + "Japan West", + "Southeast Asia", + "South India", + "Brazil South", + "Canada East", + "Canada Central", + "Central US", + "East US 2", + "North Central US", + "West Central US", + "West US 2", + "Switzerland North", + "UAE Central", + "Switzerland West", + "Germany West Central", + "Brazil Southeast", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "registries/listCredentials", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01", + "2023-06-01-preview", + "2023-01-01-preview", + "2022-12-01", + "2022-02-01-preview", + "2021-12-01-preview", + "2021-09-01", + "2021-08-01-preview", + "2021-06-01-preview", + "2020-11-01-preview", + "2019-12-01-preview", + "2019-05-01", + "2017-10-01", + "2017-03-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "South Central US", + "West US", + "East US", + "West Europe", + "North Europe", + "UK South", + "UK West", + "Australia East", + "Australia Southeast", + "Central India", + "Korea Central", + "South Africa North", + "UAE North", + "France Central", + "East Asia", + "Japan East", + "Japan West", + "Southeast Asia", + "South India", + "Brazil South", + "Canada East", + "Canada Central", + "Central US", + "East US 2", + "North Central US", + "West Central US", + "West US 2", + "Switzerland North", + "UAE Central", + "Switzerland West", + "Germany West Central", + "Brazil Southeast", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "registries/regenerateCredential", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01", + "2023-06-01-preview", + "2023-01-01-preview", + "2022-12-01", + "2022-02-01-preview", + "2021-12-01-preview", + "2021-09-01", + "2021-08-01-preview", + "2021-06-01-preview", + "2020-11-01-preview", + "2019-12-01-preview", + "2019-05-01", + "2017-10-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "East US", + "West Europe", + "South Central US", + "West US", + "Japan East", + "North Europe", + "Southeast Asia", + "North Central US", + "East US 2", + "West US 2", + "Brazil South", + "Australia East", + "Central India", + "Korea Central", + "South Africa North", + "UAE North", + "France Central", + "Central US", + "Canada East", + "Canada Central", + "UK South", + "UK West", + "Australia Southeast", + "East Asia", + "Japan West", + "South India", + "Switzerland North", + "UAE Central", + "Switzerland West", + "Germany West Central", + "Brazil Southeast", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "registries/listUsages", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-10-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "South Central US", + "West Europe", + "North Europe", + "UK South", + "UK West", + "Australia East", + "Australia Southeast", + "Central India", + "Korea Central", + "South Africa North", + "UAE North", + "France Central", + "East Asia", + "Japan East", + "Japan West", + "Southeast Asia", + "South India", + "Brazil South", + "Canada East", + "Canada Central", + "Central US", + "East US 2", + "North Central US", + "West Central US", + "West US 2", + "Switzerland North", + "Switzerland West", + "UAE Central", + "Germany West Central", + "Brazil Southeast", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "registries/listPolicies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-10-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "South Central US", + "West Europe", + "North Europe", + "UK South", + "UK West", + "Australia East", + "Australia Southeast", + "Central India", + "Korea Central", + "South Africa North", + "UAE North", + "France Central", + "East Asia", + "Japan East", + "Japan West", + "Southeast Asia", + "South India", + "Brazil South", + "Canada East", + "Canada Central", + "Central US", + "East US 2", + "North Central US", + "West Central US", + "West US 2", + "Switzerland North", + "Switzerland West", + "UAE Central", + "Germany West Central", + "Brazil Southeast", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "registries/updatePolicies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-06-27-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "South Central US", + "West Europe" + ], + "properties": null, + "resourceType": "registries/regenerateCredentials", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2022-12-01", + "2019-05-01", + "2017-10-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "South Central US", + "West Central US", + "East US", + "West Europe", + "West US", + "Japan East", + "North Europe", + "Southeast Asia", + "North Central US", + "East US 2", + "West US 2", + "Brazil South", + "Australia East", + "Central India", + "Korea Central", + "South Africa North", + "UAE North", + "France Central", + "Central US", + "Canada East", + "Canada Central", + "UK South", + "UK West", + "Australia Southeast", + "East Asia", + "Japan West", + "South India", + "Switzerland North", + "UAE Central", + "Switzerland West", + "Germany West Central", + "Brazil Southeast", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "registries/eventGridFilters", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01", + "2023-06-01-preview", + "2023-01-01-preview", + "2022-12-01", + "2022-02-01-preview", + "2021-12-01-preview", + "2021-09-01", + "2021-08-01-preview", + "2021-06-01-preview", + "2020-11-01-preview", + "2019-12-01-preview", + "2019-05-01", + "2017-10-01", + "2017-06-01-preview", + "2017-03-01", + "2016-06-27-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "South Central US", + "East US", + "West US", + "Central US", + "East US 2", + "North Central US", + "West Central US", + "West US 2", + "Brazil South", + "Canada East", + "Canada Central", + "West Europe", + "North Europe", + "UK South", + "UK West", + "Australia East", + "Australia Southeast", + "Central India", + "East Asia", + "Japan East", + "Japan West", + "Southeast Asia", + "South India", + "Korea Central", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "UAE Central", + "Switzerland West", + "Germany West Central", + "Brazil Southeast", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Jio India West", + "Jio India Central", + "Sweden Central", + "Australia Central", + "Qatar Central", + "Australia Central 2", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01", + "2023-06-01-preview", + "2023-01-01-preview", + "2022-12-01", + "2022-02-01-preview", + "2021-12-01-preview", + "2021-09-01", + "2021-08-01-preview", + "2021-06-01-preview", + "2020-11-01-preview", + "2019-12-01-preview", + "2019-05-01", + "2017-10-01", + "2017-06-01-preview", + "2017-03-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "South Central US", + "West Europe", + "North Europe", + "UK South", + "UK West", + "Australia East", + "Australia Southeast", + "Central India", + "Korea Central", + "France Central", + "South Africa North", + "UAE North", + "East Asia", + "Japan East", + "Japan West", + "Southeast Asia", + "South India", + "Brazil South", + "Canada East", + "Canada Central", + "Central US", + "East US 2", + "North Central US", + "West Central US", + "West US 2", + "Switzerland North", + "UAE Central", + "Switzerland West", + "Germany West Central", + "Brazil Southeast", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Sweden Central", + "Jio India West", + "Jio India Central", + "Australia Central 2", + "Australia Central", + "Qatar Central", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01", + "2023-06-01-preview", + "2023-01-01-preview", + "2022-12-01", + "2022-02-01-preview", + "2021-12-01-preview", + "2021-09-01", + "2021-08-01-preview", + "2021-06-01-preview", + "2020-11-01-preview", + "2019-12-01-preview", + "2019-05-01-preview", + "2019-05-01", + "2017-10-01", + "2017-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "South Central US", + "East US", + "West US", + "Central US", + "East US 2", + "North Central US", + "West Central US", + "West US 2", + "Brazil South", + "Canada East", + "Canada Central", + "West Europe", + "North Europe", + "UK South", + "UK West", + "Australia East", + "Australia Southeast", + "Central India", + "East Asia", + "Japan East", + "Japan West", + "Southeast Asia", + "South India", + "Korea Central", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "UAE Central", + "Switzerland West", + "Germany West Central", + "Brazil Southeast", + "Norway East", + "Korea South", + "West US 3", + "Norway West", + "Jio India West", + "Jio India Central", + "Sweden Central", + "Australia Central", + "Qatar Central", + "Australia Central 2", + "Germany North", + "Poland Central", + "France South", + "Italy North" + ], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "7319c514-987d-4e9b-ac3d-d38c4f427f4c", + "managedByAuthorization": { + "allowManagedByInheritance": true + }, + "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635", + "roleDefinitionId": "1b4a0c7f-2217-416f-acfa-cf73452fdc1c" + }, + { + "applicationId": "6dae42f8-4368-4678-94ff-3960e28e3630", + "roleDefinitionId": "831388fc-33b1-4dd1-b64c-40fdcaf96654" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.ContainerService", + "namespace": "Microsoft.ContainerService", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-02-preview", + "2023-08-01", + "2023-07-02-preview", + "2023-07-01", + "2023-06-02-preview", + "2023-06-01", + "2023-05-02-preview", + "2023-05-01", + "2023-04-02-preview", + "2023-04-01", + "2023-03-02-preview", + "2023-03-01", + "2023-02-02-preview", + "2023-02-01", + "2023-01-02-preview", + "2023-01-01", + "2022-11-02-preview", + "2022-11-01", + "2022-10-02-preview", + "2022-09-02-preview", + "2022-09-01", + "2022-08-03-preview", + "2022-08-02-preview", + "2022-08-01", + "2022-07-02-preview", + "2022-07-01", + "2022-06-02-preview", + "2022-06-01", + "2022-05-02-preview", + "2022-04-02-preview", + "2022-04-01", + "2022-03-02-preview", + "2022-03-01", + "2022-02-01", + "2022-01-02-preview", + "2022-01-01", + "2021-10-01", + "2021-09-01", + "2021-08-01", + "2021-07-01", + "2021-05-01", + "2021-03-01", + "2021-02-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "ManagedClusters/eventGridFilters", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-07-01", + "2017-01-31", + "2016-09-30", + "2016-03-30" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "West India", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West US", + "West US 2" + ], + "properties": null, + "resourceType": "containerServices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-15-preview", + "2023-03-15-preview", + "2022-09-02-preview", + "2022-07-02-preview", + "2022-06-02-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "fleetMemberships", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-15-preview", + "2023-03-15-preview", + "2022-09-02-preview", + "2022-07-02-preview", + "2022-06-02-preview" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-06-15-preview", + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "fleets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-15-preview", + "2023-03-15-preview", + "2022-09-02-preview", + "2022-07-02-preview", + "2022-06-02-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "fleets/members", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-15-preview", + "2023-03-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "fleets/updateRuns", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-08-31", + "2017-01-31", + "2016-09-30", + "2016-03-30", + "2015-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-02-preview", + "2023-07-02-preview", + "2023-06-02-preview", + "2023-05-02-preview", + "2023-04-02-preview", + "2023-03-02-preview", + "2023-02-02-preview", + "2023-01-02-preview", + "2022-11-02-preview", + "2022-10-02-preview", + "2022-09-02-preview", + "2022-08-03-preview", + "2022-08-02-preview", + "2022-07-02-preview", + "2022-03-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "Central US EUAP", + "East Asia", + "East US", + "East US 2", + "East US 2 EUAP", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/notifyNetworkSecurityPerimeterUpdatesAvailable", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-02-preview", + "2023-08-01", + "2023-07-02-preview", + "2023-07-01", + "2023-06-02-preview", + "2023-06-01", + "2023-05-02-preview", + "2023-05-01", + "2023-04-02-preview", + "2023-04-01", + "2023-03-02-preview", + "2023-03-01", + "2023-02-02-preview", + "2023-02-01", + "2023-01-02-preview", + "2023-01-01", + "2022-11-02-preview", + "2022-11-01", + "2022-10-02-preview", + "2022-09-02-preview", + "2022-09-01", + "2022-08-03-preview", + "2022-08-02-preview", + "2022-08-01", + "2022-07-02-preview", + "2022-07-01", + "2022-06-02-preview", + "2022-06-01", + "2022-05-02-preview", + "2022-04-02-preview", + "2022-04-01", + "2022-03-02-preview", + "2022-03-01", + "2022-02-01", + "2022-01-02-preview", + "2022-01-01", + "2021-10-01", + "2021-09-01", + "2021-08-01", + "2021-07-01", + "2021-05-01", + "2021-03-01", + "2021-02-01", + "2020-12-01", + "2020-11-01", + "2020-09-01", + "2020-07-01", + "2020-06-01", + "2020-04-01", + "2020-03-01", + "2020-02-01", + "2020-01-01", + "2019-11-01", + "2019-10-01", + "2019-08-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-03-31", + "2017-08-31", + "2016-03-30" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/operationresults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-02-preview", + "2023-08-01", + "2023-07-02-preview", + "2023-07-01", + "2023-06-02-preview", + "2023-06-01", + "2023-05-02-preview", + "2023-05-01", + "2023-04-02-preview", + "2023-04-01", + "2023-03-02-preview", + "2023-03-01", + "2023-02-02-preview", + "2023-02-01", + "2023-01-02-preview", + "2023-01-01", + "2022-11-02-preview", + "2022-11-01", + "2022-10-02-preview", + "2022-09-02-preview", + "2022-09-01", + "2022-08-03-preview", + "2022-08-02-preview", + "2022-08-01", + "2022-07-02-preview", + "2022-07-01", + "2022-06-02-preview", + "2022-06-01", + "2022-05-02-preview", + "2022-04-02-preview", + "2022-04-01", + "2022-03-02-preview", + "2022-03-01", + "2022-02-01", + "2022-01-02-preview", + "2022-01-01", + "2021-10-01", + "2021-09-01", + "2021-08-01", + "2021-07-01", + "2021-05-01", + "2021-03-01", + "2021-02-01", + "2020-12-01", + "2020-11-01", + "2020-09-01", + "2020-07-01", + "2020-06-01", + "2020-04-01", + "2020-03-01", + "2020-02-01", + "2020-01-01", + "2019-11-01", + "2019-10-01", + "2019-08-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-03-31", + "2017-08-31", + "2016-03-30" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-02-preview", + "2023-08-01", + "2023-07-02-preview", + "2023-07-01", + "2023-06-02-preview", + "2023-06-01", + "2023-05-02-preview", + "2023-05-01", + "2023-04-02-preview", + "2023-04-01", + "2023-03-02-preview", + "2023-03-01", + "2023-02-02-preview", + "2023-02-01", + "2023-01-02-preview", + "2023-01-01", + "2022-11-02-preview", + "2022-11-01", + "2022-10-02-preview", + "2022-09-02-preview", + "2022-09-01", + "2022-08-03-preview", + "2022-08-02-preview", + "2022-08-01", + "2022-07-02-preview", + "2022-07-01", + "2022-06-02-preview", + "2022-06-01", + "2022-05-02-preview", + "2022-04-02-preview", + "2022-04-01", + "2022-03-02-preview", + "2022-03-01", + "2022-02-01", + "2022-01-02-preview", + "2022-01-01", + "2021-10-01", + "2021-09-01", + "2021-08-01", + "2021-07-01", + "2021-05-01", + "2021-03-01", + "2021-02-01", + "2020-12-01", + "2020-11-01", + "2020-09-01", + "2020-07-01", + "2020-06-01", + "2020-04-01", + "2020-03-01", + "2020-02-01", + "2020-01-01", + "2019-11-01", + "2019-10-01", + "2019-08-01", + "2019-06-01", + "2019-04-01", + "2017-09-30" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/orchestrators", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-02-preview", + "2023-08-01", + "2023-07-02-preview", + "2023-07-01", + "2023-06-02-preview", + "2023-06-01", + "2023-05-02-preview", + "2023-05-01", + "2023-04-02-preview", + "2023-04-01", + "2023-03-02-preview", + "2023-03-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/kubernetesVersions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-02-preview", + "2023-08-01", + "2023-07-02-preview", + "2023-07-01", + "2023-06-02-preview", + "2023-06-01", + "2023-05-02-preview", + "2023-05-01", + "2023-04-02-preview", + "2023-04-01", + "2023-03-02-preview", + "2023-03-01", + "2023-02-02-preview", + "2023-02-01", + "2023-01-02-preview", + "2023-01-01", + "2022-11-02-preview", + "2022-11-01", + "2022-10-02-preview", + "2022-09-02-preview", + "2022-09-01", + "2022-08-03-preview", + "2022-08-02-preview", + "2022-08-01", + "2022-07-02-preview", + "2022-07-01", + "2022-06-02-preview", + "2022-06-01", + "2022-05-02-preview", + "2022-04-02-preview", + "2022-04-01", + "2022-03-02-preview", + "2022-03-01", + "2022-02-01", + "2022-01-02-preview", + "2022-01-01", + "2021-10-01", + "2021-09-01", + "2021-08-01", + "2021-07-01", + "2021-05-01", + "2021-03-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/osOptions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-02-preview", + "2023-07-02-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/guardrailsVersions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-02-preview", + "2023-08-01", + "2023-07-02-preview", + "2023-07-01", + "2023-06-02-preview", + "2023-06-01", + "2023-05-02-preview", + "2023-05-01", + "2023-04-02-preview", + "2023-04-01", + "2023-03-02-preview", + "2023-03-01", + "2023-02-02-preview", + "2023-02-01", + "2023-01-02-preview", + "2023-01-01", + "2022-11-02-preview", + "2022-11-01", + "2022-10-02-preview", + "2022-09-02-preview", + "2022-09-01", + "2022-08-03-preview", + "2022-08-02-preview", + "2022-08-01", + "2022-07-02-preview", + "2022-07-01", + "2022-06-02-preview", + "2022-06-01", + "2022-05-02-preview", + "2022-04-02-preview", + "2022-04-01", + "2022-03-02-preview", + "2022-03-01", + "2022-02-01", + "2022-01-02-preview", + "2022-01-01", + "2021-10-01", + "2021-09-01", + "2021-08-01", + "2021-07-01", + "2021-05-01", + "2021-03-01", + "2021-02-01", + "2020-12-01", + "2020-11-01", + "2020-09-01", + "2020-07-01", + "2020-06-01", + "2020-04-01", + "2020-03-01", + "2020-02-01", + "2020-01-01", + "2019-11-01", + "2019-10-01", + "2019-08-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-03-31", + "2017-08-31" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-06-01", + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "managedClusters", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-02-preview", + "2023-07-02-preview", + "2023-06-02-preview", + "2023-05-02-preview", + "2023-04-02-preview", + "2023-03-02-preview", + "2023-02-02-preview", + "2023-01-02-preview", + "2022-11-02-preview", + "2022-10-02-preview", + "2022-09-02-preview", + "2022-08-03-preview", + "2022-08-02-preview", + "2022-07-02-preview", + "2022-06-02-preview", + "2022-05-02-preview", + "2022-04-02-preview", + "2022-03-02-preview" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "managedclustersnapshots", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-02-preview", + "2023-08-01", + "2023-07-02-preview", + "2023-07-01", + "2023-06-02-preview", + "2023-06-01", + "2023-05-02-preview", + "2023-05-01", + "2023-04-02-preview", + "2023-04-01", + "2023-03-02-preview", + "2023-03-01", + "2023-02-02-preview", + "2023-02-01", + "2023-01-02-preview", + "2023-01-01", + "2022-11-02-preview", + "2022-11-01", + "2022-10-02-preview", + "2022-09-02-preview", + "2022-09-01", + "2022-08-03-preview", + "2022-08-02-preview", + "2022-08-01", + "2022-07-02-preview", + "2022-07-01", + "2022-06-02-preview", + "2022-06-01", + "2022-05-02-preview", + "2022-04-02-preview", + "2022-04-01", + "2022-03-02-preview", + "2022-03-01", + "2022-02-01", + "2022-01-02-preview", + "2022-01-01", + "2021-10-01", + "2021-09-01", + "2021-08-01", + "2021-07-01", + "2021-05-01", + "2021-03-01", + "2021-02-01", + "2020-12-01", + "2020-11-01", + "2020-09-01", + "2020-07-01", + "2020-06-01", + "2020-04-01", + "2020-03-01", + "2020-02-01", + "2020-01-01", + "2019-11-01", + "2019-10-01", + "2019-08-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-10-31", + "2018-03-31", + "2017-08-31", + "2017-07-01", + "2017-01-31", + "2016-09-30", + "2016-03-30", + "2015-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-02-preview", + "2023-08-01", + "2023-07-02-preview", + "2023-07-01", + "2023-06-02-preview", + "2023-06-01", + "2023-05-02-preview", + "2023-05-01", + "2023-04-02-preview", + "2023-04-01", + "2023-03-02-preview", + "2023-03-01", + "2023-02-02-preview", + "2023-02-01", + "2023-01-02-preview", + "2023-01-01", + "2022-11-02-preview", + "2022-11-01", + "2022-10-02-preview", + "2022-09-02-preview", + "2022-09-01", + "2022-08-03-preview", + "2022-08-02-preview", + "2022-08-01", + "2022-07-02-preview", + "2022-07-01", + "2022-06-02-preview", + "2022-06-01", + "2022-05-02-preview", + "2022-04-02-preview", + "2022-04-01", + "2022-03-02-preview", + "2022-03-01", + "2022-02-01", + "2022-01-02-preview", + "2022-01-01", + "2021-10-01", + "2021-09-01", + "2021-08-01" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "snapshots", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "3184af01-7a88-49e0-8b55-8ecdce0aa950" + }, + { + "applicationId": "6b3368c6-61d2-4a72-854c-42d1c4e71fed" + }, + { + "applicationId": "997dc448-eeab-4c93-8811-6b2c80196a16" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.CostManagement", + "namespace": "Microsoft.CostManagement", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationFree", + "registrationState": "Registered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-08-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US" + ], + "properties": null, + "resourceType": "Connectors", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "CloudConnectors", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "CheckConnectorEligibility", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "ExternalBillingAccounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2023-04-01-preview", + "2023-03-01", + "2022-10-01", + "2021-10-01", + "2019-11-01", + "2019-10-01", + "2019-05-01-preview", + "2019-04-01-preview", + "2019-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "ExternalBillingAccounts/Dimensions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2023-04-01-preview", + "2023-03-01", + "2022-10-01", + "2021-10-01", + "2019-11-01", + "2019-10-01", + "2019-05-01-preview", + "2019-04-01-preview", + "2019-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "ExternalBillingAccounts/Query", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2023-04-01-preview", + "2023-03-01", + "2022-10-01", + "2021-10-01", + "2019-11-01", + "2019-10-01", + "2019-05-01-preview", + "2019-04-01-preview", + "2019-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "ExternalSubscriptions/Dimensions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2023-04-01-preview", + "2023-03-01", + "2022-10-01", + "2021-10-01", + "2019-11-01", + "2019-10-01", + "2019-05-01-preview", + "2019-04-01-preview", + "2019-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "ExternalSubscriptions/Query", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2023-03-01", + "2019-03-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "ExternalSubscriptions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2023-04-01-preview", + "2023-03-01", + "2022-10-01", + "2021-10-01", + "2019-11-01", + "2019-10-01", + "2019-05-01-preview", + "2019-04-01-preview", + "2019-03-01-preview", + "2018-12-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Forecast", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2023-04-01-preview", + "2023-03-01", + "2022-10-01", + "2021-10-01", + "2019-11-01", + "2019-10-01", + "2019-05-01-preview", + "2019-04-01-preview", + "2019-03-01-preview", + "2018-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "ExternalSubscriptions/Forecast", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2023-04-01-preview", + "2023-03-01", + "2022-10-01", + "2021-10-01", + "2019-11-01", + "2019-10-01", + "2019-05-01-preview", + "2019-04-01-preview", + "2019-03-01-preview", + "2018-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "ExternalBillingAccounts/Forecast", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2023-04-01-preview", + "2023-03-01", + "2022-10-01-preview", + "2022-10-01", + "2021-10-01", + "2019-11-01", + "2019-01-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Settings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2023-04-01-preview", + "2023-03-01", + "2022-10-01", + "2021-10-01", + "2019-10-01", + "2019-01-01", + "2018-10-01", + "2018-08-31", + "2018-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "register", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2023-04-01-preview", + "2023-03-01", + "2022-10-01", + "2021-10-01", + "2019-11-01", + "2019-10-01", + "2019-05-01-preview", + "2019-04-01-preview", + "2019-03-01-preview", + "2019-01-01", + "2018-12-01-preview", + "2018-10-01-preview", + "2018-08-31", + "2018-08-01-preview", + "2018-05-31" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Query", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2023-04-01-preview", + "2023-03-01", + "2022-10-01", + "2021-10-01", + "2019-11-01", + "2019-10-01", + "2019-05-01-preview", + "2019-04-01-preview", + "2019-03-01-preview", + "2019-01-01", + "2018-12-01-preview", + "2018-10-01-preview", + "2018-08-31", + "2018-08-01-preview", + "2018-05-31" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Dimensions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2023-04-01-preview", + "2023-03-01", + "2022-10-01-preview", + "2022-10-01", + "2021-10-01", + "2019-10-01", + "2019-04-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Budgets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2023-04-01-preview", + "2023-03-01", + "2022-10-01", + "2021-10-01", + "2019-10-01", + "2018-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "ExternalSubscriptions/Alerts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2023-04-01-preview", + "2023-03-01", + "2022-10-01", + "2021-10-01", + "2019-10-01", + "2018-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "ExternalBillingAccounts/Alerts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2023-04-01-preview", + "2023-03-01", + "2022-10-01", + "2021-10-01", + "2019-10-01", + "2018-08-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Alerts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2019-03-01-preview", + "2019-02-03-alpha", + "2019-02-02-alpha", + "2019-02-01-alpha" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "showbackRules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2020-03-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "costAllocationRules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2023-04-01-preview", + "2023-03-01", + "2022-10-01", + "2021-10-01", + "2021-01-01", + "2020-12-01-preview", + "2020-06-01", + "2020-05-01-preview", + "2019-11-01", + "2019-10-01", + "2019-09-01", + "2019-01-01-preview", + "2019-01-01" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Exports", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-12-01-preview", + "2018-08-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Reports", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2018-05-31" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Reportconfigs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2023-03-01", + "2018-03-31" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "BillingAccounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2023-03-01", + "2018-03-31" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Departments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2023-03-01", + "2018-03-31" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "EnrollmentAccounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2023-04-01-preview", + "2023-03-01", + "2022-10-01", + "2021-10-01", + "2019-11-01", + "2019-10-01", + "2019-04-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Views", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-04-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Publish", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2023-04-01-preview", + "2023-03-01", + "2022-10-01", + "2022-06-01-preview", + "2022-04-01-preview", + "2020-03-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "ScheduledActions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2023-04-01-preview", + "2023-03-01", + "2022-10-01", + "2022-06-01-preview", + "2022-04-01-preview", + "2020-03-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "CheckNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2023-04-01-preview", + "2023-03-01", + "2022-10-01", + "2021-11-15-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "BenefitUtilizationSummaries", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2023-04-01-preview", + "2023-03-01", + "2022-10-01", + "2021-11-15-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "BenefitRecommendations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-08-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Insights", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview", + "2021-11-15-preview", + "2020-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "fetchPrices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2023-04-01-preview", + "2023-03-01", + "2022-10-01", + "2022-03-01" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "fetchMicrosoftPrices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2023-04-01-preview", + "2023-03-01", + "2022-10-01", + "2022-09-30", + "2022-03-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "fetchMarketplacePrices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2023-04-01-preview", + "2023-03-01", + "2022-10-01", + "2022-03-01", + "2021-11-15-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "calculatePrice", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "CalculateCost", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2023-03-01" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "GenerateBenefitUtilizationSummariesReport", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2023-03-01" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "BenefitUtilizationSummariesOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2023-04-01-preview", + "2023-03-01", + "2022-10-01", + "2021-10-01", + "2019-11-01" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "GenerateReservationDetailsReport", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2023-04-01-preview", + "2023-03-01", + "2022-10-01", + "2021-10-01", + "2019-11-01" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "ReservationDetailsOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2023-04-01-preview", + "2023-03-01", + "2022-10-01", + "2021-10-01", + "2021-01-01", + "2020-12-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "GenerateDetailedCostReport", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2023-04-01-preview", + "2023-03-01", + "2022-10-01", + "2022-05-01" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "GenerateCostDetailsReport", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2023-04-01-preview", + "2023-03-01", + "2022-10-01", + "2022-05-01" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "CostDetailsOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2023-04-01-preview", + "2023-03-01", + "2022-10-01", + "2022-06-01", + "2022-04-01-preview", + "2022-02-01-preview", + "2021-10-01", + "2021-01-01", + "2020-12-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "OperationStatus", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2023-04-01-preview", + "2023-03-01", + "2022-10-01", + "2022-06-01", + "2022-04-01-preview", + "2022-02-01-preview", + "2021-10-01", + "2021-01-01", + "2020-12-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "OperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2023-04-01-preview", + "2023-03-01", + "2022-10-01", + "2022-06-01", + "2022-04-01-preview", + "2022-02-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Pricesheets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-05-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "MarkupRules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "StartConversation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "SendMessage", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "e5408ad0-c4e2-43aa-b6f2-3b4951286d99", + "roleDefinitionId": "5e4888b3-2747-4e5b-9897-ec0865b91bcf" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.CostManagementExports", + "namespace": "Microsoft.CostManagementExports", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "a0551534-cfc9-4e1f-9a7a-65093b32bb38", + "roleDefinitionId": "114bcfb6-5524-4d80-948a-d8a9937bc3e5" + }, + { + "applicationId": "01fc33a7-78ba-4d2f-a4b7-768e336e890e" + }, + { + "applicationId": "d8c767ef-3e9a-48c4-aef9-562696539b39" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.CustomerLockbox", + "namespace": "Microsoft.CustomerLockbox", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-02-28-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-02-28-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "TenantOptedIn", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-02-28-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "EnableLockbox", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-02-28-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "DisableLockbox", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-02-28-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "requests", + "zoneMappings": null + } + ] + }, + { + "authorization": { + "applicationId": "bf8eb16c-7ba7-4b47-86be-ac5e4b2007a5", + "roleDefinitionId": "FACF09C9-A5D0-4D34-8B1F-B623AC29C6F7" + }, + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.CustomProviders", + "namespace": "Microsoft.CustomProviders", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-09-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Australia Southeast", + "East US", + "West US 2", + "West Europe", + "North Europe", + "Canada Central", + "Canada East" + ], + "properties": null, + "resourceType": "resourceProviders", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-09-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "associations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Australia Southeast", + "East US", + "West US 2", + "West Europe", + "North Europe", + "Canada Central", + "Canada East" + ], + "properties": null, + "resourceType": "locations/operationStatuses", + "zoneMappings": null + } + ] + }, + { + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.D365CustomerInsights", + "namespace": "Microsoft.D365CustomerInsights", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2020-06-10-preview", + "profileVersion": "2018-12-01-profile" + } + ], + "apiVersions": [ + "2020-06-10-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-06-10-preview", + "locationMappings": null, + "locations": [ + "East US 2" + ], + "properties": null, + "resourceType": "instances", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-06-10-privatepreview", + "2020-06-10-preview", + "2020-06-10-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "ce34e7e5-485f-4d76-964f-b3d2b16d1e4f", + "roleDefinitionId": "996b8381-eac0-46be-8daf-9619bafd1073" + }, + { + "applicationId": "6f2d169c-08f3-4a4c-a982-bcaf2d038c45" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Dashboard", + "namespace": "Microsoft.Dashboard", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-preview", + "2022-08-01", + "2022-05-01-preview", + "2021-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-preview", + "2022-08-01", + "2022-05-01-preview", + "2021-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-preview", + "2022-08-01", + "2022-05-01-preview", + "2021-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US 2 EUAP", + "Central US EUAP", + "South Central US", + "West Europe", + "North Europe", + "UK South", + "East US", + "East US 2", + "West Central US", + "Australia East", + "Sweden Central", + "West US", + "West US 2", + "West US 3", + "Central US", + "Southeast Asia", + "Canada Central", + "Central India", + "East Asia" + ], + "properties": null, + "resourceType": "locations/operationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-preview", + "2022-08-01", + "2022-05-01-preview", + "2021-09-01-preview" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "South Central US", + "West Central US", + "West Europe", + "East US", + "East US 2", + "North Europe", + "UK South", + "Australia East", + "Sweden Central", + "West US", + "West US 2", + "West US 3", + "Central US", + "Southeast Asia", + "Canada Central", + "Central India", + "East Asia" + ], + "properties": null, + "resourceType": "grafana", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-preview", + "2022-08-01", + "2022-05-01-preview", + "2021-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-preview", + "2022-08-01", + "2022-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "South Central US", + "West Central US", + "West Europe", + "North Europe", + "UK South", + "East US", + "East US 2", + "Australia East", + "Sweden Central", + "West US", + "West US 2", + "West US 3", + "Central US", + "Southeast Asia", + "Canada Central", + "Central India", + "East Asia" + ], + "properties": null, + "resourceType": "grafana/privateEndpointConnections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-preview", + "2022-08-01", + "2022-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "South Central US", + "West Central US", + "West Europe", + "North Europe", + "UK South", + "East US", + "East US 2", + "Australia East", + "Sweden Central", + "West US", + "West US 2", + "West US 3", + "Central US", + "Southeast Asia", + "Canada Central", + "Central India", + "East Asia" + ], + "properties": null, + "resourceType": "grafana/privateLinkResources", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-preview", + "2022-08-01", + "2022-05-01-preview", + "2021-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations/checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "South Central US", + "West Central US", + "West Europe", + "East US", + "East US 2", + "North Europe", + "UK South", + "Australia East", + "Sweden Central", + "West US", + "West US 2", + "West US 3", + "Central US", + "Southeast Asia", + "Canada Central", + "Central India", + "East Asia" + ], + "properties": null, + "resourceType": "grafana/managedPrivateEndpoints", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "65d44c9a-7b6f-4c55-9504-100fe637b54b", + "roleDefinitionId": "313392fa-6c27-4ffe-a26d-9358752f978e" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.DatabaseWatcher", + "namespace": "Microsoft.DatabaseWatcher", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2023-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2023-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "5613cb5c-a7c9-4099-8034-511fd7616cb2", + "managedByRoleDefinitionId": "f4c0a4f9-768c-4927-ab83-d319111d6ef4", + "roleDefinitionId": "382D72D1-63DC-4243-9B99-CB69FDD473D8" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.DataBox", + "namespace": "Microsoft.DataBox", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-12-01", + "2022-10-01", + "2022-09-01", + "2022-02-01", + "2021-12-01", + "2021-08-01-preview", + "2021-05-01", + "2021-03-01", + "2020-11-01", + "2020-04-01", + "2019-09-01", + "2018-01-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "West Europe", + "Southeast Asia", + "East Asia", + "South India", + "Australia East", + "Canada Central", + "Korea Central", + "Japan East", + "South Africa North", + "Brazil South", + "UAE Central", + "UK South", + "Switzerland North", + "Norway West" + ], + "properties": null, + "resourceType": "jobs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-12-01", + "2022-10-01", + "2022-09-01", + "2022-02-01", + "2021-12-01", + "2021-08-01-preview", + "2021-05-01", + "2021-03-01", + "2020-11-01", + "2020-04-01", + "2019-09-01", + "2018-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-12-01", + "2022-10-01", + "2022-09-01", + "2022-02-01", + "2021-12-01", + "2021-08-01-preview", + "2021-05-01", + "2021-03-01", + "2020-11-01", + "2020-04-01", + "2019-09-01", + "2018-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "West Europe", + "Southeast Asia", + "East Asia", + "South India", + "Australia East", + "Canada Central", + "Korea Central", + "Japan East", + "South Africa North", + "Brazil South", + "UAE Central", + "UK South", + "Switzerland North", + "Norway West" + ], + "properties": null, + "resourceType": "locations/validateAddress", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-12-01", + "2022-10-01", + "2022-09-01", + "2022-02-01", + "2021-12-01", + "2021-08-01-preview", + "2021-05-01", + "2021-03-01", + "2020-11-01", + "2020-04-01", + "2019-09-01", + "2018-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "West Europe", + "Southeast Asia", + "East Asia", + "South India", + "Australia East", + "Canada Central", + "Korea Central", + "Japan East", + "South Africa North", + "Brazil South", + "UAE Central", + "UK South", + "Switzerland North", + "Norway West" + ], + "properties": null, + "resourceType": "locations/checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-12-01", + "2022-10-01", + "2022-09-01", + "2022-02-01", + "2021-12-01", + "2021-08-01-preview", + "2021-05-01", + "2021-03-01", + "2020-11-01", + "2020-04-01", + "2019-09-01", + "2018-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "West Europe", + "Southeast Asia", + "East Asia", + "South India", + "Australia East", + "Canada Central", + "Korea Central", + "Japan East", + "South Africa North", + "Brazil South", + "UAE Central", + "UK South", + "Switzerland North", + "Norway West" + ], + "properties": null, + "resourceType": "locations/operationresults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-12-01", + "2022-10-01", + "2022-09-01", + "2022-02-01", + "2021-12-01", + "2021-08-01-preview", + "2021-05-01", + "2021-03-01", + "2020-11-01", + "2020-04-01", + "2019-09-01", + "2018-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-12-01", + "2022-10-01", + "2022-09-01", + "2022-02-01", + "2021-12-01", + "2021-08-01-preview", + "2021-05-01", + "2021-03-01", + "2020-11-01", + "2020-04-01", + "2019-09-01", + "2018-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "West Europe", + "Southeast Asia", + "East Asia", + "South India", + "Australia East", + "Canada Central", + "Korea Central", + "Japan East", + "South Africa North", + "Brazil South", + "UAE Central", + "UK South", + "Switzerland North", + "Norway West" + ], + "properties": null, + "resourceType": "locations/availableSkus", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-12-01", + "2022-10-01", + "2022-09-01", + "2022-02-01", + "2021-12-01", + "2021-08-01-preview", + "2021-05-01", + "2021-03-01", + "2020-11-01", + "2020-04-01", + "2019-09-01", + "2018-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "West Europe", + "Southeast Asia", + "East Asia", + "South India", + "Australia East", + "Canada Central", + "Korea Central", + "Japan East", + "South Africa North", + "Brazil South", + "UAE Central", + "UK South", + "Switzerland North", + "Norway West" + ], + "properties": null, + "resourceType": "locations/validateInputs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-12-01", + "2022-10-01", + "2022-09-01", + "2022-02-01", + "2021-12-01", + "2021-08-01-preview", + "2021-05-01", + "2021-03-01", + "2020-11-01", + "2020-04-01", + "2019-09-01", + "2018-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "West Europe", + "Southeast Asia", + "East Asia", + "South India", + "Australia East", + "Canada Central", + "Korea Central", + "Japan East", + "South Africa North", + "Brazil South", + "UAE Central", + "UK South", + "Switzerland North", + "Norway West" + ], + "properties": null, + "resourceType": "locations/regionConfiguration", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01", + "2022-12-01", + "2022-10-01", + "2022-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "West Europe", + "Southeast Asia", + "East Asia", + "South India", + "Australia East", + "Canada Central", + "Korea Central", + "Japan East", + "South Africa North", + "Brazil South", + "UAE Central", + "UK South", + "Switzerland North", + "Norway West" + ], + "properties": null, + "resourceType": "jobs/eventGridFilters", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "2368d027-f996-4edb-bf48-928f98f2ab8c" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.DataBoxEdge", + "namespace": "Microsoft.DataBoxEdge", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-02-01", + "2023-01-01-preview", + "2022-12-01-preview", + "2022-04-01-preview", + "2022-03-01", + "2021-06-01-preview", + "2021-06-01", + "2021-02-01-preview", + "2021-02-01", + "2020-12-01", + "2020-09-01-preview", + "2020-09-01", + "2020-07-01-preview", + "2020-07-01", + "2020-06-01", + "2020-05-01-preview", + "2020-01-01", + "2019-08-01", + "2019-07-01", + "2019-03-01", + "2018-07-01", + "2017-09-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2021-06-01", + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Southeast Asia" + ], + "properties": null, + "resourceType": "DataBoxEdgeDevices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-02-01", + "2023-01-01-preview", + "2022-12-01-preview", + "2022-04-01-preview", + "2022-03-01", + "2021-06-01-preview", + "2021-06-01", + "2021-02-01-preview", + "2021-02-01", + "2020-12-01", + "2020-09-01-preview", + "2020-09-01", + "2020-07-01-preview", + "2020-07-01", + "2020-06-01", + "2020-05-01-preview", + "2020-01-01", + "2019-08-01", + "2019-07-01", + "2019-03-01", + "2018-07-01", + "2017-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Southeast Asia" + ], + "properties": null, + "resourceType": "DataBoxEdgeDevices/checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-02-01", + "2023-01-01-preview", + "2022-12-01-preview", + "2022-04-01-preview", + "2022-03-01", + "2021-06-01-preview", + "2021-06-01", + "2021-02-01-preview", + "2021-02-01", + "2020-12-01", + "2020-09-01-preview", + "2020-09-01", + "2020-07-01-preview", + "2020-07-01", + "2020-06-01", + "2020-05-01-preview", + "2020-01-01", + "2019-08-01", + "2019-07-01", + "2019-03-01", + "2018-07-01", + "2017-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-02-01-preview", + "2020-09-01-preview", + "2020-09-01", + "2020-07-01-preview", + "2020-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "availableSkus", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "d9327919-6775-4843-9037-3fb0fb0473cb", + "managedByRoleDefinitionId": "8e3af657-a8ff-443c-a75c-2fe8c4bcb635", + "roleDefinitionId": "f31567d0-b61f-43c2-97a5-a98cdc3bfcb6" + }, + { + "applicationId": "2ff814a6-3304-4ab8-85cb-cd0e6f879c1d", + "managedByRoleDefinitionId": "8e3af657-a8ff-443c-a75c-2fe8c4bcb635", + "roleDefinitionId": "f31567d0-b61f-43c2-97a5-a98cdc3bfcb6" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Databricks", + "namespace": "Microsoft.Databricks", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01", + "2022-04-01-preview", + "2021-04-01-preview", + "2018-04-01" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US 2", + "West Europe", + "East US", + "North Europe", + "Southeast Asia", + "East Asia", + "South Central US", + "North Central US", + "West US 2", + "Central US", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "Australia Central", + "Australia Central 2", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "Korea Central", + "South Africa North", + "Brazil South", + "Switzerland North", + "France Central", + "UAE North", + "Norway East", + "Germany West Central", + "Switzerland West", + "Sweden Central", + "Qatar Central", + "West Central US", + "West US 3" + ], + "properties": null, + "resourceType": "workspaces", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2022-10-01-preview", + "2022-04-01-preview" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "West US", + "East US 2", + "West Europe", + "East US", + "North Europe", + "Southeast Asia", + "East Asia", + "South Central US", + "North Central US", + "West US 2", + "Central US", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "Australia Central", + "Australia Central 2", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "Korea Central", + "South Africa North", + "Brazil South", + "Switzerland North", + "France Central", + "UAE North", + "Norway East", + "Germany West Central", + "Switzerland West", + "Sweden Central", + "Qatar Central", + "West Central US", + "West US 3" + ], + "properties": null, + "resourceType": "accessConnectors", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01", + "2022-04-01-preview", + "2021-04-01-preview", + "2018-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US 2", + "West Europe", + "North Europe", + "East US", + "Southeast Asia", + "East Asia", + "South Central US", + "North Central US", + "West US 2", + "Central US", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "Australia Central", + "Australia Central 2", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "Korea Central", + "South Africa North", + "UAE North", + "Brazil South", + "France Central", + "Switzerland North", + "Norway East", + "Germany West Central", + "Switzerland West", + "Sweden Central", + "Qatar Central", + "West Central US", + "West US 3" + ], + "properties": null, + "resourceType": "workspaces/virtualNetworkPeerings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US 2", + "West Europe", + "North Europe", + "East US", + "Southeast Asia", + "East Asia", + "South Central US", + "North Central US", + "West US 2", + "Central US", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "Australia Central", + "Australia Central 2", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "Korea Central", + "South Africa North", + "UAE North", + "Brazil South", + "France Central", + "Switzerland North", + "Norway East", + "Germany West Central", + "Switzerland West", + "Sweden Central", + "Qatar Central", + "West Central US", + "West US 3" + ], + "properties": null, + "resourceType": "workspaces/dbWorkspaces", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01", + "2022-04-01-preview", + "2021-04-01-preview", + "2018-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "West Europe", + "Japan East", + "East US", + "Korea Central", + "Central US", + "West US 2", + "East US 2", + "North Europe", + "Southeast Asia", + "East Asia", + "South Central US", + "North Central US", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "Australia Central", + "Australia Central 2", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "South Africa North", + "UAE North", + "Brazil South", + "France Central", + "Switzerland North", + "Norway East", + "Germany West Central", + "Switzerland West", + "Sweden Central", + "Qatar Central", + "West Central US", + "West US 3" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01", + "2022-04-01-preview", + "2021-04-01-preview", + "2018-04-01", + "2018-03-15", + "2018-03-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US 2", + "West Europe", + "North Europe", + "East US", + "Southeast Asia", + "East Asia", + "South Central US", + "North Central US", + "West US 2", + "Central US", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "Australia Central", + "Australia Central 2", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "Korea Central", + "South Africa North", + "UAE North", + "Brazil South", + "France Central", + "Switzerland North", + "Norway East", + "Germany West Central", + "Switzerland West", + "Sweden Central", + "Qatar Central", + "West Central US", + "West US 3" + ], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01", + "2022-04-01-preview", + "2021-04-01-preview", + "2018-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US 2", + "West Europe", + "East US", + "North Europe", + "Southeast Asia", + "East Asia", + "South Central US", + "North Central US", + "West US 2", + "Central US", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "Australia Central", + "Australia Central 2", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "Korea Central", + "South Africa North", + "Brazil South", + "Switzerland North", + "France Central", + "UAE North", + "Norway East", + "Germany West Central", + "Switzerland West", + "Sweden Central", + "Qatar Central", + "West Central US", + "West US 3" + ], + "properties": null, + "resourceType": "locations/operationstatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01", + "2022-04-01-preview", + "2021-04-01-preview", + "2018-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US 2", + "West Europe", + "East US", + "North Europe", + "Southeast Asia", + "East Asia", + "South Central US", + "North Central US", + "West US 2", + "Central US", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "Australia Central", + "Australia Central 2", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "Korea Central", + "South Africa North", + "Brazil South", + "Switzerland North", + "France Central", + "UAE North", + "Norway East", + "Germany West Central", + "Switzerland West", + "Sweden Central", + "Qatar Central", + "West Central US", + "West US 3" + ], + "properties": null, + "resourceType": "locations/getNetworkPolicies", + "zoneMappings": null + } + ] + }, + { + "authorization": { + "applicationId": "213f5f78-fb30-46c7-9e98-91c720a1c026", + "roleDefinitionId": "D55E2225-A6AB-481C-A5BE-1B7687C293FA" + }, + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.DataCatalog", + "namespace": "Microsoft.DataCatalog", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-03-30", + "2015-07-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West US", + "Australia East", + "West Europe", + "North Europe", + "Southeast Asia", + "West Central US" + ], + "properties": null, + "resourceType": "catalogs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-03-30", + "2015-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Europe" + ], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-03-30", + "2015-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Europe" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-03-30", + "2015-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-03-30", + "2015-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West US", + "Australia East", + "West Europe", + "North Europe", + "Southeast Asia", + "West Central US" + ], + "properties": null, + "resourceType": "locations/jobs", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "2cc451ba-a8ec-496f-bdff-591f5ae2876c", + "roleDefinitionId": "fdf757e9-19df-4152-a1ae-5e719161cd12" + }, + { + "applicationId": "69cced0a-335e-4420-9a2e-d3296b45f243", + "managedByRoleDefinitionId": "6cd52fc1-60db-468b-ba79-04c0db8dd2b7", + "roleDefinitionId": "fdf757e9-19df-4152-a1ae-5e719161cd12" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.DataCollaboration", + "namespace": "Microsoft.DataCollaboration", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-05-04-preview", + "2020-05-04-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "Australia East", + "West US 3", + "West US 2", + "UK South", + "Southeast Asia", + "North Europe", + "East US 2", + "West Europe", + "West US" + ], + "properties": null, + "resourceType": "listinvitations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-05-04-preview", + "2020-05-04-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East" + ], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-05-04-preview", + "2020-05-04-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "Australia East", + "Southeast Asia", + "North Europe" + ], + "properties": null, + "resourceType": "locations/operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-05-04-preview", + "2020-05-04-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "Australia East", + "West US 3", + "West US 2", + "UK South", + "Southeast Asia", + "North Europe", + "East US 2", + "West Europe", + "West US" + ], + "properties": null, + "resourceType": "locations/consumerInvitations/reject", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-05-04-preview", + "2020-05-04-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "Australia East", + "West US 3", + "West US 2", + "UK South", + "Southeast Asia", + "North Europe", + "East US 2", + "West Europe", + "West US" + ], + "properties": null, + "resourceType": "locations/consumerInvitations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-05-04-preview", + "2020-05-04-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "ae11f5fb-c627-4eec-b4a0-f7b5969426e5", + "roleDefinitionId": "904f1136-432f-44da-adc4-d3bdf27b156d" + }, + { + "applicationId": "055caf97-1b4f-4730-9f5d-acc24b707b06", + "roleDefinitionId": "4ac7c055-417e-47eb-9a38-137e6233a688" + }, + { + "applicationId": "0c6620df-7b29-44de-8ba4-688a56a20f9f", + "roleDefinitionId": "e2116b11-5fb7-4f68-b0e9-9d4173a5dfdb" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Datadog", + "namespace": "Microsoft.Datadog", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-07", + "2023-01-01", + "2022-08-01", + "2022-06-01", + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-07-07", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "registeredSubscriptions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-07", + "2023-01-01", + "2022-08-01", + "2022-06-01", + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-07", + "2023-01-01", + "2022-08-01", + "2022-06-01", + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "UK South", + "Central US EUAP", + "East US 2 EUAP" + ], + "properties": null, + "resourceType": "locations/operationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-07", + "2023-01-01", + "2022-08-01", + "2022-06-01", + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-07", + "2023-01-01", + "2022-08-01", + "2022-06-01", + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2" + ], + "properties": null, + "resourceType": "monitors", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-07", + "2023-01-01", + "2022-08-01", + "2022-06-01", + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2" + ], + "properties": null, + "resourceType": "monitors/tagRules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-07", + "2023-01-01", + "2022-08-01", + "2022-06-01", + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "UK South", + "West US 2" + ], + "properties": null, + "resourceType": "monitors/listMonitoredResources", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-07", + "2023-01-01", + "2022-08-01", + "2022-06-01", + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "UK South", + "West US 2" + ], + "properties": null, + "resourceType": "monitors/listApiKeys", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-07", + "2023-01-01", + "2022-08-01", + "2022-06-01", + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "UK South", + "West US 2" + ], + "properties": null, + "resourceType": "monitors/getDefaultKey", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-07", + "2023-01-01", + "2022-08-01", + "2022-06-01", + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "UK South", + "West US 2" + ], + "properties": null, + "resourceType": "monitors/setDefaultKey", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-07", + "2023-01-01", + "2022-08-01", + "2022-06-01", + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2" + ], + "properties": null, + "resourceType": "monitors/singleSignOnConfigurations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-07", + "2023-01-01", + "2022-08-01", + "2022-06-01", + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "UK South", + "West US 2" + ], + "properties": null, + "resourceType": "monitors/listHosts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-07", + "2023-01-01", + "2022-08-01", + "2022-06-01", + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "UK South", + "West US 2" + ], + "properties": null, + "resourceType": "monitors/listLinkedResources", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-07", + "2023-01-01", + "2022-08-01", + "2022-06-01", + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "UK South", + "West US 2" + ], + "properties": null, + "resourceType": "monitors/refreshSetPasswordLink", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-07", + "2023-01-01", + "2022-08-01", + "2022-06-01", + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "agreements", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-07", + "2023-01-01", + "2022-08-01", + "2022-06-01", + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2" + ], + "properties": null, + "resourceType": "monitors/monitoredSubscriptions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-07", + "2023-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "subscriptionStatuses", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "0947a342-ab4a-43be-93b3-b8243fc161e5", + "roleDefinitionId": "f0a6aa2a-e9d8-4bae-bcc2-36b405e8a5da" + }, + { + "applicationId": "5d13f7d7-0567-429c-9880-320e9555e5fc", + "roleDefinitionId": "956a8f20-9168-4c71-8e27-3c0460ac39a4" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.DataFactory", + "namespace": "Microsoft.DataFactory", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01", + "2017-09-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2018-06-01", + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "Central US", + "South Central US", + "Japan East", + "Canada Central", + "Australia East", + "Switzerland North", + "Germany West Central", + "Central India", + "France Central", + "Korea Central", + "Brazil South", + "West Europe", + "North Europe", + "UK South", + "West Central US", + "West US", + "West US 2", + "Southeast Asia", + "East Asia", + "North Central US", + "South Africa North", + "Australia Southeast", + "South India", + "Canada East", + "UK West", + "Japan West", + "Norway East", + "UAE North", + "West US 3", + "Jio India West", + "Switzerland West", + "Sweden Central", + "Qatar Central" + ], + "properties": null, + "resourceType": "factories", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01", + "2017-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2018-06-01", + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US 2", + "West US", + "Central US", + "South Central US", + "Japan East", + "Central India", + "Brazil South", + "France Central", + "Korea Central", + "Australia East", + "Switzerland North", + "Germany West Central", + "Canada Central", + "West Central US", + "North Europe", + "UK South", + "West Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Africa North", + "Australia Southeast", + "South India", + "Canada East", + "UK West", + "Japan West", + "Norway East", + "UAE North", + "West US 3", + "Jio India West", + "Switzerland West", + "Sweden Central", + "Qatar Central" + ], + "properties": null, + "resourceType": "factories/integrationRuntimes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "CheckNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01", + "2017-09-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West US", + "North Europe", + "West Central US" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01", + "2017-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2018-06-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01", + "2017-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2018-06-01", + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US 2", + "West US", + "Central US", + "South Central US", + "Japan East", + "Australia East", + "Switzerland North", + "Germany West Central", + "Canada Central", + "Central India", + "Brazil South", + "France Central", + "Korea Central", + "West Europe", + "North Europe", + "UK South", + "West Central US", + "Southeast Asia", + "East Asia", + "North Central US", + "South Africa North", + "Australia Southeast", + "South India", + "Canada East", + "UK West", + "Japan West", + "Norway East", + "UAE North", + "West US 3", + "Jio India West", + "Switzerland West", + "Sweden Central", + "Qatar Central" + ], + "properties": null, + "resourceType": "locations/configureFactoryRepo", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": "2018-06-01", + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West Europe", + "North Europe", + "UK South", + "West Central US", + "West US", + "Central US", + "South Central US", + "Japan East", + "Australia East", + "Switzerland North", + "Germany West Central", + "Canada Central", + "Central India", + "Brazil South", + "France Central", + "Korea Central", + "West US 2", + "Southeast Asia", + "East Asia", + "North Central US", + "South Africa North", + "Australia Southeast", + "South India", + "Canada East", + "UK West", + "Japan West", + "Norway East", + "UAE North", + "West US 3", + "Jio India West", + "Switzerland West", + "Sweden Central", + "Qatar Central" + ], + "properties": null, + "resourceType": "locations/getFeatureValue", + "zoneMappings": null + } + ] + }, + { + "authorization": { + "applicationId": "e9f49c6b-5ce5-44c8-925d-015017e9f7ad", + "roleDefinitionId": "77c80091-6c80-47e2-9942-6cc943597398" + }, + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.DataLakeAnalytics", + "namespace": "Microsoft.DataLakeAnalytics", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-11-01-preview", + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2016-11-01", + "locationMappings": null, + "locations": [ + "East US 2", + "North Europe", + "Central US", + "West Europe" + ], + "properties": null, + "resourceType": "accounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-11-01-preview", + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US 2", + "North Europe", + "Central US", + "West Europe" + ], + "properties": null, + "resourceType": "accounts/dataLakeStoreAccounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-11-01-preview", + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US 2", + "North Europe", + "Central US", + "West Europe" + ], + "properties": null, + "resourceType": "accounts/storageAccounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-11-01-preview", + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US 2", + "North Europe", + "Central US", + "West Europe" + ], + "properties": null, + "resourceType": "accounts/storageAccounts/containers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-11-01-preview", + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US 2", + "North Europe", + "Central US", + "West Europe" + ], + "properties": null, + "resourceType": "accounts/storageAccounts/containers/listSasTokens", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-11-01-preview", + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-11-01-preview", + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations/operationresults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-11-01-preview", + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations/checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-11-01-preview", + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations/capability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-11-01-preview", + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations/usages", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-11-01-preview", + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorization": { + "applicationId": "e9f49c6b-5ce5-44c8-925d-015017e9f7ad", + "roleDefinitionId": "17eb9cca-f08a-4499-b2d3-852d175f614f" + }, + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.DataLakeStore", + "namespace": "Microsoft.DataLakeStore", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2016-11-01", + "locationMappings": null, + "locations": [ + "East US 2", + "North Europe", + "Central US", + "West Europe", + "Australia East" + ], + "properties": null, + "resourceType": "accounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US 2", + "North Europe", + "Central US", + "West Europe", + "Australia East" + ], + "properties": null, + "resourceType": "accounts/firewallRules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US 2", + "North Europe", + "Central US", + "West Europe", + "Australia East" + ], + "properties": null, + "resourceType": "accounts/eventGridFilters", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations/operationresults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations/checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations/capability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations/usages", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations/deleteVirtualNetworkOrSubnets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorization": { + "applicationId": "a4bad4aa-bf02-4631-9f78-a64ffdba8150", + "managedByRoleDefinitionId": "6256fb55-9e59-4018-a9e1-76b11c0a4c89", + "roleDefinitionId": "b831a21d-db98-4760-89cb-bef871952df1" + }, + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.DataMigration", + "namespace": "Microsoft.DataMigration", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-03-30-preview", + "2022-01-30-preview", + "2021-10-30-preview", + "2021-06-30", + "2018-07-15-preview", + "2018-04-19", + "2018-03-31-preview", + "2018-03-15-preview", + "2017-11-15-privatepreview", + "2017-11-15-preview", + "2017-04-15-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-03-30-preview", + "2022-01-30-preview", + "2021-10-30-preview", + "2021-06-30", + "2018-07-15-preview", + "2018-04-19", + "2018-03-31-preview", + "2018-03-15-preview", + "2017-11-15-privatepreview", + "2017-11-15-preview", + "2017-04-15-privatepreview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-03-30-preview", + "locationMappings": null, + "locations": [ + "West Central US", + "Brazil South", + "West Europe", + "Australia East", + "East US", + "East US 2", + "Canada Central", + "East Asia", + "Central India", + "West India", + "Japan East", + "Korea South", + "North Central US", + "Australia Southeast", + "Canada East", + "Central US", + "South India", + "Japan West", + "Korea Central", + "North Europe", + "South Central US", + "Southeast Asia", + "UK West", + "West US", + "UK South", + "West US 2", + "South Africa North", + "UAE North", + "France Central", + "Norway East", + "Switzerland North", + "Germany West Central" + ], + "properties": null, + "resourceType": "services", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-03-30-preview", + "2022-01-30-preview", + "2021-10-30-preview", + "2021-06-30", + "2018-07-15-preview", + "2018-04-19", + "2018-03-31-preview", + "2018-03-15-preview", + "2017-11-15-privatepreview", + "2017-11-15-preview", + "2017-04-15-privatepreview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-03-30-preview", + "locationMappings": null, + "locations": [ + "West Central US", + "Brazil South", + "West Europe", + "Australia East", + "East US", + "East US 2", + "Canada Central", + "East Asia", + "Central India", + "West India", + "Japan East", + "Korea South", + "North Central US", + "Australia Southeast", + "Canada East", + "Central US", + "South India", + "Japan West", + "Korea Central", + "North Europe", + "South Central US", + "Southeast Asia", + "UK West", + "West US", + "UK South", + "West US 2", + "South Africa North", + "UAE North", + "France Central", + "Norway East", + "Switzerland North", + "Germany West Central" + ], + "properties": null, + "resourceType": "services/projects", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-03-30-preview", + "2022-01-30-preview", + "2021-10-30-preview", + "2021-06-30", + "2018-07-15-preview", + "2018-04-19", + "2018-03-31-preview", + "2018-03-15-preview", + "2017-11-15-privatepreview", + "2017-11-15-preview", + "2017-04-15-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "Brazil South", + "West Europe", + "Australia East", + "East US", + "East US 2", + "Canada Central", + "East Asia", + "Central India", + "West India", + "Japan East", + "Korea South", + "North Central US", + "Australia Southeast", + "Canada East", + "Central US", + "South India", + "Japan West", + "Korea Central", + "North Europe", + "South Central US", + "Southeast Asia", + "UK West", + "West US", + "UK South", + "West US 2", + "South Africa North", + "UAE North", + "France Central", + "Norway East", + "Switzerland North", + "Germany West Central" + ], + "properties": null, + "resourceType": "locations/operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-03-30-preview", + "2022-01-30-preview", + "2021-10-30-preview", + "2021-06-30", + "2018-07-15-preview", + "2018-04-19", + "2018-03-31-preview", + "2018-03-15-preview", + "2017-11-15-privatepreview", + "2017-11-15-preview", + "2017-04-15-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "Brazil South", + "West Europe", + "Australia East", + "East US", + "East US 2", + "Canada Central", + "East Asia", + "Central India", + "West India", + "Japan East", + "Korea South", + "North Central US", + "Australia Southeast", + "Canada East", + "Central US", + "South India", + "Japan West", + "Korea Central", + "North Europe", + "South Central US", + "Southeast Asia", + "UK West", + "West US", + "UK South", + "West US 2", + "South Africa North", + "UAE North", + "France Central", + "Norway East", + "Switzerland North", + "Germany West Central" + ], + "properties": null, + "resourceType": "locations/operationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-03-30-preview", + "2022-01-30-preview", + "2021-10-30-preview", + "2021-06-30", + "2018-07-15-preview", + "2018-04-19", + "2018-03-31-preview", + "2018-03-15-preview", + "2017-11-15-privatepreview", + "2017-11-15-preview", + "2017-04-15-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "Brazil South", + "West Europe", + "Australia East", + "East US", + "East US 2", + "Canada Central", + "East Asia", + "Central India", + "West India", + "Japan East", + "Korea South", + "North Central US", + "Australia Southeast", + "Canada East", + "Central US", + "South India", + "Japan West", + "Korea Central", + "North Europe", + "South Central US", + "Southeast Asia", + "UK West", + "West US", + "UK South", + "West US 2", + "South Africa North", + "UAE North", + "France Central", + "Norway East", + "Switzerland North", + "Germany West Central" + ], + "properties": null, + "resourceType": "locations/checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-03-30-preview", + "2022-01-30-preview", + "2021-10-30-preview", + "2020-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "Brazil South", + "West Europe", + "Australia East", + "East US", + "East US 2", + "Canada Central", + "East Asia", + "Central India", + "West India", + "Japan East", + "Korea South", + "North Central US", + "Australia Southeast", + "Canada East", + "Central US", + "South India", + "Japan West", + "Korea Central", + "North Europe", + "South Central US", + "Southeast Asia", + "UK West", + "West US", + "UK South", + "West US 2", + "South Africa North", + "UAE North", + "France Central", + "Norway East", + "Switzerland North", + "Germany West Central", + "East US 2 EUAP", + "Central US EUAP", + "Australia Central", + "Australia Central 2", + "Brazil Southeast", + "France South", + "Germany North", + "Jio India Central", + "Jio India West", + "Norway West", + "South Africa West", + "Sweden Central", + "Switzerland West", + "UAE Central", + "West US 3" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-03-30-preview", + "2022-01-30-preview", + "2021-10-30-preview", + "2020-09-01-preview" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-03-30-preview", + "locationMappings": null, + "locations": [ + "East US 2", + "East US", + "Canada Central", + "Central US", + "Canada East", + "West Europe", + "Australia East", + "Australia Southeast", + "France Central", + "Central India", + "South India", + "Japan East", + "South Central US", + "Southeast Asia", + "UK South", + "West US", + "West US 2", + "Australia Central", + "Australia Central 2", + "Brazil South", + "Brazil Southeast", + "East Asia", + "France South", + "Germany North", + "Germany West Central", + "West India", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "South Africa North", + "South Africa West", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK West", + "West Central US", + "West US 3" + ], + "properties": null, + "resourceType": "SqlMigrationServices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-03-30-preview", + "2022-01-30-preview", + "2021-10-30-preview", + "2020-09-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": "2022-03-30-preview", + "locationMappings": null, + "locations": [ + "East US 2", + "East US", + "Canada Central", + "Central US", + "Canada East", + "West Europe", + "Australia East", + "Australia Southeast", + "France Central", + "Central India", + "South India", + "Japan East", + "South Central US", + "Southeast Asia", + "UK South", + "West US", + "West US 2", + "Australia Central", + "Australia Central 2", + "Brazil South", + "Brazil Southeast", + "East Asia", + "France South", + "Germany North", + "Germany West Central", + "West India", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "South Africa North", + "South Africa West", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK West", + "West Central US", + "West US 3" + ], + "properties": null, + "resourceType": "DatabaseMigrations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-03-30-preview", + "2022-01-30-preview", + "2021-10-30-preview", + "2020-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2022-03-30-preview", + "locationMappings": null, + "locations": [ + "East US 2", + "East US", + "Canada Central", + "Central US", + "Canada East", + "West Europe", + "Australia East", + "Australia Southeast", + "France Central", + "Central India", + "South India", + "Japan East", + "South Central US", + "Southeast Asia", + "UK South", + "West US", + "West US 2", + "Australia Central", + "Australia Central 2", + "Brazil South", + "Brazil Southeast", + "East Asia", + "France South", + "Germany North", + "Germany West Central", + "West India", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "South Africa North", + "South Africa West", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK West", + "West Central US", + "West US 3" + ], + "properties": null, + "resourceType": "Locations/OperationTypes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-03-30-preview", + "2022-01-30-preview", + "2021-10-30-preview", + "2020-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2022-03-30-preview", + "locationMappings": null, + "locations": [ + "East US 2", + "East US", + "Canada Central", + "Central US", + "Canada East", + "West Europe", + "Australia East", + "Australia Southeast", + "France Central", + "Central India", + "South India", + "Japan East", + "South Central US", + "Southeast Asia", + "UK South", + "West US", + "West US 2", + "Australia Central", + "Australia Central 2", + "Brazil South", + "Brazil Southeast", + "East Asia", + "France South", + "Germany North", + "Germany West Central", + "West India", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "South Africa North", + "South Africa West", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK West", + "West Central US", + "West US 3" + ], + "properties": null, + "resourceType": "Locations/sqlMigrationServiceOperationResults", + "zoneMappings": null + } + ] + }, + { + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.DataProtection", + "namespace": "Microsoft.DataProtection", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-05-01", + "2023-04-01-preview", + "2023-01-01", + "2022-12-01", + "2022-11-01-preview", + "2022-10-01-preview", + "2022-09-01-preview", + "2022-05-01", + "2022-04-01", + "2022-03-01", + "2022-02-01-preview", + "2022-01-01", + "2021-12-01-preview", + "2021-10-01-preview", + "2021-07-01", + "2021-06-01-preview", + "2021-02-01-preview", + "2021-01-01", + "2020-01-01-alpha" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "South Central US", + "East US", + "East US 2", + "West US", + "UK South", + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central US", + "East Asia", + "France Central", + "Germany West Central", + "Central India", + "South India", + "West India", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK West", + "West Central US", + "West Europe", + "West US 2", + "Jio India West", + "Jio India Central", + "West US 3", + "Sweden Central", + "Qatar Central", + "Israel Central", + "Italy North", + "Poland Central" + ], + "properties": null, + "resourceType": "BackupVaults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-05-01", + "2023-04-01-preview", + "2023-01-01", + "2022-12-01", + "2022-11-01-preview", + "2022-10-01-preview", + "2022-09-01-preview", + "2022-05-01", + "2022-04-01", + "2022-03-01", + "2022-02-01-preview", + "2022-01-01", + "2021-12-01-preview", + "2021-10-01-preview", + "2021-07-01", + "2021-02-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US 2", + "North Europe", + "Southeast Asia", + "West Central US", + "South Central US", + "East US", + "West US", + "UK South", + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central US", + "East Asia", + "France Central", + "Germany West Central", + "Central India", + "South India", + "West India", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "Norway East", + "South Africa North", + "Switzerland North", + "UAE North", + "UK West", + "West Europe", + "West US 2", + "Jio India West", + "Jio India Central", + "West US 3", + "Sweden Central", + "Qatar Central", + "Israel Central", + "Italy North", + "Poland Central" + ], + "properties": null, + "resourceType": "ResourceGuards", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-05-01", + "2023-04-01-preview", + "2023-01-01", + "2022-12-01", + "2022-11-01-preview", + "2022-10-01-preview", + "2022-09-01-preview", + "2022-05-01", + "2022-04-01", + "2022-03-01", + "2022-02-01-preview", + "2022-01-01", + "2021-12-01-preview", + "2021-10-01-preview", + "2021-07-01", + "2021-06-01-preview", + "2021-02-01-preview", + "2021-01-01", + "2020-01-01-alpha" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-05-01", + "2023-04-01-preview", + "2023-01-01", + "2022-12-01", + "2022-11-01-preview", + "2022-10-01-preview", + "2022-09-01-preview", + "2022-05-01", + "2022-04-01", + "2022-03-01", + "2022-02-01-preview", + "2022-01-01", + "2021-12-01-preview", + "2021-10-01-preview", + "2021-07-01", + "2021-06-01-preview", + "2021-02-01-preview", + "2021-01-01", + "2020-01-01-alpha" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-05-01", + "2023-04-01-preview", + "2023-01-01", + "2022-12-01", + "2022-11-01-preview", + "2022-10-01-preview", + "2022-09-01-preview", + "2022-05-01", + "2022-04-01", + "2022-03-01", + "2022-02-01-preview", + "2022-01-01", + "2021-12-01-preview", + "2021-10-01-preview", + "2021-07-01", + "2021-06-01-preview", + "2021-02-01-preview", + "2021-01-01", + "2020-01-01-alpha" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "South Central US", + "East US", + "East US 2", + "West US", + "UK South", + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central US", + "East Asia", + "France Central", + "Germany West Central", + "Central India", + "South India", + "West India", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK West", + "West Central US", + "West Europe", + "West US 2", + "Jio India West", + "Jio India Central", + "West US 3", + "Sweden Central", + "Qatar Central", + "Israel Central", + "Italy North", + "Poland Central" + ], + "properties": null, + "resourceType": "locations/operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-05-01", + "2023-04-01-preview", + "2023-01-01", + "2022-12-01", + "2022-11-01-preview", + "2022-10-01-preview", + "2022-09-01-preview", + "2022-05-01", + "2022-04-01", + "2022-03-01", + "2022-02-01-preview", + "2022-01-01", + "2021-12-01-preview", + "2021-10-01-preview", + "2021-07-01", + "2021-06-01-preview", + "2021-02-01-preview", + "2021-01-01", + "2020-01-01-alpha" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "South Central US", + "East US", + "East US 2", + "West US", + "UK South", + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central US", + "East Asia", + "France Central", + "Germany West Central", + "Central India", + "South India", + "West India", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK West", + "West Central US", + "West Europe", + "West US 2", + "Jio India West", + "Jio India Central", + "West US 3", + "Sweden Central", + "Qatar Central", + "Israel Central", + "Italy North", + "Poland Central" + ], + "properties": null, + "resourceType": "locations/operationStatus", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-05-01", + "2023-04-01-preview", + "2023-01-01", + "2022-12-01", + "2022-11-01-preview", + "2022-10-01-preview", + "2022-09-01-preview", + "2022-05-01", + "2022-04-01", + "2022-03-01", + "2022-02-01-preview", + "2022-01-01", + "2021-12-01-preview", + "2021-10-01-preview", + "2021-07-01", + "2021-06-01-preview", + "2021-02-01-preview", + "2021-01-01", + "2020-01-01-alpha" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "South Central US", + "East US", + "East US 2", + "West US", + "UK South", + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central US", + "East Asia", + "France Central", + "Germany West Central", + "Central India", + "South India", + "West India", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK West", + "West Central US", + "West Europe", + "West US 2", + "Jio India West", + "Jio India Central", + "West US 3", + "Sweden Central", + "Qatar Central", + "Israel Central", + "Italy North", + "Poland Central" + ], + "properties": null, + "resourceType": "locations/checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-05-01", + "2023-04-01-preview", + "2023-01-01", + "2022-12-01", + "2022-11-01-preview", + "2022-10-01-preview", + "2022-09-01-preview", + "2022-05-01", + "2022-04-01", + "2022-03-01", + "2022-02-01-preview", + "2022-01-01", + "2021-12-01-preview", + "2021-10-01-preview", + "2021-07-01", + "2021-06-01-preview", + "2021-02-01-preview", + "2021-01-01", + "2020-01-01-alpha" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "South Central US", + "East US", + "East US 2", + "West US", + "UK South", + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central US", + "East Asia", + "France Central", + "Germany West Central", + "Central India", + "South India", + "West India", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK West", + "West Central US", + "West Europe", + "West US 2", + "Jio India West", + "Jio India Central", + "West US 3", + "Sweden Central", + "Qatar Central", + "Israel Central", + "Italy North", + "Poland Central" + ], + "properties": null, + "resourceType": "locations/checkFeatureSupport", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2022-11-01-preview", + "2022-10-01-preview", + "2022-09-01-preview", + "2022-03-31-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "South Central US", + "East US", + "East US 2", + "West US", + "UK South", + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central US", + "East Asia", + "France Central", + "Germany West Central", + "Central India", + "South India", + "West India", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK West", + "West Central US", + "West Europe", + "West US 2", + "Jio India West", + "Jio India Central", + "West US 3", + "Sweden Central", + "Qatar Central", + "Israel Central", + "Italy North", + "Poland Central" + ], + "properties": null, + "resourceType": "backupInstances", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "South Central US", + "East US", + "East US 2", + "West US", + "UK South", + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central US", + "East Asia", + "France Central", + "Germany West Central", + "Central India", + "South India", + "West India", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK West", + "West Central US", + "West Europe", + "West US 2", + "Jio India West", + "Jio India Central", + "West US 3", + "Sweden Central", + "Qatar Central", + "Israel Central", + "Italy North", + "Poland Central" + ], + "properties": null, + "resourceType": "locations/fetchSecondaryRecoveryPoints", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "South Central US", + "East US", + "East US 2", + "West US", + "UK South", + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central US", + "East Asia", + "France Central", + "Germany West Central", + "Central India", + "South India", + "West India", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK West", + "West Central US", + "West Europe", + "West US 2", + "Jio India West", + "Jio India Central", + "West US 3", + "Sweden Central", + "Qatar Central", + "Israel Central", + "Italy North", + "Poland Central" + ], + "properties": null, + "resourceType": "locations/fetchCrossRegionRestoreJobs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "South Central US", + "East US", + "East US 2", + "West US", + "UK South", + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central US", + "East Asia", + "France Central", + "Germany West Central", + "Central India", + "South India", + "West India", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK West", + "West Central US", + "West Europe", + "West US 2", + "Jio India West", + "Jio India Central", + "West US 3", + "Sweden Central", + "Qatar Central", + "Israel Central", + "Italy North", + "Poland Central" + ], + "properties": null, + "resourceType": "locations/fetchCrossRegionRestoreJob", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "South Central US", + "East US", + "East US 2", + "West US", + "UK South", + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central US", + "East Asia", + "France Central", + "Germany West Central", + "Central India", + "South India", + "West India", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK West", + "West Central US", + "West Europe", + "West US 2", + "Jio India West", + "Jio India Central", + "West US 3", + "Sweden Central", + "Qatar Central", + "Israel Central", + "Italy North", + "Poland Central" + ], + "properties": null, + "resourceType": "locations/validateCrossRegionRestore", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "South Central US", + "East US", + "East US 2", + "West US", + "UK South", + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central US", + "East Asia", + "France Central", + "Germany West Central", + "Central India", + "South India", + "West India", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK West", + "West Central US", + "West Europe", + "West US 2", + "Jio India West", + "Jio India Central", + "West US 3", + "Sweden Central", + "Qatar Central", + "Israel Central", + "Italy North", + "Poland Central" + ], + "properties": null, + "resourceType": "locations/crossRegionRestore", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "B8340C3B-9267-498F-B21A-15D5547FD85E", + "roleDefinitionId": "8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6" + }, + { + "applicationId": "CD3454BC-4B9C-47D4-A8E5-93717DBA34EC", + "managedByAuthorization": { + "managedByResourceRoleDefinitionId": "9E3AF657-A8FF-583C-A75C-2FE7C4BCB635" + }, + "managedByRoleDefinitionId": "9E3AF657-A8FF-583C-A75C-2FE7C4BCB635", + "roleDefinitionId": "6D693184-FCFE-4AB4-A3DC-5CCC76E34850" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.DataReplication", + "namespace": "Microsoft.DataReplication", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-02-16-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Europe", + "East US", + "Canada Central", + "Central US", + "East Asia", + "Southeast Asia", + "North Europe", + "West Central US", + "West US 2" + ], + "properties": null, + "resourceType": "replicationVaults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-02-16-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Europe", + "East US", + "Canada Central", + "Central US", + "East Asia", + "Southeast Asia", + "North Europe", + "West Central US", + "West US 2" + ], + "properties": null, + "resourceType": "replicationFabrics", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-02-16-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Europe" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorization": { + "applicationId": "799f1985-1517-4fe1-af2b-ba3d87d4996b", + "roleDefinitionId": "0146496b-e06f-439a-83be-49fac884edf5" + }, + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.DataShare", + "namespace": "Microsoft.DataShare", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-08-01", + "2020-09-01", + "2019-11-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "properties": null, + "resourceType": "accounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-08-01", + "2020-09-01", + "2019-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "properties": null, + "resourceType": "accounts/shares", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-08-01", + "2020-09-01", + "2019-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "properties": null, + "resourceType": "accounts/shares/datasets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-08-01", + "2020-09-01", + "2019-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "properties": null, + "resourceType": "accounts/shares/synchronizationSettings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-08-01", + "2020-09-01", + "2019-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "properties": null, + "resourceType": "accounts/shares/invitations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-08-01", + "2020-09-01", + "2019-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "properties": null, + "resourceType": "accounts/sharesubscriptions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-08-01", + "2020-09-01", + "2019-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "properties": null, + "resourceType": "accounts/shares/providersharesubscriptions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-08-01", + "2020-09-01", + "2019-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "properties": null, + "resourceType": "accounts/sharesubscriptions/datasetmappings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-08-01", + "2020-09-01", + "2019-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "properties": null, + "resourceType": "accounts/sharesubscriptions/triggers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-08-01", + "2020-09-01", + "2019-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "properties": null, + "resourceType": "accounts/sharesubscriptions/consumerSourceDataSets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-11-01-alpha" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Canada Central", + "Central India", + "East Asia", + "East US", + "East US 2", + "North Europe", + "South Africa North", + "Southeast Asia", + "UK South", + "West Central US", + "West US 2" + ], + "properties": null, + "resourceType": "listinvitations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-08-01", + "2020-10-01-preview", + "2020-09-01", + "2019-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US 2" + ], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-08-01", + "2020-09-01", + "2019-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "UK South", + "West Central US", + "West Europe", + "West US", + "West US 2" + ], + "properties": null, + "resourceType": "locations/operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-08-01", + "2020-10-01-preview", + "2020-09-01", + "2019-11-01", + "2018-11-01-alpha" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "UK South", + "West Central US", + "West Europe", + "West US", + "West US 2" + ], + "properties": null, + "resourceType": "locations/registerEmail", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-08-01", + "2020-10-01-preview", + "2020-09-01", + "2019-11-01", + "2018-11-01-alpha" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "UK South", + "West Central US", + "West Europe", + "West US", + "West US 2" + ], + "properties": null, + "resourceType": "locations/activateEmail", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-08-01", + "2020-10-01-preview", + "2020-09-01", + "2019-11-01", + "2018-11-01-alpha" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "UK South", + "West Central US", + "West Europe", + "West US", + "West US 2" + ], + "properties": null, + "resourceType": "locations/rejectInvitation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-08-01", + "2020-10-01-preview", + "2020-09-01", + "2019-11-01", + "2018-11-01-alpha" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "UK South", + "West Central US", + "West Europe", + "West US", + "West US 2" + ], + "properties": null, + "resourceType": "locations/consumerInvitations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-08-01", + "2020-10-01-preview", + "2020-09-01", + "2019-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "76cd24bf-a9fc-4344-b1dc-908275de6d6d", + "roleDefinitionId": "c13b7b9c-2ed1-4901-b8a8-16f35468da29" + }, + { + "applicationId": "123cd850-d9df-40bd-94d5-c9f07b7fa203" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.DBforMariaDB", + "namespace": "Microsoft.DBforMariaDB", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central US", + "Central India", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "Sweden Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/recoverableServers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/virtualNetworkRules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/azureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/performanceTiers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/securityAlertPoliciesAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/privateEndpointConnectionProxyOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/privateEndpointConnectionProxyAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/privateEndpointConnectionOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/privateEndpointConnectionAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/securityAlertPoliciesOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "Sweden Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/recommendedActionSessionsAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/recommendedActionSessionsOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/topQueryStatistics", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/queryTexts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/waitStatistics", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/resetQueryPerformanceInsightData", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/advisors", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/privateLinkResources", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/privateEndpointConnections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/privateEndpointConnectionProxies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-01-01-privatepreview", + "2020-01-01-preview", + "2020-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Jio India West" + ], + "properties": null, + "resourceType": "servers/keys", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-01-01-privatepreview", + "2020-01-01-preview", + "2020-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/serverKeyAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-01-01-privatepreview", + "2020-01-01-preview", + "2020-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/serverKeyOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-01-01-privatepreview", + "2020-01-01-preview", + "2020-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/start", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-01-01-privatepreview", + "2020-01-01-preview", + "2020-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/stop", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "76cd24bf-a9fc-4344-b1dc-908275de6d6d", + "roleDefinitionId": "c13b7b9c-2ed1-4901-b8a8-16f35468da29" + }, + { + "applicationId": "e6f9f783-1fdb-4755-acaf-abed6c642885", + "roleDefinitionId": "a864a0a2-ab66-47a6-97a8-223dc1379f87" + }, + { + "applicationId": "123cd850-d9df-40bd-94d5-c9f07b7fa203" + }, + { + "applicationId": "cb43afba-eb6b-4cef-bf00-758b6c233beb", + "roleDefinitionId": "3b2f5d23-023f-4029-98d6-d73e741523c0" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.DBforMySQL", + "namespace": "Microsoft.DBforMySQL", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-30", + "2023-06-01-preview", + "2022-09-30-privatepreview", + "2022-09-30-preview", + "2022-06-01-privatepreview", + "2022-06-01-preview", + "2022-01-01", + "2021-12-01-preview", + "2021-05-01-preview", + "2021-05-01", + "2017-12-01-preview", + "2017-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "Central US EUAP", + "East Asia", + "East US 2", + "East US 2 EUAP", + "East US", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-12-01-preview", + "2017-12-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-30", + "2023-06-01-preview", + "2022-09-30-privatepreview", + "2022-09-30-preview", + "2022-06-01-privatepreview", + "2022-06-01-preview", + "2022-01-01", + "2021-12-01-preview", + "2021-05-01-preview", + "2021-05-01", + "2020-07-01-privatepreview", + "2020-07-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Southeast", + "Canada East", + "East Asia", + "East US 2", + "Germany North", + "Germany West Central", + "Central India", + "South India", + "Japan West", + "Korea South", + "North Central US", + "Norway East", + "Norway West", + "Sweden Central", + "UAE North", + "UK West", + "West Central US", + "West US", + "West US 2", + "West US 3", + "Brazil South", + "Brazil Southeast", + "France Central", + "France South", + "South Africa North", + "South Africa West", + "Southeast Asia", + "North Europe", + "Australia East", + "Japan East", + "Korea Central", + "UK South", + "West Europe", + "Canada Central", + "Central US", + "East US", + "Switzerland North", + "Switzerland West", + "South Central US", + "Poland Central", + "Italy North", + "Jio India West", + "Qatar Central" + ], + "properties": null, + "resourceType": "flexibleServers", + "zoneMappings": [ + { + "location": "Australia East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Central India", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East Asia", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Korea Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Norway East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Poland Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Qatar Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "South Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Sweden Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Switzerland North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "UAE North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 3", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Italy North", + "zones": [ + "1", + "2", + "3" + ] + } + ] + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-12-01-preview", + "2017-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central US", + "Central India", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/recoverableServers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-12-01-preview", + "2017-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/virtualNetworkRules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-30", + "2023-06-01-preview", + "2022-09-30-privatepreview", + "2022-09-30-preview", + "2022-06-01-privatepreview", + "2022-06-01-preview", + "2022-01-01", + "2021-12-01-preview", + "2021-05-01-preview", + "2021-05-01", + "2020-07-01-privatepreview", + "2020-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Southeast", + "Canada East", + "East Asia", + "East US 2", + "Germany North", + "Germany West Central", + "Central India", + "South India", + "Japan West", + "Korea South", + "North Central US", + "Norway East", + "Norway West", + "Sweden Central", + "UAE North", + "UK West", + "West Central US", + "West US", + "West US 2", + "West US 3", + "Brazil South", + "Brazil Southeast", + "France Central", + "France South", + "South Africa North", + "South Africa West", + "Southeast Asia", + "North Europe", + "Australia East", + "Japan East", + "Korea Central", + "UK South", + "West Europe", + "Canada Central", + "Central US", + "East US", + "Switzerland North", + "Switzerland West", + "South Central US", + "Poland Central", + "Italy North", + "Jio India West", + "Qatar Central" + ], + "properties": null, + "resourceType": "locations/capabilities", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-30", + "2023-06-01-preview", + "2022-09-30-privatepreview", + "2022-09-30-preview", + "2022-06-01-privatepreview", + "2022-06-01-preview", + "2022-01-01", + "2021-12-01-preview", + "2021-05-01-preview", + "2021-05-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Australia Central", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "Central India", + "South India", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Sweden Central", + "South Africa North", + "South Africa West", + "South Central US", + "Southeast Asia", + "Switzerland North", + "Switzerland West", + "UAE North", + "UK West", + "UK South", + "West Central US", + "West Europe", + "West US", + "West US 2", + "West US 3", + "Poland Central", + "Italy North", + "Jio India West", + "Qatar Central" + ], + "properties": null, + "resourceType": "locations/checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-12-01-preview", + "2017-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-06-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "Norway East", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "assessForMigration", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-30", + "2023-06-01-preview", + "2022-09-30-privatepreview", + "2022-09-30-preview", + "2022-06-01-privatepreview", + "2022-06-01-preview", + "2022-01-01", + "2021-12-01-preview", + "2021-05-01-preview", + "2021-05-01", + "2020-07-01-privatepreview", + "2020-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "Norway East", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "getPrivateDnsZoneSuffix", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-30", + "2023-06-01-preview", + "2022-09-30-privatepreview", + "2022-09-30-preview", + "2022-06-01-privatepreview", + "2022-06-01-preview", + "2022-01-01", + "2021-12-01-preview", + "2021-05-01-preview", + "2021-05-01", + "2020-07-01-privatepreview", + "2020-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Southeast", + "Canada East", + "East Asia", + "East US 2", + "Germany North", + "Germany West Central", + "Central India", + "South India", + "Japan West", + "Korea South", + "North Central US", + "Norway East", + "Norway West", + "Sweden Central", + "UAE North", + "UK West", + "West Central US", + "West US", + "West US 2", + "West US 3", + "Brazil South", + "Brazil Southeast", + "France Central", + "France South", + "South Africa North", + "South Africa West", + "Southeast Asia", + "North Europe", + "Australia East", + "Japan East", + "Korea Central", + "UK South", + "West Europe", + "Canada Central", + "Central US", + "East US", + "Switzerland North", + "Switzerland West", + "South Central US", + "Poland Central", + "Italy North", + "Jio India West", + "Qatar Central" + ], + "properties": null, + "resourceType": "locations/checkVirtualNetworkSubnetUsage", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-30", + "2023-06-01-preview", + "2022-09-30-privatepreview", + "2022-09-30-preview", + "2022-06-01-preview", + "2022-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Southeast", + "Canada East", + "East Asia", + "East US 2", + "Germany North", + "Germany West Central", + "Central India", + "South India", + "Japan West", + "Korea South", + "North Central US", + "Norway East", + "Norway West", + "Sweden Central", + "UAE North", + "UK West", + "West Central US", + "West US", + "West US 2", + "West US 3", + "Brazil South", + "Brazil Southeast", + "France Central", + "France South", + "South Africa North", + "South Africa West", + "Southeast Asia", + "North Europe", + "Australia East", + "Japan East", + "Korea Central", + "UK South", + "West Europe", + "Canada Central", + "Central US", + "East US", + "Switzerland North", + "Switzerland West", + "South Central US", + "Poland Central", + "Italy North", + "Israel Central", + "Jio India West", + "Qatar Central" + ], + "properties": null, + "resourceType": "locations/listMigrations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-30", + "2023-06-01-preview", + "2022-09-30-privatepreview", + "2022-09-30-preview", + "2022-06-01-preview", + "2022-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Southeast", + "Canada East", + "East Asia", + "East US 2", + "Germany North", + "Germany West Central", + "Central India", + "South India", + "Japan West", + "Korea South", + "North Central US", + "Norway East", + "Norway West", + "Sweden Central", + "UAE North", + "UK West", + "West Central US", + "West US", + "West US 2", + "West US 3", + "Brazil South", + "Brazil Southeast", + "France Central", + "France South", + "South Africa North", + "South Africa West", + "Southeast Asia", + "North Europe", + "Australia East", + "Japan East", + "Korea Central", + "UK South", + "West Europe", + "Canada Central", + "Central US", + "East US", + "Switzerland North", + "Switzerland West", + "South Central US", + "Poland Central", + "Italy North", + "Israel Central", + "Jio India West", + "Qatar Central" + ], + "properties": null, + "resourceType": "locations/updateMigration", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-12-01-preview", + "2017-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3", + "Germany North", + "Norway West", + "Brazil Southeast", + "Switzerland West", + "Poland Central", + "Italy North", + "Israel Central", + "Qatar Central" + ], + "properties": null, + "resourceType": "locations/operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3", + "Germany North", + "Norway West", + "Brazil Southeast", + "Switzerland West", + "Poland Central", + "Italy North", + "Israel Central", + "Qatar Central" + ], + "properties": null, + "resourceType": "locations/azureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-12-01-preview", + "2017-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/administratorOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-12-01-preview", + "2017-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/administratorAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/privateEndpointConnectionProxyOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/privateEndpointConnectionProxyAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/privateEndpointConnectionOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/privateEndpointConnectionAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-12-01-preview", + "2017-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "UAE North", + "Norway East", + "Sweden Central", + "Switzerland North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/performanceTiers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/securityAlertPoliciesAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/securityAlertPoliciesOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/recommendedActionSessionsAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/recommendedActionSessionsOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/topQueryStatistics", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/queryTexts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/waitStatistics", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/resetQueryPerformanceInsightData", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/advisors", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/privateLinkResources", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/privateEndpointConnections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/privateEndpointConnectionProxies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-01-01-privatepreview", + "2020-01-01-preview", + "2020-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/keys", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-01-01-privatepreview", + "2020-01-01-preview", + "2020-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/serverKeyAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-01-01-privatepreview", + "2020-01-01-preview", + "2020-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/serverKeyOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-01-01-privatepreview", + "2020-01-01-preview", + "2020-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/start", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-01-01-privatepreview", + "2020-01-01-preview", + "2020-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/stop", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-01-01-privatepreview", + "2020-01-01-preview", + "2020-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/upgrade", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "76cd24bf-a9fc-4344-b1dc-908275de6d6d", + "roleDefinitionId": "c13b7b9c-2ed1-4901-b8a8-16f35468da29" + }, + { + "applicationId": "93efed00-6552-4119-833a-422b297199f9", + "roleDefinitionId": "a864a0a2-ab66-47a6-97a8-223dc1379f87" + }, + { + "applicationId": "5ed8fe41-c1bc-4c06-a531-d91e1f1c2fac", + "roleDefinitionId": "95173bdd-3b59-46f3-be65-7cee4193b078" + }, + { + "applicationId": "123cd850-d9df-40bd-94d5-c9f07b7fa203" + }, + { + "applicationId": "5657e26c-cc92-45d9-bc47-9da6cfdb4ed9" + }, + { + "applicationId": "b4fa09d8-5da5-4352-83d9-05c2a44cf431" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.DBforPostgreSQL", + "namespace": "Microsoft.DBforPostgreSQL", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-03-01-preview", + "2022-12-01", + "2022-11-01-preview", + "2022-05-01-privatepreview", + "2022-05-01-preview", + "2022-03-08-preview", + "2022-01-20-preview", + "2021-06-01-preview", + "2021-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "Central US EUAP", + "East Asia", + "East US 2", + "East US 2 EUAP", + "East US", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-12-01-preview", + "2017-12-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-02-preview", + "2022-11-08", + "2020-10-05-privatepreview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US 2", + "East US", + "North Central US", + "Canada Central", + "Australia East", + "UK South", + "West Europe", + "Southeast Asia", + "West US 2", + "France Central", + "Switzerland North", + "Switzerland West", + "Sweden Central", + "Qatar Central", + "Australia Central", + "Canada East", + "Brazil South", + "North Europe", + "Japan East", + "Central US", + "Korea Central", + "Central India", + "East Asia", + "Germany West Central", + "Japan West", + "West Central US", + "West US", + "South Central US", + "West US 3" + ], + "properties": null, + "resourceType": "serverGroupsv2", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-03-01-preview", + "2023-01-01-privatepreview", + "2022-12-01", + "2022-11-01-preview", + "2022-05-01-privatepreview", + "2022-05-01-preview", + "2022-03-08-privatepreview", + "2022-03-08-preview", + "2022-01-20-preview", + "2021-06-01-preview", + "2021-06-01", + "2020-02-14-privatepreview", + "2020-02-14-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Australia Central", + "Australia Southeast", + "Brazil South", + "Canada East", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany West Central", + "Korea Central", + "Korea South", + "Japan East", + "Japan West", + "Jio India West", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Switzerland North", + "Switzerland West", + "Sweden Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West US", + "West US 2", + "West US 3", + "West Europe" + ], + "properties": null, + "resourceType": "flexibleServers", + "zoneMappings": [ + { + "location": "Australia East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Central India", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East Asia", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Korea Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Norway East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Poland Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Qatar Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "South Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Sweden Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Switzerland North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "UAE North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 3", + "zones": [ + "1", + "2", + "3" + ] + } + ] + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-03-01-preview", + "2022-12-01", + "2022-11-01-preview", + "2022-05-01-privatepreview", + "2022-05-01-preview", + "2022-03-08-privatepreview", + "2022-03-08-preview", + "2022-01-20-preview", + "2021-06-01-preview", + "2021-06-01", + "2020-02-14-privatepreview", + "2020-02-14-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Australia Central", + "Australia Southeast", + "Brazil South", + "Canada East", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Switzerland North", + "Switzerland West", + "Sweden Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/capabilities", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-03-01-preview", + "2022-12-01", + "2022-11-01-preview", + "2022-05-01-privatepreview", + "2022-05-01-preview", + "2022-03-08-privatepreview", + "2022-03-08-preview", + "2022-01-20-preview", + "2021-06-01-preview", + "2021-06-01", + "2020-02-14-privatepreview", + "2020-02-14-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Australia Central", + "Australia Southeast", + "Brazil South", + "Canada East", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Switzerland North", + "Switzerland West", + "Sweden Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-12-01-preview", + "2017-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/recoverableServers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-12-01-preview", + "2017-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/virtualNetworkRules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-03-01-preview", + "2022-12-01", + "2022-11-01-preview", + "2022-05-01-privatepreview", + "2022-05-01-preview", + "2022-03-08-privatepreview", + "2022-03-08-preview", + "2022-01-20-preview", + "2021-06-01-preview", + "2021-06-01", + "2020-11-05-preview", + "2020-02-14-privatepreview", + "2020-02-14-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3", + "Qatar Central", + "Brazil Southeast", + "Central US EUAP", + "East US 2 EUAP", + "Germany North", + "Israel Central", + "Italy North", + "Jio India Central", + "Norway West", + "Poland Central", + "UAE Central" + ], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-02-preview", + "2022-11-08", + "2020-10-05-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US 2", + "East US", + "North Europe", + "Southeast Asia", + "West Europe", + "West US 2", + "North Central US", + "Canada Central", + "Australia East", + "UK South", + "Japan East", + "Central US", + "Korea Central", + "Central India", + "East Asia", + "France Central", + "Switzerland North", + "Switzerland West", + "Sweden Central", + "Qatar Central", + "Australia Central", + "Canada East", + "Brazil South", + "Germany West Central", + "Japan West", + "West Central US", + "West US", + "South Central US", + "West US 3" + ], + "properties": null, + "resourceType": "availableEngineVersions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-privatepreview", + "2022-06-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada East", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany West Central", + "Korea Central", + "Korea South", + "Japan East", + "Japan West", + "Jio India West", + "North Central US", + "North Europe", + "Norway East", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Switzerland North", + "Switzerland West", + "Sweden Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West US", + "West US 2", + "West US 3", + "West Europe" + ], + "properties": null, + "resourceType": "flexibleServers/privateEndpointConnectionProxies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada East", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany West Central", + "Korea Central", + "Korea South", + "Japan East", + "Japan West", + "Jio India West", + "North Central US", + "North Europe", + "Norway East", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Switzerland North", + "Switzerland West", + "Sweden Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West US", + "West US 2", + "West US 3", + "West Europe" + ], + "properties": null, + "resourceType": "flexibleServers/privateEndpointConnections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada East", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany West Central", + "Korea Central", + "Korea South", + "Japan East", + "Japan West", + "Jio India West", + "North Central US", + "North Europe", + "Norway East", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Switzerland North", + "Switzerland West", + "Sweden Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West US", + "West US 2", + "West US 3", + "West Europe" + ], + "properties": null, + "resourceType": "flexibleServers/privateLinkResources", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "North Europe", + "North Central US", + "Norway East", + "South Africa North", + "South Central US", + "Southeast Asia", + "Switzerland North", + "Switzerland West", + "Sweden Central", + "UAE North", + "UK South", + "West Europe", + "West US", + "West US 2", + "West US 3", + "Qatar Central" + ], + "properties": null, + "resourceType": "getPrivateDnsZoneSuffix", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-12-01-preview", + "2017-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3", + "Poland Central", + "Qatar Central", + "Switzerland West" + ], + "properties": null, + "resourceType": "locations/operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3", + "Poland Central", + "Qatar Central", + "Switzerland West" + ], + "properties": null, + "resourceType": "locations/azureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-12-01-preview", + "2017-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/administratorOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-12-01-preview", + "2017-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/administratorAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-03-01-preview", + "2022-12-01", + "2022-11-01-preview", + "2022-05-01-privatepreview", + "2022-05-01-preview", + "2022-03-08-preview", + "2021-06-01-preview", + "2021-06-01", + "2020-02-14-privatepreview", + "2020-02-14-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Australia Central", + "Australia Southeast", + "Brazil South", + "Canada East", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Switzerland North", + "Switzerland West", + "Sweden Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/checkVirtualNetworkSubnetUsage", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/privateEndpointConnectionProxyOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/privateEndpointConnectionProxyAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/privateEndpointConnectionOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/privateEndpointConnectionAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-12-01-preview", + "2017-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/performanceTiers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/securityAlertPoliciesAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/securityAlertPoliciesOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/recommendedActionSessionsAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/recommendedActionSessionsOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/topQueryStatistics", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/queryTexts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/waitStatistics", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/resetQueryPerformanceInsightData", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/advisors", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/privateLinkResources", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/privateEndpointConnections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/privateEndpointConnectionProxies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-01-01-privatepreview", + "2020-01-01-preview", + "2020-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/keys", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-01-01-privatepreview", + "2020-01-01-preview", + "2020-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/serverKeyAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-01-01-privatepreview", + "2020-01-01-preview", + "2020-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/serverKeyOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-03-08-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "East US", + "East US 2", + "North Central US", + "North Europe", + "South Central US", + "West Central US", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/getCachedServerName", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "a91b1853-4403-4f54-b5cb-d1ea19d90c37", + "roleDefinitionId": "ff3f8a59-97f9-442a-9d5f-e21908e36352" + }, + { + "applicationId": "1efe5bbf-d5b1-4fe9-99fa-f55ce1c88679" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.DelegatedNetwork", + "namespace": "Microsoft.DelegatedNetwork", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-27-preview", + "2023-05-18-preview", + "2021-03-15", + "2020-08-08-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "5b306cba-9c71-49db-96c3-d17ca2379c4d" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.DeploymentManager", + "namespace": "Microsoft.DeploymentManager", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-09-01-preview", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2019-11-01-preview", + "2018-09-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2018-09-01-preview", + "locationMappings": null, + "locations": [ + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "West Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Australia Central 2", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West" + ], + "properties": null, + "resourceType": "artifactSources", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-09-01-preview", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2019-11-01-preview", + "2018-09-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2018-09-01-preview", + "locationMappings": null, + "locations": [ + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "West Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Australia Central 2", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West" + ], + "properties": null, + "resourceType": "serviceTopologies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-09-01-preview", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2019-11-01-preview", + "2018-09-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2018-09-01-preview", + "locationMappings": null, + "locations": [ + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "West Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Australia Central 2", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West" + ], + "properties": null, + "resourceType": "serviceTopologies/services", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-09-01-preview", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2019-11-01-preview", + "2018-09-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2018-09-01-preview", + "locationMappings": null, + "locations": [ + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "West Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Australia Central 2", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West" + ], + "properties": null, + "resourceType": "serviceTopologies/services/serviceUnits", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-09-01-preview", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2019-11-01-preview", + "2018-09-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2018-09-01-preview", + "locationMappings": null, + "locations": [ + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "West Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Australia Central 2", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West" + ], + "properties": null, + "resourceType": "steps", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-09-01-preview", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2019-11-01-preview", + "2018-09-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2018-09-01-preview", + "locationMappings": null, + "locations": [ + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "West Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Australia Central 2", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West" + ], + "properties": null, + "resourceType": "rollouts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-09-01-preview", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2019-11-01-preview", + "2018-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2018-09-01-preview", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-09-01-preview", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2019-11-01-preview", + "2018-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2018-09-01-preview", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "50e95039-b200-4007-bc97-8d5790743a63", + "roleDefinitionId": "cad30215-ad1c-43bf-be90-7bfa8b493e62" + }, + { + "applicationId": "9cdead84-a844-4324-93f2-b2e6bb768d07", + "roleDefinitionId": "3c3936f2-3801-46fb-9a6b-269bdb0fc875" + }, + { + "applicationId": "a85cf173-4192-42f8-81fa-777a763e6e2c" + }, + { + "applicationId": "a4a365df-50f1-4397-bc59-1a1564b8bb9c" + }, + { + "applicationId": "270efc09-cd0d-444b-a71f-39af4910ec45" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.DesktopVirtualization", + "namespace": "Microsoft.DesktopVirtualization", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-05", + "2023-07-07-preview", + "2023-03-21-privatepreview", + "2022-12-09-privatepreview", + "2022-10-14-preview", + "2022-09-09", + "2022-09-01-privatepreview", + "2022-08-09-privatepreview", + "2022-06-03-privatepreview", + "2022-04-01-preview", + "2022-02-10-preview", + "2022-01-12-privatepreview", + "2021-09-03-preview", + "2021-07-12", + "2021-05-13-preview", + "2021-04-01-preview", + "2021-03-09-preview", + "2021-02-01-preview", + "2021-01-14-preview", + "2020-11-10-preview", + "2020-11-02-preview", + "2020-10-19-preview", + "2020-09-21-preview", + "2019-12-10-preview", + "2019-09-24-preview", + "2019-01-23-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central India", + "UK South", + "UK West", + "Japan East", + "Australia East", + "Canada East", + "Canada Central", + "North Europe", + "West Europe", + "East US", + "East US 2", + "West US", + "West US 2", + "West US 3", + "North Central US", + "South Central US", + "West Central US", + "Central US" + ], + "properties": null, + "resourceType": "workspaces", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-05", + "2023-07-07-preview", + "2023-03-21-privatepreview", + "2022-12-09-privatepreview", + "2022-10-14-preview", + "2022-09-09", + "2022-09-01-privatepreview", + "2022-08-09-privatepreview", + "2022-06-03-privatepreview", + "2022-04-01-preview", + "2022-02-10-preview", + "2022-01-12-privatepreview", + "2021-09-03-preview", + "2021-07-12", + "2021-05-13-preview", + "2021-04-01-preview", + "2021-03-09-preview", + "2021-02-01-preview", + "2021-01-14-preview", + "2020-11-10-preview", + "2020-11-02-preview", + "2020-10-19-preview", + "2020-09-21-preview", + "2019-12-10-preview", + "2019-09-24-preview", + "2019-01-23-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central India", + "UK South", + "UK West", + "Japan East", + "Australia East", + "Canada East", + "Canada Central", + "North Europe", + "West Europe", + "East US", + "East US 2", + "West US", + "West US 2", + "West US 3", + "North Central US", + "South Central US", + "West Central US", + "Central US" + ], + "properties": null, + "resourceType": "applicationgroups", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-05", + "2023-07-07-preview", + "2023-03-21-privatepreview", + "2022-12-09-privatepreview", + "2022-10-14-preview", + "2022-09-09", + "2022-09-01-privatepreview", + "2022-08-09-privatepreview", + "2022-06-03-privatepreview", + "2022-04-01-preview", + "2022-02-10-preview", + "2022-01-12-privatepreview", + "2021-09-03-preview", + "2021-07-12", + "2021-05-13-preview", + "2021-04-01-preview", + "2021-03-09-preview", + "2021-02-01-preview", + "2021-01-14-preview", + "2020-11-10-preview", + "2020-11-02-preview", + "2020-10-19-preview", + "2020-09-21-preview", + "2019-12-10-preview", + "2019-09-24-preview", + "2019-01-23-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central India", + "UK South", + "UK West", + "Japan East", + "Australia East", + "Canada East", + "Canada Central", + "North Europe", + "West Europe", + "East US", + "East US 2", + "West US", + "West US 2", + "West US 3", + "North Central US", + "South Central US", + "West Central US", + "Central US" + ], + "properties": null, + "resourceType": "applicationgroups/applications", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-05", + "2023-07-07-preview", + "2023-03-21-privatepreview", + "2022-12-09-privatepreview", + "2022-10-14-preview", + "2022-09-09", + "2022-09-01-privatepreview", + "2022-08-09-privatepreview", + "2022-06-03-privatepreview", + "2022-04-01-preview", + "2022-02-10-preview", + "2022-01-12-privatepreview", + "2021-09-03-preview", + "2021-07-12", + "2021-05-13-preview", + "2021-04-01-preview", + "2021-03-09-preview", + "2021-02-01-preview", + "2021-01-14-preview", + "2020-11-10-preview", + "2020-11-02-preview", + "2020-10-19-preview", + "2020-09-21-preview", + "2019-12-10-preview", + "2019-09-24-preview", + "2019-01-23-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central India", + "UK South", + "UK West", + "Japan East", + "Australia East", + "Canada East", + "Canada Central", + "North Europe", + "West Europe", + "East US", + "East US 2", + "West US", + "West US 2", + "West US 3", + "North Central US", + "South Central US", + "West Central US", + "Central US" + ], + "properties": null, + "resourceType": "applicationgroups/desktops", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-05", + "2023-07-07-preview", + "2023-03-21-privatepreview", + "2022-12-09-privatepreview", + "2022-10-14-preview", + "2022-09-09", + "2022-09-01-privatepreview", + "2022-08-09-privatepreview", + "2022-06-03-privatepreview", + "2022-04-01-preview", + "2022-02-10-preview", + "2022-01-12-privatepreview", + "2021-09-03-preview", + "2021-07-12", + "2021-05-13-preview", + "2021-04-01-preview", + "2021-03-09-preview", + "2021-02-01-preview", + "2021-01-14-preview", + "2020-11-10-preview", + "2020-11-02-preview", + "2020-10-19-preview", + "2020-09-21-preview", + "2019-12-10-preview", + "2019-09-24-preview", + "2019-01-23-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central India", + "UK South", + "UK West", + "Japan East", + "Australia East", + "Canada East", + "Canada Central", + "North Europe", + "West Europe", + "East US", + "East US 2", + "West US", + "West US 2", + "West US 3", + "North Central US", + "South Central US", + "West Central US", + "Central US" + ], + "properties": null, + "resourceType": "applicationgroups/startmenuitems", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-05", + "2023-07-07-preview", + "2023-03-21-privatepreview", + "2022-12-09-privatepreview", + "2022-10-14-preview", + "2022-09-09", + "2022-09-01-privatepreview", + "2022-08-09-privatepreview", + "2022-06-03-privatepreview", + "2022-04-01-preview", + "2022-02-10-preview", + "2022-01-12-privatepreview", + "2021-09-03-preview", + "2021-07-12", + "2021-05-13-preview", + "2021-04-01-preview", + "2021-03-09-preview", + "2021-02-01-preview", + "2021-01-14-preview", + "2020-11-10-preview", + "2020-11-02-preview", + "2020-10-19-preview", + "2020-09-21-preview", + "2019-12-10-preview", + "2019-09-24-preview", + "2019-01-23-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-01-12-privatepreview", + "locationMappings": null, + "locations": [ + "Central India", + "UK South", + "UK West", + "Japan East", + "Australia East", + "Canada East", + "Canada Central", + "North Europe", + "West Europe", + "East US", + "East US 2", + "West US", + "West US 2", + "West US 3", + "North Central US", + "South Central US", + "West Central US", + "Central US" + ], + "properties": null, + "resourceType": "hostpools", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-05", + "2023-07-07-preview", + "2023-03-21-privatepreview", + "2022-12-09-privatepreview", + "2022-10-14-preview", + "2022-09-09", + "2022-09-01-privatepreview", + "2022-08-09-privatepreview", + "2022-06-03-privatepreview", + "2022-04-01-preview", + "2022-02-10-preview", + "2022-01-12-privatepreview", + "2021-09-03-preview", + "2021-07-12", + "2021-05-13-preview", + "2021-04-01-preview", + "2021-03-09-preview", + "2021-02-01-preview", + "2021-01-14-preview", + "2020-11-10-preview", + "2020-11-02-preview", + "2020-10-19-preview", + "2020-09-21-preview", + "2019-12-10-preview", + "2019-09-24-preview", + "2019-01-23-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central India", + "UK South", + "UK West", + "Japan East", + "Australia East", + "Canada East", + "Canada Central", + "North Europe", + "West Europe", + "East US", + "East US 2", + "West US", + "West US 2", + "West US 3", + "North Central US", + "South Central US", + "West Central US", + "Central US" + ], + "properties": null, + "resourceType": "hostpools/msixpackages", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-05", + "2023-07-07-preview", + "2023-03-21-privatepreview", + "2022-12-09-privatepreview", + "2022-10-14-preview", + "2022-09-09", + "2022-09-01-privatepreview", + "2022-08-09-privatepreview", + "2022-06-03-privatepreview", + "2022-04-01-preview", + "2022-02-10-preview", + "2022-01-12-privatepreview", + "2021-09-03-preview", + "2021-07-12", + "2021-05-13-preview", + "2021-04-01-preview", + "2021-03-09-preview", + "2021-02-01-preview", + "2021-01-14-preview", + "2020-11-10-preview", + "2020-11-02-preview", + "2020-10-19-preview", + "2020-09-21-preview", + "2019-12-10-preview", + "2019-09-24-preview", + "2019-01-23-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central India", + "UK South", + "UK West", + "Japan East", + "Australia East", + "Canada East", + "Canada Central", + "North Europe", + "West Europe", + "East US", + "East US 2", + "West US", + "West US 2", + "West US 3", + "North Central US", + "South Central US", + "West Central US", + "Central US" + ], + "properties": null, + "resourceType": "hostpools/sessionhosts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-05", + "2023-07-07-preview", + "2023-03-21-privatepreview", + "2022-12-09-privatepreview", + "2022-10-14-preview", + "2022-09-09", + "2022-09-01-privatepreview", + "2022-08-09-privatepreview", + "2022-06-03-privatepreview", + "2022-04-01-preview", + "2022-02-10-preview", + "2022-01-12-privatepreview", + "2021-09-03-preview", + "2021-07-12", + "2021-05-13-preview", + "2021-04-01-preview", + "2021-03-09-preview", + "2021-02-01-preview", + "2021-01-14-preview", + "2020-11-10-preview", + "2020-11-02-preview", + "2020-10-19-preview", + "2020-09-21-preview", + "2019-12-10-preview", + "2019-09-24-preview", + "2019-01-23-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central India", + "UK South", + "UK West", + "Japan East", + "Australia East", + "Canada East", + "Canada Central", + "North Europe", + "West Europe", + "East US", + "East US 2", + "West US", + "West US 2", + "West US 3", + "North Central US", + "South Central US", + "West Central US", + "Central US" + ], + "properties": null, + "resourceType": "hostpools/sessionhosts/usersessions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-05", + "2023-07-07-preview", + "2023-03-21-privatepreview", + "2022-12-09-privatepreview", + "2022-10-14-preview", + "2022-09-09", + "2022-09-01-privatepreview", + "2022-08-09-privatepreview", + "2022-06-03-privatepreview", + "2022-04-01-preview", + "2022-02-10-preview", + "2022-01-12-privatepreview", + "2021-09-03-preview", + "2021-07-12", + "2021-05-13-preview", + "2021-04-01-preview", + "2021-03-09-preview", + "2021-02-01-preview", + "2021-01-14-preview", + "2020-11-10-preview", + "2020-11-02-preview", + "2020-10-19-preview", + "2020-09-21-preview", + "2019-12-10-preview", + "2019-09-24-preview", + "2019-01-23-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central India", + "UK South", + "UK West", + "Japan East", + "Australia East", + "Canada East", + "Canada Central", + "North Europe", + "West Europe", + "East US", + "East US 2", + "West US", + "West US 2", + "West US 3", + "North Central US", + "South Central US", + "West Central US", + "Central US" + ], + "properties": null, + "resourceType": "hostpools/usersessions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-05", + "2023-07-07-preview", + "2023-03-21-privatepreview", + "2022-12-09-privatepreview", + "2022-10-14-preview", + "2022-09-09", + "2022-09-01-privatepreview", + "2022-08-09-privatepreview", + "2022-06-03-privatepreview", + "2022-04-01-preview", + "2022-02-10-preview", + "2022-01-12-privatepreview", + "2021-09-03-preview", + "2021-07-12", + "2021-05-13-preview", + "2021-04-01-preview", + "2021-03-09-preview", + "2021-02-01-preview", + "2021-01-14-preview", + "2020-11-10-preview", + "2020-11-02-preview", + "2020-10-19-preview", + "2020-09-21-preview", + "2019-12-10-preview", + "2019-09-24-preview", + "2019-01-23-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central India", + "UK South", + "UK West", + "Japan East", + "Australia East", + "Canada East", + "Canada Central", + "North Europe", + "West Europe", + "East US", + "East US 2", + "West US", + "West US 2", + "West US 3", + "North Central US", + "South Central US", + "West Central US", + "Central US" + ], + "properties": null, + "resourceType": "scalingplans", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-05", + "2023-07-07-preview", + "2023-03-21-privatepreview", + "2022-12-09-privatepreview", + "2022-10-14-preview", + "2022-09-09", + "2022-09-01-privatepreview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central India", + "UK South", + "UK West", + "Japan East", + "Australia East", + "Canada East", + "Canada Central", + "North Europe", + "West Europe", + "East US", + "East US 2", + "West US", + "West US 2", + "West US 3", + "North Central US", + "South Central US", + "West Central US", + "Central US" + ], + "properties": null, + "resourceType": "appattachpackages", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-05", + "2023-07-07-preview", + "2023-05-18-privatepreview", + "2023-05-15-privatepreview", + "2023-04-06-preview", + "2023-03-30-privatepreview", + "2023-03-21-privatepreview", + "2023-03-03-privatepreview", + "2023-01-30-preview", + "2023-01-28-privatepreview", + "2022-12-09-privatepreview", + "2022-10-14-preview", + "2022-09-09", + "2022-09-01-privatepreview", + "2022-08-09-privatepreview", + "2022-07-05-preview", + "2022-06-03-privatepreview", + "2022-04-01-preview", + "2022-02-10-preview", + "2022-01-12-privatepreview", + "2021-09-17-privatepreview", + "2021-09-03-preview", + "2021-08-04-preview", + "2021-07-12", + "2021-05-13-preview", + "2021-04-01-preview", + "2021-03-09-preview", + "2021-02-01-preview", + "2021-01-14-preview", + "2020-11-10-preview", + "2020-11-02-preview", + "2020-10-19-preview", + "2020-09-21-preview", + "2019-12-10-preview", + "2019-09-24-preview", + "2019-01-23-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "3efe2b8f-32eb-4c7a-ae9a-b43f17de36eb", + "roleDefinitionId": "7694897e-330b-4414-acdf-e9fef0c657e0" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.DevAI", + "namespace": "Microsoft.DevAI", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-10-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "East Asia", + "East US", + "North Europe", + "South Central US", + "Southeast Asia", + "West Central US", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "Locations/operationstatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-02-17-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Canada Central", + "East US", + "North Europe", + "South Central US", + "Southeast Asia", + "West Central US", + "West Europe", + "West US", + "West US 2", + "West US 3", + "Brazil South", + "Brazil Southeast", + "Canada East", + "East Asia" + ], + "properties": null, + "resourceType": "instances", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-02-17-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Canada Central", + "East US", + "North Europe", + "South Central US", + "Southeast Asia", + "West Central US", + "West Europe", + "West US", + "West US 2", + "West US 3", + "Brazil South", + "Brazil Southeast", + "Canada East", + "East Asia" + ], + "properties": null, + "resourceType": "instances/experiments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-02-17-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Canada Central", + "East US", + "North Europe", + "South Central US", + "Southeast Asia", + "West Central US", + "West Europe", + "West US", + "West US 2", + "West US 3", + "Brazil South", + "Brazil Southeast", + "Canada East", + "East Asia" + ], + "properties": null, + "resourceType": "instances/sandboxes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-02-17-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Canada Central", + "East US", + "North Europe", + "South Central US", + "Southeast Asia", + "West Central US", + "West Europe", + "West US", + "West US 2", + "West US 3", + "Brazil South", + "Brazil Southeast", + "Canada East", + "East Asia" + ], + "properties": null, + "resourceType": "instances/sandboxes/experiments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-02-17-preview", + "2021-02-04-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "registeredSubscriptions", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "2dc3760b-4713-48b1-a383-1dfe3e449ec2", + "managedByRoleDefinitionId": "bed8296e-a9e9-4fe3-a4e3-e5079aee1c43", + "roleDefinitionId": "f152c676-0d65-485f-b78b-8ebf9144a3a3" + }, + { + "applicationId": "afae6340-0477-417e-b571-9e7a8a752387", + "roleDefinitionId": "f152c676-0d65-485f-b78b-8ebf9144a3a3" + }, + { + "applicationId": "0af06dc6-e4b5-4f28-818e-e78e62d137a5", + "roleDefinitionId": "00ae6858-c2cc-49c5-8b8f-12c133ee1ffe" + }, + { + "applicationId": "e526e72f-ffae-44a0-8dac-cf14b8bd40e2", + "roleDefinitionId": "e7fd07eb-fff3-4bf9-8980-69230433f13e" + }, + { + "applicationId": "0140a36d-95e1-4df5-918c-ca7ccd1fafc9", + "roleDefinitionId": "657fbe8e-c5c3-4696-9a95-df639044abe3" + }, + { + "applicationId": "a85cf173-4192-42f8-81fa-777a763e6e2c", + "roleDefinitionId": "d419c0cf-94c3-44c4-aace-05deda5448bd" + }, + { + "applicationId": "50e95039-b200-4007-bc97-8d5790743a63", + "roleDefinitionId": "d419c0cf-94c3-44c4-aace-05deda5448bd" + }, + { + "applicationId": "9cdead84-a844-4324-93f2-b2e6bb768d07", + "roleDefinitionId": "d419c0cf-94c3-44c4-aace-05deda5448bd" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.DevCenter", + "namespace": "Microsoft.DevCenter", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-04-01", + "2023-01-01-preview", + "2022-11-11-preview", + "2022-10-12-preview", + "2022-09-01-preview", + "2022-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-04-01", + "2023-01-01-preview", + "2022-11-11-preview", + "2022-10-12-preview", + "2022-09-01-preview", + "2022-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-04-01", + "2023-01-01-preview", + "2022-11-11-preview", + "2022-10-12-preview", + "2022-09-01-preview", + "2022-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Canada Central", + "West Europe", + "Japan East", + "UK South", + "East US", + "East US 2", + "South Central US", + "West US 3", + "Central India", + "East Asia", + "North Europe", + "Korea Central" + ], + "properties": null, + "resourceType": "Locations/OperationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-04-01", + "2023-01-01-preview", + "2022-11-11-preview", + "2022-10-12-preview", + "2022-09-01-preview", + "2022-08-01-preview" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Canada Central", + "West Europe", + "Japan East", + "UK South", + "East US", + "East US 2", + "South Central US", + "West US 3", + "Central India", + "East Asia", + "North Europe", + "Korea Central" + ], + "properties": null, + "resourceType": "devcenters", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-04-01", + "2023-01-01-preview", + "2022-11-11-preview", + "2022-10-12-preview", + "2022-09-01-preview", + "2022-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Canada Central", + "West Europe", + "Japan East", + "UK South", + "East US", + "East US 2", + "South Central US", + "West US 3", + "Central India", + "East Asia", + "North Europe", + "Korea Central" + ], + "properties": null, + "resourceType": "devcenters/catalogs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-04-01", + "2023-01-01-preview", + "2022-11-11-preview", + "2022-10-12-preview", + "2022-09-01-preview", + "2022-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Canada Central", + "West Europe", + "Japan East", + "UK South", + "East US", + "East US 2", + "South Central US", + "West US 3", + "Central India", + "East Asia", + "North Europe", + "Korea Central" + ], + "properties": null, + "resourceType": "devcenters/attachednetworks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-04-01", + "2023-01-01-preview", + "2022-11-11-preview", + "2022-10-12-preview", + "2022-09-01-preview", + "2022-08-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Canada Central", + "West Europe", + "Japan East", + "UK South", + "East US", + "East US 2", + "South Central US", + "West US 3", + "Central India", + "East Asia", + "North Europe", + "Korea Central" + ], + "properties": null, + "resourceType": "devcenters/devboxdefinitions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-04-01", + "2023-01-01-preview", + "2022-11-11-preview", + "2022-10-12-preview", + "2022-09-01-preview", + "2022-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Canada Central", + "West Europe", + "Japan East", + "UK South", + "East US", + "East US 2", + "South Central US", + "West US 3", + "Central India", + "East Asia", + "North Europe", + "Korea Central" + ], + "properties": null, + "resourceType": "devcenters/environmentTypes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-04-01", + "2023-01-01-preview", + "2022-11-11-preview", + "2022-10-12-preview", + "2022-09-01-preview", + "2022-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Canada Central", + "West Europe", + "Japan East", + "UK South", + "East US", + "East US 2", + "South Central US", + "West US 3", + "Central India", + "East Asia", + "North Europe", + "Korea Central" + ], + "properties": null, + "resourceType": "devcenters/galleries", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-04-01", + "2023-01-01-preview", + "2022-11-11-preview", + "2022-10-12-preview", + "2022-09-01-preview", + "2022-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Canada Central", + "West Europe", + "Japan East", + "UK South", + "East US", + "East US 2", + "South Central US", + "West US 3", + "Central India", + "East Asia", + "North Europe", + "Korea Central" + ], + "properties": null, + "resourceType": "devcenters/galleries/images/versions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-04-01", + "2023-01-01-preview", + "2022-11-11-preview", + "2022-10-12-preview", + "2022-09-01-preview", + "2022-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Canada Central", + "West Europe", + "Japan East", + "UK South", + "East US", + "East US 2", + "South Central US", + "West US 3", + "Central India", + "East Asia", + "North Europe", + "Korea Central" + ], + "properties": null, + "resourceType": "devcenters/galleries/images", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-04-01", + "2023-01-01-preview", + "2022-11-11-preview", + "2022-10-12-preview", + "2022-09-01-preview", + "2022-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Canada Central", + "West Europe", + "Japan East", + "UK South", + "East US", + "East US 2", + "South Central US", + "West US 3", + "Central India", + "East Asia", + "North Europe", + "Korea Central" + ], + "properties": null, + "resourceType": "devcenters/images", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-04-01", + "2023-01-01-preview", + "2022-11-11-preview", + "2022-10-12-preview", + "2022-09-01-preview", + "2022-08-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Canada Central", + "West Europe", + "Japan East", + "UK South", + "East US", + "East US 2", + "South Central US", + "West US 3", + "Central India", + "East Asia", + "North Europe", + "Korea Central" + ], + "properties": null, + "resourceType": "networkconnections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-04-01", + "2023-01-01-preview", + "2022-11-11-preview", + "2022-10-12-preview", + "2022-09-01-preview", + "2022-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Canada Central", + "West Europe", + "Japan East", + "UK South", + "East US", + "East US 2", + "South Central US", + "West US 3", + "Central India", + "East Asia", + "North Europe", + "Korea Central" + ], + "properties": null, + "resourceType": "networkconnections/healthchecks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-04-01", + "2023-01-01-preview", + "2022-11-11-preview", + "2022-10-12-preview", + "2022-09-01-preview", + "2022-08-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Canada Central", + "West Europe", + "Japan East", + "UK South", + "East US", + "East US 2", + "South Central US", + "West US 3", + "Central India", + "East Asia", + "North Europe", + "Korea Central" + ], + "properties": null, + "resourceType": "projects", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-04-01", + "2023-01-01-preview", + "2022-11-11-preview", + "2022-10-12-preview", + "2022-09-01-preview", + "2022-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Canada Central", + "West Europe", + "Japan East", + "UK South", + "East US", + "East US 2", + "South Central US", + "West US 3", + "Central India", + "East Asia", + "North Europe", + "Korea Central" + ], + "properties": null, + "resourceType": "projects/attachednetworks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-04-01", + "2023-01-01-preview", + "2022-11-11-preview", + "2022-10-12-preview", + "2022-09-01-preview", + "2022-08-01-preview" + ], + "capabilities": "SystemAssignedResourceIdentity", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Canada Central", + "West Europe", + "Japan East", + "UK South", + "East US", + "East US 2", + "South Central US", + "West US 3", + "Central India", + "East Asia", + "North Europe", + "Korea Central" + ], + "properties": null, + "resourceType": "projects/environmentTypes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-04-01", + "2023-01-01-preview", + "2022-11-11-preview", + "2022-10-12-preview", + "2022-09-01-preview", + "2022-08-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Canada Central", + "West Europe", + "Japan East", + "UK South", + "East US", + "East US 2", + "South Central US", + "West US 3", + "Central India", + "East Asia", + "North Europe", + "Korea Central" + ], + "properties": null, + "resourceType": "projects/pools", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-04-01", + "2023-01-01-preview", + "2022-11-11-preview", + "2022-10-12-preview", + "2022-09-01-preview", + "2022-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Canada Central", + "West Europe", + "Japan East", + "UK South", + "East US", + "East US 2", + "South Central US", + "West US 3", + "Central India", + "East Asia", + "North Europe", + "Korea Central" + ], + "properties": null, + "resourceType": "projects/pools/schedules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-04-01", + "2023-01-01-preview", + "2022-11-11-preview", + "2022-10-12-preview", + "2022-09-01-preview", + "2022-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Canada Central", + "West Europe", + "Japan East", + "UK South", + "East US", + "East US 2", + "South Central US", + "West US 3", + "Central India", + "East Asia", + "North Europe", + "Korea Central" + ], + "properties": null, + "resourceType": "projects/devboxdefinitions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-04-01", + "2023-01-01-preview", + "2022-11-11-preview", + "2022-10-12-preview", + "2022-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Canada Central", + "West Europe", + "Japan East", + "UK South", + "East US", + "East US 2", + "South Central US", + "West US 3", + "Central India", + "East Asia", + "North Europe", + "Korea Central" + ], + "properties": null, + "resourceType": "projects/allowedEnvironmentTypes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-04-01", + "2023-01-01-preview", + "2022-11-11-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-04-01", + "2023-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Canada Central", + "West Europe", + "Japan East", + "UK South", + "East US", + "East US 2", + "South Central US", + "West US 3", + "Central India", + "East Asia", + "North Europe", + "Korea Central" + ], + "properties": null, + "resourceType": "networkconnections/outboundNetworkDependenciesEndpoints", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "Locations/usages", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Canada Central", + "West Europe", + "Japan East", + "UK South", + "East US", + "East US 2", + "South Central US", + "West US 3", + "Central India", + "East Asia", + "North Europe", + "Korea Central" + ], + "properties": null, + "resourceType": "devcenters/catalogs/devboxdefinitions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Canada Central", + "West Europe", + "Japan East", + "UK South", + "East US", + "East US 2", + "South Central US", + "West US 3", + "Central India", + "East Asia", + "North Europe", + "Korea Central" + ], + "properties": null, + "resourceType": "devcenters/catalogs/environmentdefinitions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Canada Central", + "West Europe", + "Japan East", + "UK South", + "East US", + "East US 2", + "South Central US", + "West US 3", + "Central India", + "East Asia", + "North Europe", + "Korea Central" + ], + "properties": null, + "resourceType": "devcenters/catalogs/tasks", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "9cc10dd5-84e1-4a89-b95d-f6e90c855e3d", + "roleDefinitionId": "39ad28ee-245b-48ea-a31b-70a704385aff" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.DevHub", + "namespace": "Microsoft.DevHub", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-11-preview", + "2022-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2022-04-01-preview", + "locationMappings": null, + "locations": [ + "East US" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-11-preview", + "2022-04-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-04-01-preview", + "locationMappings": null, + "locations": [ + "West Central US", + "UK South", + "East US", + "Australia Central", + "Australia East", + "Brazil South", + "Canada Central", + "Central India", + "East Asia", + "East US 2", + "France Central", + "Japan East", + "Jio India West", + "Korea Central", + "North Central US", + "North Europe", + "Norway East", + "Qatar Central", + "South Africa North", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK West", + "West US 2", + "Australia Central 2", + "Australia Southeast", + "Brazil Southeast", + "Canada East", + "Central US", + "France South", + "Germany North", + "Japan West", + "Jio India Central", + "Korea South", + "Norway West", + "South Central US", + "Southeast Asia", + "South India", + "Switzerland West", + "UAE Central", + "West Europe", + "West US", + "West US 3" + ], + "properties": null, + "resourceType": "workflows", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-11-preview", + "2022-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-11-preview", + "2022-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2022-04-01-preview", + "locationMappings": null, + "locations": [ + "West Central US", + "UK South", + "East US", + "Australia Central", + "Australia East", + "Brazil South", + "Canada Central", + "Central India", + "East Asia", + "East US 2", + "France Central", + "Japan East", + "Jio India West", + "Korea Central", + "North Central US", + "North Europe", + "Norway East", + "Qatar Central", + "South Africa North", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK West", + "West US 2", + "Australia Central 2", + "Australia Southeast", + "Brazil Southeast", + "Canada East", + "Central US", + "France South", + "Germany North", + "Japan West", + "Jio India Central", + "Korea South", + "Norway West", + "South Central US", + "Southeast Asia", + "South India", + "Switzerland West", + "UAE Central", + "West Europe", + "West US", + "West US 3" + ], + "properties": null, + "resourceType": "locations/githuboauth", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-11-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2022-10-11-preview", + "locationMappings": null, + "locations": [ + "West Central US", + "UK South", + "East US", + "Australia Central", + "Australia East", + "Brazil South", + "Canada Central", + "Central India", + "East Asia", + "East US 2", + "France Central", + "Japan East", + "Jio India West", + "Korea Central", + "North Central US", + "North Europe", + "Norway East", + "Qatar Central", + "South Africa North", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK West", + "West US 2", + "Australia Central 2", + "Australia Southeast", + "Brazil Southeast", + "Canada East", + "Central US", + "France South", + "Germany North", + "Japan West", + "Jio India Central", + "Korea South", + "Norway West", + "South Central US", + "Southeast Asia", + "South India", + "Switzerland West", + "UAE Central", + "West Europe", + "West US", + "West US 3" + ], + "properties": null, + "resourceType": "locations/generatePreviewArtifacts", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "0cd79364-7a90-4354-9984-6e36c841418d", + "roleDefinitionId": "C121DF10-FE58-4BC4-97F9-8296879F7BBB" + }, + { + "applicationId": "29f411f1-b2cf-4043-8ac8-2185d7316811", + "roleDefinitionId": "d04fc6c0-fc10-4ab8-b7de-c979247c3b65" + }, + { + "applicationId": "89d10474-74af-4874-99a7-c23c2f643083", + "roleDefinitionId": "7df22794-26e3-4f94-9d50-a4f0f6e1cb41" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Devices", + "namespace": "Microsoft.Devices", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-06-30-preview", + "2023-06-30", + "2022-04-30-preview", + "2021-07-15-preview", + "2021-07-02-preview", + "2021-07-02", + "2021-07-01-preview", + "2021-07-01", + "2021-03-31", + "2021-03-03-preview", + "2021-02-01-preview", + "2020-08-31-preview", + "2020-08-31", + "2020-08-01", + "2020-07-10-preview", + "2020-06-15", + "2020-04-01", + "2020-03-01", + "2019-11-04", + "2019-07-01-preview", + "2019-03-22-preview", + "2019-03-22", + "2018-12-01-preview", + "2018-04-01", + "2018-01-22", + "2017-07-01", + "2017-01-19", + "2016-02-03", + "2015-08-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2018-04-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01-preview", + "2022-12-12", + "2022-02-05", + "2021-10-15", + "2020-03-01", + "2020-01-01", + "2018-01-22", + "2017-11-15", + "2017-08-21-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2022-12-12", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkProvisioningServiceNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-06-30-preview", + "2023-06-30", + "2022-04-30-preview", + "2021-07-02-preview", + "2021-07-02", + "2021-07-01-preview", + "2021-07-01", + "2021-03-31", + "2021-03-03-preview", + "2021-02-01-preview", + "2020-08-31-preview", + "2020-08-31", + "2020-08-01", + "2020-07-10-preview", + "2020-06-15", + "2020-04-01", + "2020-03-01", + "2019-11-04", + "2019-07-01-preview", + "2019-03-22-preview", + "2019-03-22", + "2018-12-01-preview", + "2018-04-01", + "2018-01-22", + "2017-07-01", + "2017-01-19", + "2016-02-03", + "2015-08-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2018-04-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "usages", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-06-30-preview", + "2023-06-30", + "2022-04-30-preview", + "2021-07-02-preview", + "2021-07-02", + "2021-07-01-preview", + "2021-07-01", + "2021-03-31", + "2021-03-03-preview", + "2021-02-01-preview", + "2020-08-31-preview", + "2020-08-31", + "2020-08-01", + "2020-07-10-preview", + "2020-06-15", + "2020-04-01", + "2020-03-01", + "2019-11-04", + "2019-07-01-preview", + "2019-03-22-preview", + "2019-03-22", + "2018-12-01-preview", + "2018-04-01", + "2018-01-22", + "2017-07-01", + "2017-01-19", + "2016-02-03", + "2015-08-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2018-04-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-06-30-preview", + "2023-06-30", + "2022-04-30-preview", + "2021-07-02-preview", + "2021-07-02", + "2021-07-01-preview", + "2021-07-01", + "2021-03-31", + "2021-03-03-preview", + "2021-02-01-preview", + "2020-08-31-preview", + "2020-08-31", + "2020-08-01", + "2020-07-10-preview", + "2020-06-15", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-11-04", + "2019-09-01", + "2019-07-01-preview", + "2019-03-22-preview", + "2019-03-22", + "2018-12-01-preview", + "2018-04-01-preview", + "2018-04-01", + "2018-01-22-preview", + "2018-01-22", + "2017-11-15", + "2017-09-25-preview", + "2017-08-21-preview", + "2017-07-01", + "2017-01-19", + "2016-02-03", + "2015-08-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2018-04-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01-preview", + "2022-12-12", + "2022-02-05", + "2021-10-15", + "2020-09-01-preview", + "2020-03-01", + "2020-01-01", + "2018-01-22", + "2017-11-15", + "2017-08-21-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2022-12-12", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "provisioningServiceOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01-preview", + "2022-12-12", + "2022-02-05", + "2021-10-15", + "2020-03-01", + "2020-01-01", + "2018-01-22", + "2017-11-15", + "2017-08-21-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2022-12-12", + "locationMappings": null, + "locations": [ + "West US", + "Australia Central 2", + "Australia Southeast", + "Canada East", + "Central US", + "East US", + "France South", + "Korea South", + "Japan West", + "South India", + "Southeast Asia", + "West Europe", + "UK South", + "South Central US", + "Australia Central", + "Australia East", + "Brazil South", + "Canada Central", + "Central India", + "East Asia", + "France Central", + "Japan East", + "Korea Central", + "North Europe", + "UK West", + "West US 2", + "West Central US", + "North Central US", + "East US 2", + "West US 3", + "Germany West Central", + "UAE North" + ], + "properties": null, + "resourceType": "locations/provisioningServiceOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-06-30-preview", + "2023-06-30", + "2022-04-30-preview", + "2021-07-02-preview", + "2021-07-02", + "2021-07-01-preview", + "2021-07-01", + "2021-03-31", + "2021-03-03-preview", + "2021-02-01-preview", + "2020-08-31-preview", + "2020-08-31", + "2020-08-01", + "2020-07-10-preview", + "2020-06-15", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-11-04", + "2019-09-01", + "2019-07-01-preview", + "2019-03-22-preview", + "2019-03-22", + "2018-12-01-preview", + "2018-04-01-preview", + "2018-04-01", + "2018-01-22-preview", + "2018-01-22", + "2017-11-15", + "2017-09-25-preview", + "2017-08-21-preview", + "2017-07-01", + "2017-01-19", + "2016-02-03", + "2015-08-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2018-04-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-06-30-preview", + "2023-06-30", + "2022-04-30-preview", + "2021-07-02-preview", + "2021-07-02", + "2021-07-01-preview", + "2021-07-01", + "2021-03-31", + "2021-03-03-preview", + "2021-02-01-preview", + "2020-08-31-preview", + "2020-08-31", + "2020-08-01", + "2020-07-10-preview", + "2020-06-15", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-11-04", + "2019-07-01-preview", + "2019-03-22-preview", + "2019-03-22", + "2018-12-01-preview", + "2018-04-01-preview", + "2018-04-01", + "2018-01-22", + "2017-07-01", + "2017-01-19", + "2016-02-03", + "2015-08-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2018-04-01", + "locationMappings": null, + "locations": [ + "West US", + "Australia Central 2", + "Australia Southeast", + "Canada East", + "Central US", + "East US", + "Germany West Central", + "Korea South", + "Japan West", + "South India", + "South Africa West", + "UAE North", + "Southeast Asia", + "West Europe", + "Norway West", + "West US 3", + "Norway EAST", + "UK South", + "South Central US", + "Australia Central", + "Australia East", + "Brazil South", + "Canada Central", + "Central India", + "East Asia", + "France Central", + "Germany North", + "Japan East", + "Korea Central", + "North Europe", + "South Africa North", + "UAE Central", + "UK West", + "West US 2", + "West Central US", + "North Central US", + "East US 2", + "Qatar Central", + "Switzerland North" + ], + "properties": null, + "resourceType": "locations/operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-06-30-preview", + "2023-06-30", + "2022-04-30-preview", + "2021-07-02-preview", + "2021-07-02", + "2021-07-01-preview", + "2021-07-01", + "2021-03-31", + "2021-03-03-preview", + "2021-02-01-preview", + "2020-08-31-preview", + "2020-08-31", + "2020-08-01", + "2020-07-10-preview", + "2020-06-15", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-11-04", + "2019-07-01-preview", + "2019-03-22-preview", + "2019-03-22", + "2018-12-01-preview", + "2018-04-01-preview", + "2018-04-01", + "2018-01-22", + "2017-07-01", + "2017-01-19", + "2016-02-03", + "2015-08-15-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2021-07-02", + "locationMappings": null, + "locations": [ + "West US", + "Australia Central 2", + "Australia Southeast", + "Canada East", + "Central US", + "East US", + "Germany West Central", + "Korea South", + "Japan West", + "South India", + "South Africa West", + "UAE North", + "Southeast Asia", + "West Europe", + "Norway West", + "West US 3", + "Norway East", + "UK South", + "South Central US", + "Australia Central", + "Australia East", + "Brazil South", + "Canada Central", + "Central India", + "East Asia", + "France Central", + "Germany North", + "Japan East", + "Korea Central", + "North Europe", + "South Africa North", + "UAE Central", + "UK West", + "West US 2", + "West Central US", + "North Central US", + "East US 2", + "Qatar Central", + "Switzerland North" + ], + "properties": null, + "resourceType": "IotHubs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-02-01-preview", + "2018-07-31", + "2018-01-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "Australia Central 2", + "Australia Southeast", + "Canada East", + "Central US", + "East US", + "Germany West Central", + "Korea South", + "Japan West", + "South India", + "South Africa West", + "UAE North", + "Southeast Asia", + "West Europe", + "Norway West", + "West US 3", + "Norway East", + "UK South", + "South Central US", + "Australia Central", + "Australia East", + "Brazil South", + "Canada Central", + "Central India", + "East Asia", + "France Central", + "Germany North", + "Japan East", + "Korea Central", + "North Europe", + "South Africa North", + "UAE Central", + "UK West", + "West US 2", + "West Central US", + "North Central US", + "East US 2", + "Qatar Central", + "Switzerland North" + ], + "properties": null, + "resourceType": "IotHubs/eventGridFilters", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-06-30-preview", + "2023-06-30", + "2022-04-30-preview", + "2021-07-02-preview", + "2021-07-02", + "2021-07-01-preview", + "2021-07-01", + "2021-03-31", + "2021-03-03-preview", + "2021-02-01-preview", + "2020-08-31-preview", + "2020-08-31", + "2020-08-01", + "2020-07-10-preview", + "2020-06-15", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-11-04", + "2019-07-01-preview", + "2019-03-22-preview", + "2019-03-22", + "2018-12-01-preview", + "2018-04-01-preview", + "2018-04-01", + "2018-01-22", + "2017-07-01", + "2017-01-19", + "2016-02-03", + "2015-08-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2020-01-01", + "locationMappings": null, + "locations": [ + "West US", + "Australia Central 2", + "Australia Southeast", + "Canada East", + "Central US", + "East US", + "Germany West Central", + "Korea South", + "Japan West", + "South India", + "South Africa West", + "UAE North", + "Southeast Asia", + "West Europe", + "Norway West", + "West US 3", + "Norway East", + "UK South", + "South Central US", + "Australia Central", + "Australia East", + "Brazil South", + "Canada Central", + "Central India", + "East Asia", + "France Central", + "Germany North", + "Japan East", + "Korea Central", + "North Europe", + "South Africa North", + "UAE Central", + "UK West", + "West US 2", + "West Central US", + "North Central US", + "East US 2", + "Qatar Central", + "Switzerland North" + ], + "properties": null, + "resourceType": "IotHubs/failover", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01-preview", + "2022-12-12", + "2022-02-05", + "2021-10-15", + "2020-03-01", + "2020-01-01", + "2018-01-22", + "2017-11-15", + "2017-08-21-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-03-01-preview", + "locationMappings": null, + "locations": [ + "West US", + "Australia Central 2", + "Australia Southeast", + "Canada East", + "Central US", + "East US", + "France South", + "Korea South", + "Japan West", + "South India", + "Southeast Asia", + "West Europe", + "UK South", + "South Central US", + "Australia Central", + "Australia East", + "Brazil South", + "Canada Central", + "Central India", + "East Asia", + "France Central", + "Japan East", + "Korea Central", + "North Europe", + "UK West", + "West US 2", + "West Central US", + "North Central US", + "East US 2", + "West US 3", + "Germany West Central", + "UAE North" + ], + "properties": null, + "resourceType": "ProvisioningServices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "Australia Central 2", + "Australia Southeast", + "Canada East", + "Central US", + "East US", + "Germany West Central", + "Korea South", + "Japan West", + "South India", + "South Africa West", + "UAE North", + "Southeast Asia", + "West Europe", + "Norway West", + "West US 3", + "Norway East", + "UK South", + "South Central US", + "Australia Central", + "Australia East", + "Brazil South", + "Canada Central", + "Central India", + "East Asia", + "France Central", + "Germany North", + "Japan East", + "Korea Central", + "North Europe", + "South Africa North", + "UAE Central", + "UK West", + "West US 2", + "West Central US", + "North Central US", + "East US 2", + "Qatar Central", + "Switzerland North" + ], + "properties": null, + "resourceType": "IotHubs/securitySettings", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "6ee392c4-d339-4083-b04d-6b7947c6cf78", + "roleDefinitionId": "a7c9caf5-ee6d-4cdd-94e0-917c34a027ec" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.DeviceUpdate", + "namespace": "Microsoft.DeviceUpdate", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2023-07-01", + "2022-12-01-preview", + "2022-10-01", + "2022-04-01-preview", + "2020-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2023-07-01", + "2022-12-01-preview", + "2022-10-01", + "2022-04-01-preview", + "2020-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US 2 EUAP", + "West US 2", + "North Europe", + "Southeast Asia", + "Australia East", + "East US", + "East US 2", + "South Central US", + "Sweden Central", + "UK South", + "West Europe", + "West US 3" + ], + "properties": null, + "resourceType": "locations/operationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2023-07-01", + "2022-12-01-preview", + "2022-10-01", + "2022-04-01-preview", + "2020-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2022-12-01-preview", + "2022-10-01", + "2022-04-01-preview", + "2020-03-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "North Europe", + "Southeast Asia", + "Australia East", + "East US", + "East US 2", + "South Central US", + "Sweden Central", + "UK South", + "West Europe", + "West US 3" + ], + "properties": null, + "resourceType": "accounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2022-12-01-preview", + "2022-10-01", + "2022-04-01-preview", + "2020-03-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "North Europe", + "Southeast Asia", + "Australia East", + "East US", + "East US 2", + "South Central US", + "Sweden Central", + "UK South", + "West Europe", + "West US 3" + ], + "properties": null, + "resourceType": "accounts/instances", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2023-07-01", + "2022-12-01-preview", + "2022-10-01", + "2022-04-01-preview", + "2020-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2023-07-01", + "2022-12-01-preview", + "2022-10-01", + "2022-04-01-preview", + "2020-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "registeredSubscriptions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2022-12-01-preview", + "2022-10-01", + "2022-04-01-preview", + "2020-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "North Europe", + "Southeast Asia", + "Australia East", + "East US", + "East US 2", + "South Central US", + "Sweden Central", + "UK South", + "West Europe", + "West US 3" + ], + "properties": null, + "resourceType": "accounts/privateLinkResources", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2022-12-01-preview", + "2022-10-01", + "2022-04-01-preview", + "2020-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "North Europe", + "Southeast Asia", + "East US", + "East US 2", + "South Central US", + "Sweden Central", + "UK South", + "West Europe", + "West US 3" + ], + "properties": null, + "resourceType": "accounts/privateEndpointConnections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2022-12-01-preview", + "2022-10-01", + "2022-04-01-preview", + "2020-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "North Europe", + "Southeast Asia", + "Australia East", + "East US", + "East US 2", + "South Central US", + "Sweden Central", + "UK South", + "West Europe", + "West US 3" + ], + "properties": null, + "resourceType": "accounts/privateEndpointConnectionProxies", + "zoneMappings": null + } + ] + }, + { + "authorization": { + "applicationId": "1a14be2a-e903-4cec-99cf-b2e209259a0f", + "managedByRoleDefinitionId": "8f2de81a-b9aa-49d8-b24c-11814d3ab525", + "roleDefinitionId": "8f2de81a-b9aa-49d8-b24c-11814d3ab525" + }, + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.DevTestLab", + "namespace": "Microsoft.DevTestLab", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2015-05-21-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Southeast Asia", + "East US", + "West US", + "West Europe", + "East Asia", + "East US 2", + "Japan East", + "Japan West", + "Central US" + ], + "properties": null, + "resourceType": "labs/environments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-10-15-preview", + "2018-09-15", + "2017-04-26-preview", + "2016-05-15", + "2015-05-21-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2018-10-15-preview", + "locationMappings": null, + "locations": [ + "West Central US", + "South Central US", + "Central US", + "Qatar Central", + "Australia Central", + "Australia Southeast", + "Brazil Southeast", + "Canada Central", + "Central India", + "East Asia", + "East US", + "France Central", + "Japan East", + "Korea Central", + "North Europe", + "South Africa North", + "Switzerland North", + "UAE North", + "UK West", + "West India", + "Australia Central 2", + "Australia East", + "Brazil South", + "Canada East", + "East US 2", + "France South", + "Germany West Central", + "Japan West", + "Jio India West", + "Korea South", + "North Central US", + "Norway East", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland West", + "UK South", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "labs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-10-15-preview", + "2018-09-15", + "2017-04-26-preview", + "2016-05-15", + "2015-05-21-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "South Central US", + "Central US", + "Qatar Central", + "Australia Central", + "Australia Southeast", + "Brazil Southeast", + "Canada Central", + "Central India", + "East Asia", + "East US", + "France Central", + "Japan East", + "Korea Central", + "North Europe", + "South Africa North", + "Switzerland North", + "UAE North", + "UK West", + "West India", + "Australia Central 2", + "Australia East", + "Brazil South", + "Canada East", + "East US 2", + "France South", + "Germany West Central", + "Japan West", + "Jio India West", + "Korea South", + "North Central US", + "Norway East", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland West", + "UK South", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "schedules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-10-15-preview", + "2018-09-15", + "2017-04-26-preview", + "2016-05-15", + "2015-05-21-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "South Central US", + "Central US", + "Qatar Central", + "Australia Central", + "Australia Southeast", + "Brazil Southeast", + "Canada Central", + "Central India", + "East Asia", + "East US", + "France Central", + "Japan East", + "Korea Central", + "North Europe", + "South Africa North", + "Switzerland North", + "UAE North", + "UK West", + "West India", + "Australia Central 2", + "Australia East", + "Brazil South", + "Canada East", + "East US 2", + "France South", + "Germany West Central", + "Japan West", + "Jio India West", + "Korea South", + "North Central US", + "Norway East", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland West", + "UK South", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "labs/virtualMachines", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-10-15-preview", + "2018-09-15", + "2017-04-26-preview", + "2016-05-15" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2016-05-15", + "locationMappings": null, + "locations": [ + "West Central US", + "South Central US", + "Central US", + "Qatar Central", + "Australia Central", + "Australia Southeast", + "Brazil Southeast", + "Canada Central", + "Central India", + "East Asia", + "East US", + "France Central", + "Japan East", + "Korea Central", + "North Europe", + "South Africa North", + "Switzerland North", + "UAE North", + "UK West", + "West India", + "Australia Central 2", + "Australia East", + "Brazil South", + "Canada East", + "East US 2", + "France South", + "Germany West Central", + "Japan West", + "Jio India West", + "Korea South", + "North Central US", + "Norway East", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland West", + "UK South", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "labs/serviceRunners", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-10-15-preview", + "2018-09-15", + "2017-04-26-preview", + "2016-05-15", + "2015-05-21-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-10-15-preview", + "2018-09-15", + "2017-04-26-preview", + "2016-05-15", + "2015-05-21-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-10-15-preview", + "2018-09-15", + "2017-04-26-preview", + "2016-05-15", + "2015-05-21-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "South Central US", + "Central US", + "Qatar Central", + "Australia Central", + "Australia Southeast", + "Brazil Southeast", + "Canada Central", + "Central India", + "East Asia", + "East US", + "France Central", + "Japan East", + "Korea Central", + "North Europe", + "South Africa North", + "Switzerland North", + "UAE North", + "UK West", + "West India", + "Australia Central 2", + "Australia East", + "Brazil South", + "Canada East", + "East US 2", + "France South", + "Germany West Central", + "Japan West", + "Jio India West", + "Korea South", + "North Central US", + "Norway East", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland West", + "UK South", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "0b07f429-9f4b-4714-9392-cc5e8e80c8b0" + }, + { + "applicationId": "91ff567f-bb4f-4719-91d7-d983057bc0d6", + "roleDefinitionId": "fa0ab6ed-58e5-4f2f-81af-0b9ffc364bdc" + }, + { + "applicationId": "c115998b-3d59-49b4-b55b-042a9ba1dbfe", + "roleDefinitionId": "07af60d1-cd6d-4ad4-9b56-ece6c78a3fe1" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.DigitalTwins", + "namespace": "Microsoft.DigitalTwins", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-31", + "2022-10-31", + "2022-05-31", + "2021-06-30-preview", + "2020-12-01", + "2020-10-31", + "2020-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2022-10-31", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-31", + "2022-10-31", + "2022-05-31", + "2021-06-30-preview", + "2020-12-01", + "2020-10-31", + "2020-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "West US 2", + "North Europe", + "Australia East", + "West Europe", + "East US", + "South Central US", + "Southeast Asia", + "UK South", + "East US 2", + "West US 3", + "Japan East", + "Korea Central", + "Qatar Central" + ], + "properties": null, + "resourceType": "locations/checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-31", + "2022-10-31", + "2022-05-31", + "2021-06-30-preview", + "2020-12-01", + "2020-10-31", + "2020-03-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-10-31", + "locationMappings": null, + "locations": [ + "West Central US", + "West US 2", + "North Europe", + "Australia East", + "West Europe", + "East US", + "South Central US", + "Southeast Asia", + "UK South", + "East US 2", + "West US 3", + "Japan East", + "Korea Central", + "Qatar Central" + ], + "properties": null, + "resourceType": "digitalTwinsInstances", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-31", + "2022-10-31", + "2022-05-31", + "2021-06-30-preview", + "2020-12-01", + "2020-10-31", + "2020-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2022-10-31", + "locationMappings": null, + "locations": [ + "West Central US", + "West US 2", + "North Europe", + "Australia East", + "West Europe", + "East US", + "South Central US", + "Southeast Asia", + "UK South", + "East US 2", + "West US 3", + "Japan East", + "Korea Central", + "Qatar Central" + ], + "properties": null, + "resourceType": "digitalTwinsInstances/operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-31", + "2022-10-31", + "2022-05-31", + "2021-06-30-preview", + "2020-12-01", + "2020-10-31", + "2020-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2022-10-31", + "locationMappings": null, + "locations": [ + "West Central US", + "West US 2", + "North Europe", + "Australia East", + "West Europe", + "East US", + "South Central US", + "Southeast Asia", + "UK South", + "East US 2", + "West US 3", + "Japan East", + "Korea Central", + "Qatar Central" + ], + "properties": null, + "resourceType": "locations/operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-31", + "2022-10-31", + "2022-05-31", + "2021-06-30-preview", + "2020-12-01", + "2020-10-31", + "2020-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2022-10-31", + "locationMappings": null, + "locations": [ + "West Central US", + "West US 2", + "North Europe", + "Australia East", + "West Europe", + "East US", + "South Central US", + "Southeast Asia", + "UK South", + "East US 2", + "West US 3", + "Japan East", + "Korea Central", + "Qatar Central" + ], + "properties": null, + "resourceType": "locations/operationsStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-31", + "2022-10-31", + "2022-05-31", + "2021-06-30-preview", + "2020-12-01", + "2020-10-31", + "2020-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2022-10-31", + "locationMappings": null, + "locations": [ + "West Central US", + "West US 2", + "North Europe", + "Australia East", + "West Europe", + "East US", + "South Central US", + "Southeast Asia", + "UK South", + "East US 2", + "West US 3", + "Japan East", + "Korea Central", + "Qatar Central" + ], + "properties": null, + "resourceType": "digitalTwinsInstances/endpoints", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-31", + "2022-10-31", + "2022-05-31", + "2021-06-30-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-01-31", + "locationMappings": null, + "locations": [ + "West Central US", + "West US 2", + "North Europe", + "Australia East", + "West Europe", + "East US", + "South Central US", + "Southeast Asia", + "UK South", + "East US 2", + "West US 3", + "Japan East", + "Korea Central", + "Qatar Central" + ], + "properties": null, + "resourceType": "digitalTwinsInstances/timeSeriesDatabaseConnections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-31", + "2022-10-31", + "2022-05-31", + "2021-06-30-preview", + "2020-12-01", + "2020-10-31", + "2020-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "57c0fc58-a83a-41d0-8ae9-08952659bdfd", + "roleDefinitionId": "FFFD5CF5-FFD3-4B24-B0E2-0715ADD4C282" + }, + { + "applicationId": "36e2398c-9dd3-4f29-9a72-d9f2cfc47ad9", + "roleDefinitionId": "D5A795DE-916D-4818-B015-33C9E103E39B" + }, + { + "applicationId": "a232010e-820c-4083-83bb-3ace5fc29d0b", + "roleDefinitionId": "D5A795DE-916D-4818-B015-33C9E103E39B" + }, + { + "applicationId": "e95a6071-4f90-4971-84e2-492d9323345b", + "roleDefinitionId": "A2EBFC51-AD44-4D13-A387-B95AFDFA016D" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.DocumentDB", + "namespace": "Microsoft.DocumentDB", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2015-04-08", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-09-15-preview", + "2023-09-15", + "2023-04-15", + "2023-03-15-preview", + "2023-03-15", + "2023-03-01-preview", + "2022-11-15-preview", + "2022-11-15", + "2022-08-15-preview", + "2022-08-15", + "2022-05-15-preview", + "2022-05-15", + "2022-02-15-preview", + "2021-11-15-preview", + "2021-10-15-preview", + "2021-10-15", + "2021-07-01-preview", + "2021-06-15", + "2021-05-15", + "2021-05-01-preview", + "2021-04-15", + "2021-04-01-preview", + "2021-03-15", + "2021-03-01-preview", + "2021-01-15", + "2020-09-01", + "2020-06-01-preview", + "2020-04-01", + "2020-03-01", + "2019-12-12", + "2019-08-01-preview", + "2019-08-01", + "2016-03-31", + "2016-03-19", + "2015-11-06", + "2015-04-08", + "2014-04-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-08-15-preview", + "locationMappings": null, + "locations": [ + "West Central US", + "North Central US", + "Central US", + "Brazil South", + "Canada Central", + "West US 2", + "East US 2", + "France Central", + "Japan East", + "Southeast Asia", + "Central India", + "South Africa North", + "Switzerland North", + "UAE North", + "UK West", + "North Europe", + "West Europe", + "Norway East", + "Korea Central", + "Australia East", + "Canada East", + "East Asia", + "Germany West Central", + "UK South", + "Australia Central", + "Australia Southeast", + "Japan West", + "Korea South", + "South India", + "West India", + "West US", + "South Central US", + "East US", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "databaseAccounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2015-04-08", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-09-15-preview", + "2023-09-15", + "2023-04-15", + "2023-03-15-preview", + "2023-03-15", + "2023-03-01-preview", + "2022-11-15-preview", + "2022-11-15", + "2022-08-15-preview", + "2022-08-15", + "2022-05-15-preview", + "2022-05-15", + "2022-02-15-preview", + "2021-11-15-preview", + "2021-10-15-preview", + "2021-10-15", + "2021-07-01-preview", + "2021-06-15", + "2021-05-15", + "2021-05-01-preview", + "2021-04-15", + "2021-04-01-preview", + "2021-03-15", + "2021-03-01-preview", + "2021-01-15", + "2020-09-01", + "2020-06-01-preview", + "2020-04-01", + "2020-03-01", + "2019-12-12", + "2019-08-01-preview", + "2019-08-01", + "2016-03-31", + "2016-03-19", + "2015-11-06", + "2015-04-08", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "databaseAccountNames", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2015-04-08", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-09-15-preview", + "2023-09-15", + "2023-04-15", + "2023-03-15-preview", + "2023-03-15", + "2023-03-01-preview", + "2022-11-15-preview", + "2022-11-15", + "2022-08-15-preview", + "2022-08-15", + "2022-05-15-preview", + "2022-05-15", + "2022-02-15-preview", + "2021-11-15-preview", + "2021-10-15-preview", + "2021-10-15", + "2021-07-01-preview", + "2021-06-15", + "2021-05-15", + "2021-05-01-preview", + "2021-04-15", + "2021-04-01-preview", + "2021-03-15", + "2021-03-01-preview", + "2021-01-15", + "2020-09-01", + "2020-06-01-preview", + "2020-04-01", + "2020-03-01", + "2019-12-12", + "2019-08-01-preview", + "2019-08-01", + "2016-03-31", + "2016-03-19", + "2015-11-06", + "2015-04-08", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2015-04-08", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-09-15-preview", + "2023-09-15", + "2023-04-15", + "2023-03-15-preview", + "2023-03-15", + "2023-03-01-preview", + "2022-11-15-preview", + "2022-11-15", + "2022-08-15-preview", + "2022-08-15", + "2022-05-15-preview", + "2022-05-15", + "2022-02-15-preview", + "2021-11-15-preview", + "2021-10-15-preview", + "2021-10-15", + "2021-07-01-preview", + "2021-06-15", + "2021-05-15", + "2021-05-01-preview", + "2021-04-15", + "2021-04-01-preview", + "2021-03-15", + "2021-03-01-preview", + "2021-01-15", + "2020-09-01", + "2020-06-01-preview", + "2020-04-01", + "2020-03-01", + "2019-12-12", + "2019-08-01-preview", + "2019-08-01", + "2016-03-31", + "2016-03-19", + "2015-11-06", + "2015-04-08", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2015-04-08", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-09-15-preview", + "2023-09-15", + "2023-04-15", + "2023-03-15-preview", + "2023-03-15", + "2023-03-01-preview", + "2022-11-15-preview", + "2022-11-15", + "2022-08-15-preview", + "2022-08-15", + "2022-05-15-preview", + "2022-05-15", + "2022-02-15-preview", + "2021-11-15-preview", + "2021-10-15-preview", + "2021-10-15", + "2021-07-01-preview", + "2021-06-15", + "2021-05-15", + "2021-05-01-preview", + "2021-04-15", + "2021-04-01-preview", + "2021-03-15", + "2021-03-01-preview", + "2021-01-15", + "2020-09-01", + "2020-06-01-preview", + "2020-04-01", + "2020-03-01", + "2019-12-12", + "2019-08-01-preview", + "2019-08-01", + "2016-03-31", + "2016-03-19", + "2015-11-06", + "2015-04-08", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operationsStatus", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2015-04-08", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-09-15-preview", + "2023-09-15", + "2023-04-15", + "2023-03-15-preview", + "2023-03-15", + "2023-03-01-preview", + "2022-11-15-preview", + "2022-11-15", + "2022-08-15-preview", + "2022-08-15", + "2022-05-15-preview", + "2022-05-15", + "2022-02-15-preview", + "2021-11-15-preview", + "2021-10-15-preview", + "2021-10-15", + "2021-07-01-preview", + "2021-06-15", + "2021-05-15", + "2021-05-01-preview", + "2021-04-15", + "2021-04-01-preview", + "2021-03-15", + "2021-03-01-preview", + "2021-01-15", + "2020-09-01", + "2020-06-01-preview", + "2020-04-01", + "2020-03-01", + "2019-12-12", + "2019-08-01-preview", + "2019-08-01", + "2016-03-31", + "2016-03-19", + "2015-11-06", + "2015-04-08", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "North Central US", + "Central US", + "Brazil South", + "Canada Central", + "West US 2", + "East US 2", + "France Central", + "Japan East", + "Southeast Asia", + "Central India", + "South Africa North", + "Switzerland North", + "UAE North", + "UK West", + "North Europe", + "West Europe", + "Norway East", + "Korea Central", + "Australia East", + "Canada East", + "East Asia", + "Germany West Central", + "UK South", + "Australia Central", + "Australia Southeast", + "Japan West", + "Korea South", + "South India", + "West India", + "West US", + "South Central US", + "East US", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "locations/operationsStatus", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2015-04-08", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-09-15-preview", + "2023-09-15", + "2023-04-15", + "2023-03-15-preview", + "2023-03-15", + "2023-03-01-preview", + "2022-11-15-preview", + "2022-11-15", + "2022-08-15-preview", + "2022-08-15", + "2022-05-15-preview", + "2022-05-15", + "2022-02-15-preview", + "2021-11-15-preview", + "2021-10-15-preview", + "2021-10-15", + "2021-07-01-preview", + "2021-06-15", + "2021-05-15", + "2021-05-01-preview", + "2021-04-15", + "2021-04-01-preview", + "2021-03-15", + "2021-03-01-preview", + "2021-01-15", + "2020-09-01", + "2020-06-01-preview", + "2020-04-01", + "2020-03-01", + "2019-12-12", + "2019-08-01-preview", + "2019-08-01", + "2016-03-31", + "2016-03-19", + "2015-11-06", + "2015-04-08", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "North Central US", + "Central US", + "Brazil South", + "Canada Central", + "West US 2", + "East US 2", + "France Central", + "Japan East", + "Southeast Asia", + "Central India", + "South Africa North", + "Switzerland North", + "UAE North", + "UK West", + "North Europe", + "West Europe", + "Norway East", + "Korea Central", + "Australia East", + "Canada East", + "East Asia", + "Germany West Central", + "UK South", + "Australia Central", + "Australia Southeast", + "Japan West", + "Korea South", + "South India", + "West India", + "West US", + "South Central US", + "East US", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "locations/operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-15-preview", + "2023-09-15", + "2023-04-15", + "2023-03-15-preview", + "2023-03-15", + "2023-03-01-preview", + "2022-11-15-preview", + "2022-11-15", + "2022-08-15-preview", + "2022-08-15", + "2022-05-15-preview", + "2022-05-15", + "2022-02-15-preview", + "2021-11-15-preview", + "2021-10-15-preview", + "2021-10-15", + "2021-07-01-preview", + "2021-06-15", + "2021-05-15", + "2021-05-01-preview", + "2021-04-15", + "2021-04-01-preview", + "2021-03-15", + "2021-03-01-preview", + "2021-01-15", + "2020-09-01", + "2020-06-01-preview", + "2020-04-01", + "2020-03-01", + "2019-12-12", + "2019-08-01-preview", + "2019-08-01", + "2016-03-31", + "2016-03-19", + "2015-11-06", + "2015-04-08", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-15-preview", + "2023-09-15", + "2023-04-15", + "2023-03-15-preview", + "2023-03-15", + "2023-03-01-preview", + "2022-11-15-preview", + "2022-11-15", + "2022-08-15-preview", + "2022-08-15", + "2022-05-15-preview", + "2022-05-15", + "2022-02-15-preview", + "2021-11-15-preview", + "2021-10-15-preview", + "2021-10-15", + "2021-07-01-preview", + "2021-06-15", + "2021-05-15", + "2021-05-01-preview", + "2021-04-15", + "2021-04-01-preview", + "2021-03-15", + "2021-03-01-preview", + "2021-01-15", + "2020-09-01", + "2020-06-01-preview", + "2020-04-01", + "2020-03-01", + "2019-12-12", + "2019-08-01-preview", + "2019-08-01", + "2016-03-31", + "2016-03-19", + "2015-11-06", + "2015-04-08", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "North Central US", + "Central US", + "Brazil South", + "Canada Central", + "West US 2", + "East US 2", + "France Central", + "Japan East", + "Southeast Asia", + "Central India", + "South Africa North", + "Switzerland North", + "UAE North", + "UK West", + "North Europe", + "West Europe", + "Norway East", + "Korea Central", + "Australia East", + "Canada East", + "East Asia", + "Germany West Central", + "UK South", + "Australia Central", + "Australia Southeast", + "Japan West", + "Korea South", + "South India", + "West India", + "West US", + "South Central US", + "East US", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "locations/deleteVirtualNetworkOrSubnets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-15-preview", + "2023-09-15", + "2023-04-15", + "2023-03-15-preview", + "2023-03-15", + "2023-03-01-preview", + "2022-11-15-preview", + "2022-11-15", + "2022-08-15-preview", + "2022-08-15", + "2022-05-15-preview", + "2022-05-15", + "2022-02-15-preview", + "2021-11-15-preview", + "2021-10-15-preview", + "2021-10-15", + "2021-07-01-preview", + "2021-06-15", + "2021-05-01-preview", + "2021-04-01-preview", + "2021-03-01-preview", + "2020-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "North Central US", + "Central US", + "Brazil South", + "Canada Central", + "West US 2", + "East US 2", + "France Central", + "Japan East", + "Southeast Asia", + "Central India", + "South Africa North", + "Switzerland North", + "UAE North", + "UK West", + "North Europe", + "West Europe", + "Norway East", + "Korea Central", + "Australia East", + "Canada East", + "East Asia", + "Germany West Central", + "UK South", + "Australia Central", + "Australia Southeast", + "Japan West", + "Korea South", + "South India", + "West India", + "West US", + "South Central US", + "East US", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "locations/restorableDatabaseAccounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-15-preview", + "2023-09-15", + "2023-04-15", + "2023-03-15-preview", + "2023-03-15", + "2023-03-01-preview", + "2022-11-15-preview", + "2022-11-15", + "2022-08-15-preview", + "2022-08-15", + "2022-05-15-preview", + "2022-05-15", + "2022-02-15-preview", + "2021-11-15-preview", + "2021-10-15-preview", + "2021-10-15", + "2021-07-01-preview", + "2021-06-15", + "2021-05-01-preview", + "2021-04-01-preview", + "2021-03-01-preview", + "2020-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "North Central US", + "Central US", + "Brazil South", + "Canada Central", + "West US 2", + "East US 2", + "France Central", + "Japan East", + "Southeast Asia", + "Central India", + "South Africa North", + "Switzerland North", + "UAE North", + "UK West", + "North Europe", + "West Europe", + "Norway East", + "Korea Central", + "Australia East", + "Canada East", + "East Asia", + "Germany West Central", + "UK South", + "Australia Central", + "Australia Southeast", + "Japan West", + "Korea South", + "South India", + "West India", + "West US", + "South Central US", + "East US", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "restorableDatabaseAccounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-15-preview", + "2023-09-15", + "2023-04-15", + "2023-03-15-preview", + "2023-03-15", + "2023-03-01-preview", + "2022-11-15-preview", + "2022-11-15", + "2022-08-15-preview", + "2022-08-15", + "2022-05-15-preview", + "2022-05-15", + "2022-02-15-preview", + "2021-11-15-preview", + "2021-10-15-preview", + "2021-10-15", + "2021-07-01-preview", + "2021-05-01-preview", + "2021-04-01-preview", + "2021-03-01-preview" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2021-10-15", + "locationMappings": null, + "locations": [ + "West Central US", + "North Central US", + "Central US", + "Brazil South", + "Canada Central", + "West US 2", + "East US 2", + "France Central", + "Japan East", + "Southeast Asia", + "Central India", + "South Africa North", + "Switzerland North", + "UAE North", + "UK West", + "North Europe", + "West Europe", + "Norway East", + "Korea Central", + "Australia East", + "Canada East", + "East Asia", + "Germany West Central", + "UK South", + "Australia Central", + "Australia Southeast", + "Japan West", + "Korea South", + "South India", + "West India", + "West US", + "South Central US", + "East US", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "cassandraClusters", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-15-preview", + "2023-09-15", + "2023-04-15", + "2023-03-15-preview", + "2023-03-15", + "2023-03-01-preview", + "2022-11-15-preview", + "2022-11-15", + "2022-08-15-preview", + "2022-08-15", + "2022-05-15-preview", + "2022-05-15", + "2022-02-15-preview", + "2021-11-15-preview", + "2021-10-15-preview", + "2021-10-15", + "2021-07-01-preview", + "2021-05-01-preview", + "2021-04-01-preview", + "2021-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "North Central US", + "Central US", + "Brazil South", + "Canada Central", + "West US 2", + "East US 2", + "France Central", + "Japan East", + "Southeast Asia", + "Central India", + "South Africa North", + "Switzerland North", + "UAE North", + "UK West", + "North Europe", + "West Europe", + "Norway East", + "Korea Central", + "Australia East", + "Canada East", + "East Asia", + "Germany West Central", + "UK South", + "Australia Central", + "Australia Southeast", + "Japan West", + "Korea South", + "South India", + "West India", + "West US", + "South Central US", + "East US", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "databaseAccounts/encryptionScopes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-15-preview", + "2023-03-15-preview", + "2023-03-01-preview", + "2022-10-15-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-03-01-preview", + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Australia East", + "West US 2", + "East US 2", + "North Europe", + "Canada Central", + "Central US", + "South Central US", + "Southeast Asia" + ], + "properties": null, + "resourceType": "mongoClusters", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-15-preview", + "2023-03-15-preview", + "2023-03-01-preview", + "2022-10-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Australia East", + "West US 2", + "East US 2", + "North Europe", + "Canada Central", + "Central US", + "South Central US", + "Southeast Asia" + ], + "properties": null, + "resourceType": "locations/mongoClusterOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-15-preview", + "2023-03-15-preview", + "2023-03-01-preview", + "2022-10-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Australia East", + "West US 2", + "East US 2", + "North Europe", + "Canada Central", + "Central US", + "South Central US", + "Southeast Asia" + ], + "properties": null, + "resourceType": "locations/mongoClusterAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-15-preview", + "2023-03-15-preview", + "2023-03-01-preview", + "2022-10-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Australia East", + "West US 2", + "East US 2", + "North Europe", + "Canada Central", + "Central US", + "South Central US", + "Southeast Asia" + ], + "properties": null, + "resourceType": "locations/checkMongoClusterNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-15-preview", + "2023-09-15", + "2023-04-15", + "2023-03-15-preview", + "2023-03-15", + "2023-03-01-preview", + "2022-11-15-preview", + "2022-11-15", + "2022-08-15-preview", + "2022-08-15" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "North Central US", + "Central US", + "Brazil South", + "Canada Central", + "West US 2", + "East US 2", + "France Central", + "Japan East", + "Southeast Asia", + "Central India", + "South Africa North", + "Switzerland North", + "UAE North", + "UK West", + "North Europe", + "West Europe", + "Norway East", + "Korea Central", + "Australia East", + "Canada East", + "East Asia", + "Germany West Central", + "UK South", + "Australia Central", + "Australia Southeast", + "Japan West", + "Korea South", + "South India", + "West India", + "West US", + "South Central US", + "East US", + "France South", + "Australia Central 2", + "UAE Central", + "West US 3", + "Brazil SouthEast", + "Germany North", + "Switzerland West", + "South Africa West", + "Norway West", + "Jio India West", + "Jio India Central", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central", + "Central US EUAP", + "East US 2 EUAP" + ], + "properties": null, + "resourceType": "locations/notifyNetworkSecurityPerimeterUpdatesAvailable", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "b7faa489-a4c8-4b39-bb0c-842c3de2de6a", + "roleDefinitionId": "d3712db5-5194-474e-a895-28eebd34c81a" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Easm", + "namespace": "Microsoft.Easm", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview", + "2022-04-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "South Central US", + "West US 3", + "East US", + "East Asia", + "Sweden Central", + "Australia East", + "Japan East", + "West Europe", + "North Europe", + "Switzerland North", + "Canada Central", + "Central US", + "Norway East", + "France Central" + ], + "properties": null, + "resourceType": "workspaces", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview", + "2022-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "South Central US", + "West US 3", + "East US", + "East Asia", + "Sweden Central", + "Australia East", + "Japan East", + "West Europe", + "North Europe", + "Switzerland North", + "Canada Central", + "Central US", + "Norway East", + "France Central" + ], + "properties": null, + "resourceType": "workspaces/labels", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview", + "2022-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "South Central US", + "West US 3", + "East US", + "East Asia", + "Sweden Central", + "Australia East", + "Japan East", + "West Europe", + "North Europe", + "Switzerland North", + "Canada Central", + "Central US", + "Norway East", + "France Central" + ], + "properties": null, + "resourceType": "workspaces/tasks", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "89d7a6e7-8c6f-49ec-86d3-6f77d3ceab9d", + "roleDefinitionId": "86979e45-9b69-4f26-8dac-4c249a53a95c" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.EdgeOrder", + "namespace": "Microsoft.EdgeOrder", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2022-05-01-preview", + "2021-12-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Europe", + "East US", + "Southeast Asia" + ], + "properties": null, + "resourceType": "addresses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2022-05-01-preview", + "2021-12-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Europe", + "East US", + "Southeast Asia" + ], + "properties": null, + "resourceType": "orderItems", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2022-05-01-preview", + "2021-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Europe", + "East US", + "Southeast Asia" + ], + "properties": null, + "resourceType": "orders", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2022-05-01-preview", + "2021-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Europe" + ], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2022-05-01-preview", + "2021-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Europe", + "East US", + "Southeast Asia" + ], + "properties": null, + "resourceType": "locations/orders", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2022-05-01-preview", + "2021-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Europe", + "East US", + "Southeast Asia" + ], + "properties": null, + "resourceType": "listProductFamilies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2022-05-01-preview", + "2021-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Europe", + "East US", + "Southeast Asia" + ], + "properties": null, + "resourceType": "listConfigurations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2022-05-01-preview", + "2021-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Europe", + "East US", + "Southeast Asia" + ], + "properties": null, + "resourceType": "productFamiliesMetadata", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Europe", + "East US", + "Southeast Asia" + ], + "properties": null, + "resourceType": "locations/hciCatalog", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Europe", + "East US", + "Southeast Asia" + ], + "properties": null, + "resourceType": "locations/hciCatalog/vendors", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Europe", + "East US", + "Southeast Asia" + ], + "properties": null, + "resourceType": "locations/hciCatalog/platforms", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Europe", + "East US", + "Southeast Asia" + ], + "properties": null, + "resourceType": "locations/hciCatalog/projects", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US" + ], + "properties": null, + "resourceType": "locations/hciFlightCatalog", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US" + ], + "properties": null, + "resourceType": "locations/hciFlightCatalog/vendors", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US" + ], + "properties": null, + "resourceType": "locations/hciFlightCatalog/platforms", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US" + ], + "properties": null, + "resourceType": "locations/hciFlightCatalog/projects", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2022-05-01-preview", + "2021-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Europe", + "East US", + "Southeast Asia" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2022-05-01-preview", + "2021-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Europe", + "East US", + "Southeast Asia" + ], + "properties": null, + "resourceType": "locations/operationresults", + "zoneMappings": null + } + ] + }, + { + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.EdgeOrderPartner", + "namespace": "Microsoft.EdgeOrderPartner", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-07-01-preview", + "2021-12-01", + "2020-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Europe", + "East US", + "Southeast Asia" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "9d777fa9-b417-43b8-8991-12f8ee2161d2", + "roleDefinitionId": "727fce2f-45e6-4d8d-8a08-7302549a924f" + }, + { + "applicationId": "5b81a823-5f67-4fb3-8d0f-4c92b5044fe4", + "roleDefinitionId": "e0ad5282-27b3-4c62-a72f-ea7bef45503e" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Elastic", + "namespace": "Microsoft.Elastic", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-06-15-preview", + "2023-06-01", + "2023-05-01-preview", + "2023-02-01-preview", + "2022-09-01-preview", + "2022-07-01-preview", + "2022-05-05-preview", + "2021-10-01-preview", + "2021-09-01-preview", + "2020-07-01-preview", + "2020-07-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-06-15-preview", + "2023-06-01", + "2023-05-01-preview", + "2023-02-01-preview", + "2022-09-01-preview", + "2022-07-01-preview", + "2022-05-05-preview", + "2021-10-01-preview", + "2021-09-01-preview", + "2020-07-01-preview", + "2020-07-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-06-15-preview", + "2023-06-01", + "2023-05-01-preview", + "2023-02-01-preview", + "2022-09-01-preview", + "2022-07-01-preview", + "2022-05-05-preview", + "2021-10-01-preview", + "2021-09-01-preview", + "2020-07-01-preview", + "2020-07-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US 2 EUAP", + "Central US EUAP", + "West US 2", + "UK South", + "East US", + "East US 2", + "West Europe", + "France Central", + "Central US", + "South Central US", + "Japan East", + "Southeast Asia", + "Australia East", + "North Europe", + "Canada Central", + "Brazil South", + "South Africa North", + "Central India" + ], + "properties": null, + "resourceType": "locations/operationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-06-15-preview", + "2023-06-01", + "2023-05-01-preview", + "2023-02-01-preview", + "2022-09-01-preview", + "2022-07-01-preview", + "2022-05-05-preview", + "2021-10-01-preview", + "2021-09-01-preview", + "2020-07-01-preview", + "2020-07-01" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "UK South", + "East US", + "East US 2", + "West Europe", + "France Central", + "Central US", + "South Central US", + "Japan East", + "Southeast Asia", + "Australia East", + "North Europe", + "Canada Central", + "Brazil South", + "South Africa North", + "Central India" + ], + "properties": null, + "resourceType": "monitors", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-06-15-preview", + "2023-06-01", + "2023-05-01-preview", + "2023-02-01-preview", + "2022-09-01-preview", + "2022-07-01-preview", + "2022-05-05-preview", + "2021-10-01-preview", + "2021-09-01-preview", + "2020-07-01-preview", + "2020-07-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "UK South", + "East US", + "East US 2", + "West Europe", + "France Central", + "Central US", + "South Central US", + "Japan East", + "Southeast Asia", + "Australia East", + "North Europe", + "Canada Central", + "Brazil South", + "South Africa North", + "Central India" + ], + "properties": null, + "resourceType": "monitors/tagRules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-06-15-preview", + "2023-06-01", + "2023-05-01-preview", + "2023-02-01-preview", + "2022-09-01-preview", + "2022-07-01-preview", + "2022-05-05-preview", + "2021-10-01-preview", + "2021-09-01-preview", + "2020-07-01-preview", + "2020-07-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-06-15-preview", + "2023-06-01", + "2023-05-01-preview", + "2023-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "elasticVersions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-06-15-preview", + "2023-06-01", + "2023-05-01-preview", + "2023-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "getOrganizationApiKey", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "getElasticOrganizationToAzureSubscriptionMapping", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "0e71b730-360b-426b-aa55-081c05458189", + "roleDefinitionId": "7cfec4cb-329d-4e0c-8e73-5208e9c72114" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.ElasticSan", + "namespace": "Microsoft.ElasticSan", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-12-01-preview", + "2021-11-20-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-12-01-preview", + "locationMappings": null, + "locations": [ + "East US 2 (Stage)", + "France Central", + "Southeast Asia", + "West US 2", + "UK South", + "Australia East", + "North Europe", + "West US 3", + "Sweden Central", + "South Central US", + "East US", + "East US 2", + "West Europe" + ], + "properties": null, + "resourceType": "elasticSans", + "zoneMappings": [ + { + "location": "Australia East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "South Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Sweden Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 3", + "zones": [ + "1", + "2", + "3" + ] + } + ] + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-12-01-preview", + "2021-11-20-preview" + ], + "capabilities": "SystemAssignedResourceIdentity", + "defaultApiVersion": "2023-01-01", + "locationMappings": null, + "locations": [ + "East US 2 (Stage)", + "France Central", + "Southeast Asia", + "West US 2", + "UK South", + "Australia East", + "North Europe", + "West US 3", + "Sweden Central", + "South Central US", + "East US", + "East US 2", + "West Europe" + ], + "properties": null, + "resourceType": "elasticSans/volumeGroups", + "zoneMappings": [ + { + "location": "Australia East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "South Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Sweden Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 3", + "zones": [ + "1", + "2", + "3" + ] + } + ] + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-12-01-preview", + "2021-11-20-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-11-20-preview", + "locationMappings": null, + "locations": [ + "East US 2 (Stage)", + "France Central", + "Southeast Asia", + "West US 2", + "UK South", + "Australia East", + "North Europe", + "West US 3", + "Sweden Central", + "South Central US", + "East US", + "East US 2", + "West Europe" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-12-01-preview", + "2021-11-20-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-11-20-preview", + "locationMappings": null, + "locations": [ + "East US 2 (Stage)", + "France Central", + "Southeast Asia", + "West US 2", + "UK South", + "Australia East", + "North Europe", + "West US 3", + "Sweden Central", + "South Central US", + "East US", + "East US 2", + "West Europe" + ], + "properties": null, + "resourceType": "locations/asyncoperations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-11-20-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-11-20-preview", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "3b14f6af-79b6-4212-8d28-171c95ba1666", + "roleDefinitionId": "92c60102-dbf9-49b6-bf66-3531aa30ef6b" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.EnterpriseSupport", + "namespace": "Microsoft.EnterpriseSupport", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "EnterpriseSupports", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "operationStatuses", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "a18e6bf0-0f56-43bf-869c-a7c29289c90e", + "roleDefinitionId": "f1c78e8b-8c43-4eee-90dd-870f0576fe50" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.EntitlementManagement", + "namespace": "Microsoft.EntitlementManagement", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "Operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "4962773b-9cdb-44cf-a8bf-237846a00ab7", + "roleDefinitionId": "7FE036D8-246F-48BF-A78F-AB3EE699C8F3" + }, + { + "applicationId": "823c0a78-5de0-4445-a7f5-c2f42d7dc89b" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.EventGrid", + "namespace": "Microsoft.EventGrid", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2022-06-15", + "2021-12-01", + "2021-10-15-preview", + "2021-06-01-preview", + "2020-10-15-preview", + "2020-06-01", + "2020-04-01-preview", + "2020-01-01-preview", + "2019-06-01", + "2019-02-01-preview", + "2019-01-01", + "2018-09-15-preview", + "2018-05-01-preview", + "2018-01-01", + "2017-09-15-preview", + "2017-06-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2022-06-15", + "2021-12-01", + "2021-10-15-preview", + "2021-06-01-preview", + "2020-10-15-preview", + "2020-06-01", + "2020-04-01-preview", + "2020-01-01-preview", + "2019-06-01", + "2019-02-01-preview", + "2019-01-01", + "2018-09-15-preview", + "2018-05-01-preview", + "2018-01-01", + "2017-09-15-preview", + "2017-06-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "East US", + "West US", + "Central US", + "East US 2", + "West Central US", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Jio India Central", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "locations/eventSubscriptions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2022-06-15", + "2021-12-01", + "2021-10-15-preview", + "2021-06-01-preview", + "2020-10-15-preview", + "2020-06-01", + "2020-04-01-preview", + "2020-01-01-preview", + "2019-06-01", + "2019-02-01-preview", + "2019-01-01", + "2018-09-15-preview", + "2018-05-01-preview", + "2018-01-01", + "2017-09-15-preview", + "2017-06-15-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "East US", + "West US", + "Central US", + "East US 2", + "West Central US", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "West US 3", + "Jio India West", + "Jio India Central", + "Sweden Central", + "Norway East", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "eventSubscriptions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2022-06-15", + "2021-12-01", + "2021-10-15-preview", + "2021-06-01-preview", + "2020-10-15-preview", + "2020-06-01", + "2020-04-01-preview", + "2020-01-01-preview", + "2019-06-01", + "2019-02-01-preview", + "2019-01-01", + "2018-09-15-preview", + "2018-05-01-preview", + "2018-01-01", + "2017-09-15-preview", + "2017-06-15-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "East US", + "West US", + "Central US", + "East US 2", + "West Central US", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "West US 3", + "Jio India West", + "Jio India Central", + "Sweden Central", + "Norway East", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "topics", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2022-06-15", + "2021-12-01", + "2021-10-15-preview", + "2021-06-01-preview", + "2020-10-15-preview", + "2020-06-01", + "2020-04-01-preview", + "2020-01-01-preview", + "2019-06-01", + "2019-02-01-preview", + "2018-09-15-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "West US 2", + "East US", + "West US", + "East US 2", + "West Central US", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "West US 3", + "Jio India West", + "Jio India Central", + "Sweden Central", + "Norway East", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "domains", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2022-06-15", + "2021-12-01", + "2021-10-15-preview", + "2021-06-01-preview", + "2020-10-15-preview", + "2020-06-01", + "2020-04-01-preview", + "2020-01-01-preview", + "2019-06-01", + "2019-02-01-preview", + "2018-09-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "West US 2", + "East US", + "West US", + "East US 2", + "West Central US", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "West US 3", + "Jio India West", + "Jio India Central", + "Sweden Central", + "Norway East", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "domains/topics", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2022-06-15", + "2021-12-01", + "2021-10-15-preview", + "2021-06-01-preview", + "2020-10-15-preview", + "2020-06-01", + "2020-04-01-preview", + "2020-01-01-preview", + "2019-06-01", + "2019-02-01-preview", + "2019-01-01", + "2018-09-15-preview", + "2018-05-01-preview", + "2018-01-01", + "2017-09-15-preview", + "2017-06-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "East US", + "West US", + "Central US", + "East US 2", + "West Central US", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "West US 3", + "Jio India West", + "Jio India Central", + "Sweden Central", + "Norway East", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "topicTypes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-06-15", + "2021-12-01", + "2021-10-15-preview", + "2021-06-01-preview", + "2020-10-15-preview", + "2020-06-01", + "2020-04-01-preview", + "2020-01-01-preview", + "2019-06-01", + "2019-02-01-preview", + "2019-01-01", + "2018-09-15-preview", + "2018-05-01-preview", + "2018-01-01", + "2017-09-15-preview", + "2017-06-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "East US", + "West US", + "Central US", + "East US 2", + "West Central US", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "West US 3", + "Jio India West", + "Jio India Central", + "Sweden Central", + "Norway East", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2022-06-15", + "2021-12-01", + "2021-10-15-preview", + "2021-06-01-preview", + "2020-10-15-preview", + "2020-06-01", + "2020-04-01-preview", + "2020-01-01-preview", + "2019-06-01", + "2019-02-01-preview", + "2019-01-01", + "2018-09-15-preview", + "2018-05-01-preview", + "2018-01-01", + "2017-09-15-preview", + "2017-06-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "East US", + "West US", + "Central US", + "East US 2", + "West Central US", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "West US 3", + "Jio India West", + "Jio India Central", + "Sweden Central", + "Norway East", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "locations/operationsStatus", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2022-06-15", + "2021-12-01", + "2021-10-15-preview", + "2021-06-01-preview", + "2020-10-15-preview", + "2020-06-01", + "2020-04-01-preview", + "2020-01-01-preview", + "2019-06-01", + "2019-02-01-preview", + "2019-01-01", + "2018-09-15-preview", + "2018-05-01-preview", + "2018-01-01", + "2017-09-15-preview", + "2017-06-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "East US", + "West US", + "Central US", + "East US 2", + "West Central US", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "West US 3", + "Jio India West", + "Jio India Central", + "Sweden Central", + "Norway East", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "locations/operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2022-06-15", + "2021-12-01", + "2021-10-15-preview", + "2021-06-01-preview", + "2020-10-15-preview", + "2020-06-01", + "2020-04-01-preview", + "2020-01-01-preview", + "2019-06-01", + "2019-02-01-preview", + "2019-01-01", + "2018-09-15-preview", + "2018-05-01-preview", + "2018-01-01", + "2017-09-15-preview", + "2017-06-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "East US", + "West US", + "Central US", + "East US 2", + "West Central US", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "Switzerland North", + "Germany West Central", + "West US 3", + "Jio India West", + "Jio India Central", + "Sweden Central", + "Norway East", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "locations/topicTypes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2022-06-15", + "2021-12-01", + "2021-10-15-preview", + "2021-06-01-preview", + "2020-10-15-preview", + "2020-06-01", + "2020-04-01-preview", + "2020-01-01-preview", + "2019-06-01", + "2019-02-01-preview", + "2019-01-01", + "2018-09-15-preview", + "2018-05-01-preview", + "2018-01-01", + "2017-09-15-preview", + "2017-06-15-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "East US", + "West US", + "Central US", + "East US 2", + "West Central US", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "West US 3", + "Jio India West", + "Jio India Central", + "Sweden Central", + "Norway East", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "extensionTopics", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2022-06-15", + "2021-12-01", + "2021-10-15-preview", + "2021-06-01-preview", + "2020-10-15-preview", + "2020-06-01", + "2020-04-01-preview", + "2020-01-01-preview", + "2019-06-01", + "2019-02-01-preview", + "2019-01-01", + "2018-09-15-preview", + "2018-05-01-preview", + "2018-01-01", + "2017-09-15-preview", + "2017-06-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2022-06-15", + "2021-12-01", + "2021-10-15-preview", + "2021-06-01-preview", + "2020-10-15-preview", + "2020-06-01", + "2020-04-01-preview", + "2020-01-01-preview", + "2019-06-01", + "2019-02-01-preview", + "2019-01-01", + "2018-09-15-preview", + "2018-05-01-preview", + "2018-01-01", + "2017-09-15-preview", + "2017-06-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operationsStatus", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2022-06-15", + "2021-12-01", + "2021-10-15-preview", + "2021-06-01-preview", + "2020-10-15-preview", + "2020-04-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global", + "West Central US", + "Central US", + "West US 2", + "East US", + "West US", + "East US 2", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "West US 3", + "Jio India West", + "Jio India Central", + "Sweden Central", + "Norway East", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "systemTopics", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2022-06-15", + "2021-12-01", + "2021-10-15-preview", + "2021-06-01-preview", + "2020-10-15-preview", + "2020-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global", + "West Central US", + "Central US", + "West US 2", + "East US", + "West US", + "East US 2", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "West US 3", + "Jio India West", + "Jio India Central", + "Sweden Central", + "Norway East", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "systemTopics/eventSubscriptions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2022-06-15", + "2021-10-15-preview", + "2021-06-01-preview", + "2020-10-15-preview", + "2020-04-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Global" + ], + "properties": null, + "resourceType": "partnerRegistrations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2022-06-15", + "2021-10-15-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Global" + ], + "properties": null, + "resourceType": "partnerConfigurations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2022-06-15", + "2021-10-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "East US", + "West US", + "Central US", + "East US 2", + "West Central US", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "West US 3", + "Jio India West", + "Jio India Central", + "Sweden Central", + "Norway East", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "verifiedPartners", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Europe", + "West Europe", + "Southeast Asia", + "East Asia", + "South Central US", + "UAE North", + "East US", + "Central US", + "West US 2" + ], + "properties": null, + "resourceType": "namespaces", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2022-06-15", + "2021-10-15-preview", + "2021-06-01-preview", + "2020-04-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "Central US", + "West US 2", + "East US", + "West US", + "East US 2", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "West US 3", + "Jio India West", + "Jio India Central", + "Sweden Central", + "Norway East", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "partnerNamespaces", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2022-06-15", + "2021-10-15-preview", + "2021-06-01-preview", + "2020-10-15-preview", + "2020-04-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "Central US", + "West US 2", + "East US", + "West US", + "East US 2", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "West US 3", + "Jio India West", + "Jio India Central", + "Sweden Central", + "Norway East", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "partnerTopics", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2022-06-15", + "2021-10-15-preview", + "2021-06-01-preview", + "2020-10-15-preview", + "2020-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "Central US", + "West US 2", + "East US", + "West US", + "East US 2", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "West US 3", + "Jio India West", + "Jio India Central", + "Sweden Central", + "Norway East", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "partnerTopics/eventSubscriptions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2021-10-15-preview", + "2021-06-01-preview", + "2020-10-15-preview", + "2020-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "Central US", + "West US 2", + "East US", + "West US", + "East US 2", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "West US 3", + "Jio India West", + "Jio India Central", + "Sweden Central", + "Norway East", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "partnerNamespaces/eventChannels", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2022-06-15", + "2021-10-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "Central US", + "West US 2", + "East US", + "West US", + "East US 2", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "West US 3", + "Jio India West", + "Jio India Central", + "Sweden Central", + "Norway East", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "partnerNamespaces/channels", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2021-10-15-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "Central US", + "West US 2", + "East US", + "West US", + "East US 2", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "West US 3", + "Jio India West", + "Jio India Central", + "Sweden Central", + "Norway East", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "partnerDestinations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "80369ed6-5f11-4dd9-bef3-692475845e77", + "roleDefinitionId": "eb8e1991-5de0-42a6-a64b-29b059341b7b" + }, + { + "applicationId": "6201d19e-14fb-4472-a2d6-5634a5c97568" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.EventHub", + "namespace": "Microsoft.EventHub", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-01-01-preview", + "2022-10-01-preview", + "2022-01-01-preview", + "2021-11-01", + "2021-06-01-preview", + "2021-01-01-preview", + "2018-01-01-preview", + "2017-04-01", + "2015-08-01", + "2014-09-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2017-04-01", + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "namespaces", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview", + "2022-10-01-preview", + "2022-01-01-preview", + "2021-11-01", + "2021-06-01-preview", + "2018-01-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "clusters", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-01-01-preview", + "2022-10-01-preview", + "2022-01-01-preview", + "2021-11-01", + "2021-06-01-preview", + "2021-01-01-preview", + "2018-01-01-preview", + "2017-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "namespaces/authorizationrules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-01-01-preview", + "2022-10-01-preview", + "2022-01-01-preview", + "2021-11-01", + "2021-06-01-preview", + "2021-01-01-preview", + "2018-01-01-preview", + "2017-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "namespaces/networkrulesets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview", + "2022-10-01-preview", + "2022-01-01-preview", + "2021-11-01", + "2021-06-01-preview", + "2021-01-01-preview", + "2018-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "namespaces/privateEndpointConnections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview", + "2022-10-01-preview", + "2022-01-01-preview", + "2021-11-01", + "2021-06-01-preview", + "2021-01-01-preview", + "2018-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "namespaces/privateEndpointConnectionProxies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview", + "2022-10-01-preview", + "2022-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "namespaces/networkSecurityPerimeterConfigurations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview", + "2022-10-01-preview", + "2022-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "namespaces/networkSecurityPerimeterAssociationProxies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-01-01-preview", + "2022-10-01-preview", + "2022-01-01-preview", + "2021-11-01", + "2021-06-01-preview", + "2021-01-01-preview", + "2018-01-01-preview", + "2017-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "namespaces/eventhubs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-01-01-preview", + "2022-10-01-preview", + "2022-01-01-preview", + "2021-11-01", + "2021-06-01-preview", + "2021-01-01-preview", + "2018-01-01-preview", + "2017-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "namespaces/eventhubs/authorizationrules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-01-01-preview", + "2022-10-01-preview", + "2022-01-01-preview", + "2021-11-01", + "2021-06-01-preview", + "2021-01-01-preview", + "2018-01-01-preview", + "2017-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "namespaces/eventhubs/consumergroups", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview", + "2022-10-01-preview", + "2022-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "namespaces/applicationGroups", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2015-08-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2015-08-01", + "2014-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkNamespaceAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-01-01-preview", + "2022-10-01-preview", + "2022-01-01-preview", + "2021-11-01", + "2021-06-01-preview", + "2021-01-01-preview", + "2018-01-01-preview", + "2017-04-01", + "2015-08-01", + "2014-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2017-04-01", + "2015-08-01", + "2014-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "sku", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-01-01-preview", + "2022-10-01-preview", + "2022-01-01-preview", + "2021-11-01", + "2021-06-01-preview", + "2021-01-01-preview", + "2018-01-01-preview", + "2017-04-01", + "2015-08-01", + "2014-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-01-01-preview", + "2022-10-01-preview", + "2022-01-01-preview", + "2021-11-01", + "2021-06-01-preview", + "2021-01-01-preview", + "2018-01-01-preview", + "2017-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "namespaces/disasterrecoveryconfigs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-01-01-preview", + "2022-10-01-preview", + "2022-01-01-preview", + "2021-11-01", + "2021-06-01-preview", + "2021-01-01-preview", + "2018-01-01-preview", + "2017-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "namespaces/disasterrecoveryconfigs/checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-01-01-preview", + "2022-10-01-preview", + "2022-01-01-preview", + "2021-11-01", + "2021-06-01-preview", + "2021-01-01-preview", + "2018-01-01-preview", + "2017-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview", + "2022-10-01-preview", + "2022-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations/operationStatus", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview", + "2022-10-01-preview", + "2022-01-01-preview", + "2021-11-01", + "2021-06-01-preview", + "2021-01-01-preview", + "2018-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/clusterOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview", + "2022-10-01-preview", + "2022-01-01-preview", + "2021-11-01", + "2021-06-01-preview", + "2021-01-01-preview", + "2018-01-01-preview", + "2017-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/namespaceOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview", + "2022-10-01-preview", + "2022-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil SouthEast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "Central US EUAP", + "East Asia", + "East US 2 EUAP", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Africa West", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/notifyNetworkSecurityPerimeterUpdatesAvailable", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-01-01-preview", + "2022-10-01-preview", + "2022-01-01-preview", + "2021-11-01", + "2021-06-01-preview", + "2021-01-01-preview", + "2018-01-01-preview", + "2017-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/deleteVirtualNetworkOrSubnets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-01-01-preview", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2018-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "availableClusterRegions", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "bc313c14-388c-4e7d-a58e-70017303ee3b", + "roleDefinitionId": "a775b938-2819-4dd0-8067-01f6e3b06392" + }, + { + "applicationId": "319f651f-7ddb-4fc6-9857-7aef9250bd05", + "roleDefinitionId": "0981f4e0-04a7-4e31-bd2b-b2ac2fc6ba4e" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.ExtendedLocation", + "namespace": "Microsoft.ExtendedLocation", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-03-15-preview", + "2020-07-15-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-08-31-preview", + "2021-08-15", + "2021-03-15-preview" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2021-08-15", + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "North Europe", + "France Central", + "Southeast Asia", + "Australia East", + "East US 2", + "West US 2", + "UK South", + "Central US", + "West Central US", + "West US", + "North Central US", + "South Central US", + "Korea Central", + "Japan East", + "East Asia", + "West US 3", + "Canada Central", + "Canada East", + "Switzerland North", + "Sweden Central", + "South Africa North", + "UAE North", + "Brazil South", + "Central India", + "UK West", + "South India", + "Norway East", + "Australia Southeast" + ], + "properties": null, + "resourceType": "customLocations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-08-31-preview", + "2021-08-15", + "2021-03-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "North Europe", + "France Central", + "Southeast Asia", + "Australia East", + "East US 2", + "West US 2", + "UK South", + "Central US", + "West Central US", + "West US", + "North Central US", + "South Central US", + "Korea Central", + "Japan East", + "East Asia", + "West US 3", + "Canada Central", + "Canada East", + "Switzerland North", + "Sweden Central", + "South Africa North", + "UAE North", + "Brazil South", + "Central India", + "UK West", + "South India", + "Norway East", + "Australia Southeast" + ], + "properties": null, + "resourceType": "customLocations/enabledResourceTypes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-08-31-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2021-08-31-preview", + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "North Europe", + "France Central", + "Southeast Asia", + "Australia East", + "East US 2", + "West US 2", + "UK South", + "Central US", + "West Central US", + "West US", + "North Central US", + "South Central US", + "Korea Central", + "Japan East", + "East Asia", + "West US 3", + "Canada Central", + "Canada East", + "Switzerland North", + "Sweden Central", + "South Africa North", + "UAE North", + "Brazil South", + "Central India", + "UK West", + "South India", + "Norway East", + "Australia Southeast" + ], + "properties": null, + "resourceType": "customLocations/resourceSyncRules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-03-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "North Europe", + "France Central", + "Southeast Asia", + "Australia East", + "East US 2", + "West US 2", + "UK South", + "Central US", + "West Central US", + "West US", + "North Central US", + "South Central US", + "Korea Central", + "Japan East", + "East Asia", + "West US 3", + "Canada Central", + "Canada East", + "Switzerland North", + "Sweden Central", + "South Africa North", + "UAE North", + "Brazil South", + "Central India", + "UK West", + "South India", + "Norway East", + "Australia Southeast" + ], + "properties": null, + "resourceType": "locations/operationsstatus", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-03-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "North Europe", + "France Central", + "Southeast Asia", + "Australia East", + "East US 2", + "West US 2", + "UK South", + "Central US", + "West Central US", + "West US", + "North Central US", + "South Central US", + "Korea Central", + "Japan East", + "East Asia", + "West US 3", + "Canada Central", + "Canada East", + "Switzerland North", + "Sweden Central", + "South Africa North", + "UAE North", + "Brazil South", + "Central India", + "UK West", + "South India", + "Norway East", + "Australia Southeast" + ], + "properties": null, + "resourceType": "locations/operationresults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-08-31-preview", + "2021-08-15", + "2021-03-15-preview", + "2020-07-15-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Fabric", + "namespace": "Microsoft.Fabric", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-07-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-07-01-preview", + "locationMappings": null, + "locations": [ + "West Central US", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "West India", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Qatar Central", + "Poland Central", + "South Africa North", + "South Africa West", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "capacities", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2022-07-01-preview", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2022-07-01-preview", + "locationMappings": null, + "locations": [ + "West Central US", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "West India", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Qatar Central", + "Poland Central", + "South Africa North", + "South Africa West", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2022-07-01-preview", + "locationMappings": null, + "locations": [ + "West Central US", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "West India", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Qatar Central", + "Poland Central", + "South Africa North", + "South Africa West", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/operationresults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2022-07-01-preview", + "locationMappings": null, + "locations": [ + "West Central US", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "West India", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Qatar Central", + "Poland Central", + "South Africa North", + "South Africa West", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/operationstatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US 2" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Falcon", + "namespace": "Microsoft.Falcon", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-01-20-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US" + ], + "properties": null, + "resourceType": "namespaces", + "zoneMappings": null + } + ] + }, + { + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Features", + "namespace": "Microsoft.Features", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationFree", + "registrationState": "Registered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-07-01", + "2015-12-01", + "2014-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "features", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-07-01", + "2015-12-01", + "2014-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "providers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-07-01", + "2020-09-01", + "2020-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "featureProviders", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-07-01", + "2020-09-01", + "2020-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "subscriptionFeatureRegistrations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-07-01", + "2020-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "featureProviderNamespaces", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-07-01", + "2020-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "featureConfigurations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-07-01", + "2015-12-01", + "2014-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "3e8f1ed5-3a6e-47d1-ad1e-b14e6b69704b", + "roleDefinitionId": "b6a0489e-83d8-4a5b-959b-74fc2422c20d" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.FluidRelay", + "namespace": "Microsoft.FluidRelay", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-06-01", + "2022-05-26", + "2022-05-11", + "2022-04-21", + "2022-04-03", + "2022-02-23-preview", + "2022-02-16-preview", + "2022-02-15", + "2021-09-10-preview", + "2021-08-30-preview", + "2021-06-15-preview", + "2021-03-12-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "South Central US", + "West US 2", + "West US 3", + "Central US", + "Australia East", + "Southeast Asia", + "Japan East", + "Canada Central", + "Central India", + "Korea Central", + "South Africa North", + "Brazil South", + "East Asia", + "UAE North", + "North Europe", + "Sweden Central", + "UK South", + "West Europe", + "France Central", + "Switzerland North", + "Norway East", + "Germany West Central" + ], + "properties": null, + "resourceType": "fluidRelayServers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-06-01", + "2022-05-26", + "2022-05-11", + "2022-04-21", + "2022-02-15", + "2021-03-12-preview", + "2021-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "Operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-06-01", + "2022-05-26", + "2022-05-11", + "2022-04-21", + "2022-02-15", + "2021-09-10-preview", + "2021-08-30-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "South Central US", + "West US 2", + "West US 3", + "Central US", + "Australia East", + "Southeast Asia", + "Japan East", + "Canada Central", + "Central India", + "Korea Central", + "South Africa North", + "Brazil South", + "East Asia", + "UAE North", + "North Europe", + "Sweden Central", + "UK South", + "West Europe", + "France Central", + "Switzerland North", + "Norway East", + "Germany West Central" + ], + "properties": null, + "resourceType": "fluidRelayServers/fluidRelayContainers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-08-30-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-08-30-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "Southeast Asia", + "West Europe" + ], + "properties": null, + "resourceType": "Locations/OperationStatuses", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "e3b317b2-ee2c-4eb2-ab20-c166ef7fe246", + "roleDefinitionId": "77a52abc-bc7b-4f1c-9b91-1920bcb55eba" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.GraphServices", + "namespace": "Microsoft.GraphServices", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-13", + "2022-09-22-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "accounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-13", + "2022-09-22-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-13", + "2022-09-22-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "RegisteredSubscriptions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-13", + "2022-09-22-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "Locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-13", + "2022-09-22-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US" + ], + "properties": null, + "resourceType": "Locations/OperationStatuses", + "zoneMappings": null + } + ] + }, + { + "authorization": { + "applicationId": "cc5476ec-3074-44d1-8461-711f5d9b0e39", + "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635", + "roleDefinitionId": "4a10987e-dbcf-4c3d-8e3d-7ddcd9c771c2" + }, + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.HanaOnAzure", + "namespace": "Microsoft.HanaOnAzure", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-11-03-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Germany West Central", + "West US", + "West US 2", + "East US", + "East US 2", + "West Europe", + "North Europe", + "Australia East", + "Australia Southeast", + "South Central US" + ], + "properties": null, + "resourceType": "hanaInstances", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-02-07-preview", + "2017-11-03-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-02-07-preview", + "locationMappings": null, + "locations": [ + "Germany West Central", + "West US", + "West US 2", + "East US", + "East US 2", + "West Europe", + "North Europe", + "Japan West", + "Australia East", + "Australia Southeast", + "Southeast Asia", + "South Central US", + "UK South" + ], + "properties": null, + "resourceType": "sapMonitors", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-11-03-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Germany West Central", + "West US", + "West US 2", + "East US", + "East US 2", + "West Europe", + "North Europe", + "Japan West", + "Australia East", + "Australia Southeast", + "Southeast Asia", + "South Central US", + "UK South" + ], + "properties": null, + "resourceType": "locations/operationsStatus", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-11-03-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-11-03-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Germany West Central", + "West US", + "West US 2", + "East US", + "East US 2", + "West Europe", + "North Europe", + "Japan West", + "Australia East", + "Australia Southeast", + "Southeast Asia", + "South Central US", + "UK South" + ], + "properties": null, + "resourceType": "locations/operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-11-03-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Germany West Central", + "West US", + "West US 2", + "East US", + "East US 2", + "West Europe", + "North Europe", + "Japan West", + "Australia East", + "Australia Southeast", + "Southeast Asia", + "South Central US", + "UK South" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "0eb690b7-d23e-4fb0-b43e-cd161ac80cc3", + "roleDefinitionId": "48397dc8-3910-486a-8165-ab2df987447f" + }, + { + "applicationId": "c1d9f466-6d5e-407a-9e7c-b4ec37f588f0", + "roleDefinitionId": "4d781af7-fdcd-4a1e-a425-cfe90f4d64c6" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.HardwareSecurityModules", + "namespace": "Microsoft.HardwareSecurityModules", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-08-31-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-08-31-preview", + "locationMappings": null, + "locations": [ + "UK West" + ], + "properties": null, + "resourceType": "cloudHsmClusters", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-11-30", + "2018-10-31-preview", + "2018-10-31" + ], + "capabilities": "None", + "defaultApiVersion": "2018-10-31", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-08-31-preview", + "2021-11-30", + "2018-10-31-preview", + "2018-10-31" + ], + "capabilities": "None", + "defaultApiVersion": "2018-10-31", + "locationMappings": null, + "locations": [ + "Central US EUAP", + "East US", + "East US 2", + "South Central US", + "Central US", + "West US", + "East Asia", + "Southeast Asia", + "North Europe", + "West Europe", + "Canada Central", + "UK South", + "UK West", + "Australia East", + "Australia Southeast", + "West US 2", + "South India", + "Central India", + "Japan East", + "Japan West", + "Switzerland North", + "Switzerland West" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "9191c4da-09fe-49d9-a5f1-d41cbe92ad95", + "managedByRoleDefinitionId": "346da55d-e1db-4a5a-89db-33ab3cdb6fc6", + "roleDefinitionId": "d102a6f3-d9cb-4633-8950-1243b975886c" + }, + { + "applicationId": "7865c1d2-f040-46cc-875f-831a1ef6a28a", + "roleDefinitionId": "e27c0895-d168-46d5-8b65-870eb2350378" + }, + { + "applicationId": "a6943a7f-5ba0-4a34-bf91-ab439efdda3f", + "roleDefinitionId": "e27c0895-d168-46d5-8b65-870eb2350378" + }, + { + "applicationId": "5a543d7c-9c4a-4f90-8cc7-6ae082a5b65b", + "roleDefinitionId": "43887822-0b5e-4b2c-841f-b8444932bc35" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.HDInsight", + "namespace": "Microsoft.HDInsight", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-15-preview", + "2021-06-01", + "2018-06-01-preview", + "2015-03-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2015-03-01-preview", + "locationMappings": null, + "locations": [ + "East US 2", + "South Central US", + "Australia Southeast", + "Central India", + "West Central US", + "West US 2", + "Canada East", + "Canada Central", + "Brazil South", + "UK South", + "UK West", + "East Asia", + "Australia East", + "Japan East", + "Japan West", + "North Europe", + "West Europe", + "North Central US", + "Central US", + "Southeast Asia", + "East US", + "Korea South", + "Korea Central", + "West US", + "South India", + "France Central", + "Australia Central", + "UAE North", + "UAE Central", + "Switzerland North", + "Switzerland West", + "South Africa North", + "Germany West Central", + "Brazil Southeast", + "Norway East", + "West US 3", + "JIO India West", + "Sweden Central", + "Germany North", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "clusters", + "zoneMappings": [ + { + "location": "Australia East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Central India", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East Asia", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Korea Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Norway East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Poland Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Qatar Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "South Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Sweden Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Switzerland North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "UAE North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 3", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Italy North", + "zones": [ + "1", + "2", + "3" + ] + } + ] + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-15-preview", + "2021-06-01", + "2018-06-01-preview", + "2015-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2015-03-01-preview", + "locationMappings": null, + "locations": [ + "East US 2", + "South Central US", + "Australia Southeast", + "Central India", + "West Central US", + "West US 2", + "Canada East", + "Canada Central", + "Brazil South", + "UK South", + "UK West", + "East Asia", + "Australia East", + "Japan East", + "Japan West", + "North Europe", + "West Europe", + "North Central US", + "Central US", + "Southeast Asia", + "East US", + "Korea South", + "Korea Central", + "West US", + "South India", + "France Central", + "Australia Central", + "UAE North", + "UAE Central", + "Switzerland North", + "Switzerland West", + "South Africa North", + "Germany West Central", + "Brazil Southeast", + "Norway East", + "West US 3", + "JIO India West", + "Sweden Central", + "Germany North", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "clusters/applications", + "zoneMappings": [ + { + "location": "Australia East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Central India", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East Asia", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Korea Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Norway East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Poland Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Qatar Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "South Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Sweden Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Switzerland North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "UAE North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 3", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Italy North", + "zones": [ + "1", + "2", + "3" + ] + } + ] + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-15-preview", + "2021-06-01", + "2018-06-01-preview", + "2015-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2015-03-01-preview", + "locationMappings": null, + "locations": [ + "East US 2", + "South Central US", + "Australia Southeast", + "Central India", + "West Central US", + "West US 2", + "Canada East", + "Canada Central", + "Brazil South", + "UK South", + "UK West", + "East Asia", + "Australia East", + "Japan East", + "Japan West", + "North Europe", + "West Europe", + "North Central US", + "Central US", + "Southeast Asia", + "East US", + "Korea South", + "Korea Central", + "West US", + "South India", + "France Central", + "Australia Central", + "UAE North", + "UAE Central", + "Switzerland North", + "Switzerland West", + "South Africa North", + "Germany West Central", + "Brazil Southeast", + "Norway East", + "West US 3", + "JIO India West", + "Sweden Central", + "Germany North", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "clusters/operationresults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-15-preview", + "2021-06-01", + "2018-06-01-preview", + "2015-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2015-03-01-preview", + "locationMappings": null, + "locations": [ + "East Asia", + "Southeast Asia", + "East US", + "East US 2", + "West US", + "North Central US", + "South Central US", + "Central US", + "North Europe", + "West Europe", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Brazil South", + "Central India" + ], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-15-preview", + "2021-06-01", + "2018-06-01-preview", + "2015-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2015-03-01-preview", + "locationMappings": null, + "locations": [ + "East US 2", + "South Central US", + "Australia Southeast", + "Central India", + "West Central US", + "West US 2", + "Canada East", + "Canada Central", + "Brazil South", + "UK South", + "UK West", + "East Asia", + "Australia East", + "Japan East", + "Japan West", + "North Europe", + "West Europe", + "North Central US", + "Central US", + "Southeast Asia", + "East US", + "Korea South", + "Korea Central", + "West US", + "South India", + "France Central", + "Australia Central", + "UAE North", + "UAE Central", + "Switzerland North", + "Switzerland West", + "South Africa North", + "Germany West Central", + "Brazil Southeast", + "Norway East", + "West US 3", + "JIO India West", + "Sweden Central", + "Germany North", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/capabilities", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-15-preview", + "2021-06-01", + "2018-06-01-preview", + "2015-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2015-03-01-preview", + "locationMappings": null, + "locations": [ + "East US 2", + "South Central US", + "Australia Southeast", + "Central India", + "West Central US", + "West US 2", + "Canada East", + "Canada Central", + "Brazil South", + "UK South", + "UK West", + "East Asia", + "Australia East", + "Japan East", + "Japan West", + "North Europe", + "West Europe", + "North Central US", + "Central US", + "Southeast Asia", + "East US", + "Korea South", + "Korea Central", + "West US", + "South India", + "France Central", + "Australia Central", + "UAE North", + "UAE Central", + "Switzerland North", + "Switzerland West", + "South Africa North", + "Germany West Central", + "Brazil Southeast", + "Norway East", + "West US 3", + "JIO India West", + "Sweden Central", + "Germany North", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/usages", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-15-preview", + "2021-06-01", + "2018-06-01-preview", + "2015-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2015-03-01-preview", + "locationMappings": null, + "locations": [ + "East US 2", + "South Central US", + "Australia Southeast", + "Central India", + "West Central US", + "West US 2", + "Canada East", + "Canada Central", + "Brazil South", + "UK South", + "UK West", + "East Asia", + "Australia East", + "Japan East", + "Japan West", + "North Europe", + "West Europe", + "North Central US", + "Central US", + "Southeast Asia", + "East US", + "Korea South", + "Korea Central", + "West US", + "South India", + "France Central", + "Australia Central", + "UAE North", + "UAE Central", + "Switzerland North", + "Switzerland West", + "South Africa North", + "Germany West Central", + "Brazil Southeast", + "Norway East", + "West US 3", + "JIO India West", + "Sweden Central", + "Germany North", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/billingSpecs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-15-preview", + "2021-06-01", + "2018-06-01-preview", + "2015-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2015-03-01-preview", + "locationMappings": null, + "locations": [ + "East US 2", + "South Central US", + "Australia Southeast", + "Central India", + "West Central US", + "West US 2", + "Canada East", + "Canada Central", + "Brazil South", + "UK South", + "UK West", + "East Asia", + "Australia East", + "Japan East", + "Japan West", + "North Europe", + "West Europe", + "North Central US", + "Central US", + "Southeast Asia", + "East US", + "Korea South", + "Korea Central", + "West US", + "South India", + "France Central", + "Australia Central", + "UAE North", + "UAE Central", + "Switzerland North", + "Switzerland West", + "South Africa North", + "Germany West Central", + "Brazil Southeast", + "Norway East", + "West US 3", + "JIO India West", + "Sweden Central", + "Germany North", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/operationresults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-15-preview", + "2021-06-01", + "2018-06-01-preview", + "2015-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2015-03-01-preview", + "locationMappings": null, + "locations": [ + "East US 2", + "South Central US", + "Australia Southeast", + "Central India", + "West Central US", + "West US 2", + "Canada East", + "Canada Central", + "Brazil South", + "UK South", + "UK West", + "East Asia", + "Australia East", + "Japan East", + "Japan West", + "North Europe", + "West Europe", + "North Central US", + "Central US", + "Southeast Asia", + "East US", + "Korea South", + "Korea Central", + "West US", + "South India", + "France Central", + "Australia Central", + "UAE North", + "UAE Central", + "Switzerland North", + "Switzerland West", + "South Africa North", + "Germany West Central", + "Brazil Southeast", + "Norway East", + "West US 3", + "JIO India West", + "Sweden Central", + "Germany North", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/azureasyncoperations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-15-preview", + "2021-06-01", + "2018-06-01-preview", + "2015-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2015-03-01-preview", + "locationMappings": null, + "locations": [ + "East US 2", + "South Central US", + "Australia Southeast", + "Central India", + "West Central US", + "West US 2", + "Canada East", + "Canada Central", + "Brazil South", + "UK South", + "UK West", + "East Asia", + "Australia East", + "Japan East", + "Japan West", + "North Europe", + "West Europe", + "North Central US", + "Central US", + "Southeast Asia", + "East US", + "Korea South", + "Korea Central", + "West US", + "South India", + "France Central", + "Australia Central", + "UAE North", + "UAE Central", + "Switzerland North", + "Switzerland West", + "South Africa North", + "Germany West Central", + "Brazil Southeast", + "Norway East", + "West US 3", + "JIO India West", + "Sweden Central", + "Germany North", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/validateCreateRequest", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2021-09-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East Asia", + "Southeast Asia", + "East US", + "East US 2", + "West US", + "North Central US", + "South Central US", + "Central US", + "North Europe", + "West Europe", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2021-09-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US 2", + "East US", + "West US 2", + "West US 3", + "West Europe", + "Central India", + "Korea Central", + "UK South", + "East Asia" + ], + "properties": null, + "resourceType": "locations/operationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-15-preview", + "2021-06-01", + "2018-06-01-preview", + "2015-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East Asia", + "Southeast Asia", + "East US", + "East US 2", + "West US", + "West US 2", + "West US 3", + "North Central US", + "South Central US", + "Central US", + "North Europe", + "West Europe", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Brazil South", + "Central India", + "Korea Central", + "UK South" + ], + "properties": null, + "resourceType": "locations/checkNameAvailability", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "6db4d6bb-6649-4dc2-84b7-0b5c6894031e", + "roleDefinitionId": "d42334cd-b979-4a22-accc-650d0d157676" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.HealthBot", + "namespace": "Microsoft.HealthBot", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2022-08-08", + "2021-08-24", + "2021-06-10", + "2020-12-08" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2022-08-08", + "2021-08-24", + "2021-06-10", + "2020-12-08" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2022-08-08", + "2021-08-24", + "2021-06-10", + "2020-12-08" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "East US 2", + "West US 2", + "South Central US", + "UK South", + "North Europe", + "Southeast Asia", + "Australia East", + "East US 2 EUAP", + "Central India", + "West Central US" + ], + "properties": null, + "resourceType": "Locations/OperationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2022-08-08", + "2021-08-24", + "2021-06-10", + "2020-12-08" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "East US 2", + "West US 2", + "South Central US", + "UK South", + "North Europe", + "Southeast Asia", + "Australia East", + "Central India", + "West Central US" + ], + "properties": null, + "resourceType": "healthBots", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "4f6778d8-5aef-43dc-a1ff-b073724b9495" + }, + { + "applicationId": "3274406e-4e0a-4852-ba4f-d7226630abb7", + "roleDefinitionId": "e39edba5-cde8-4529-ba1f-159138220220" + }, + { + "applicationId": "894b1496-c6e0-4001-b69c-81b327564ca4", + "managedByRoleDefinitionId": "712d0c87-6b58-47e2-90c0-962bc5e0e3f9", + "roleDefinitionId": "c69c1f48-8535-41e7-9667-539790b1c663" + }, + { + "applicationId": "75e725bf-66ce-4cea-9b9a-5c4caae57f33" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.HealthcareApis", + "namespace": "Microsoft.HealthcareApis", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-28", + "2022-12-01", + "2022-06-01", + "2022-05-15", + "2022-01-31-preview", + "2021-11-01", + "2021-06-01-preview", + "2021-01-11", + "2020-03-30", + "2020-03-15", + "2019-09-16", + "2018-08-20-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "UK West", + "North Central US", + "West US 2", + "Australia East", + "Southeast Asia", + "UK South", + "East US", + "West Europe", + "South Central US", + "East US 2", + "North Europe", + "West Central US", + "Japan East", + "Germany West Central", + "Canada Central", + "South Africa North", + "Switzerland North", + "Central India", + "West US 3", + "Sweden Central", + "Korea Central", + "France Central" + ], + "properties": null, + "resourceType": "services", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-28", + "2022-12-01", + "2022-06-01", + "2022-05-15", + "2022-01-31-preview", + "2021-11-01", + "2021-06-01-preview", + "2020-03-30" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "UK West", + "North Central US", + "West US 2", + "Australia East", + "UK South", + "East US", + "West Europe", + "South Central US", + "East US 2", + "North Europe", + "West Central US", + "Japan East", + "Germany West Central", + "Canada Central", + "South Africa North", + "Switzerland North", + "Central India", + "West US 3", + "Southeast Asia", + "Sweden Central", + "Korea Central", + "France Central" + ], + "properties": null, + "resourceType": "services/privateEndpointConnectionProxies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-28", + "2022-12-01", + "2022-06-01", + "2022-05-15", + "2022-01-31-preview", + "2021-11-01", + "2021-06-01-preview", + "2020-03-30" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "UK West", + "North Central US", + "West US 2", + "Australia East", + "Southeast Asia", + "UK South", + "East US", + "West Europe", + "South Central US", + "East US 2", + "North Europe", + "West Central US", + "Japan East", + "Germany West Central", + "Canada Central", + "South Africa North", + "Switzerland North", + "Central India", + "West US 3", + "Sweden Central", + "Korea Central", + "France Central" + ], + "properties": null, + "resourceType": "services/privateEndpointConnections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-28", + "2022-12-01", + "2022-06-01", + "2022-05-15", + "2022-01-31-preview", + "2021-11-01", + "2021-06-01-preview", + "2020-03-30" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "UK West", + "North Central US", + "West US 2", + "Australia East", + "Southeast Asia", + "UK South", + "East US", + "West Europe", + "South Central US", + "East US 2", + "North Europe", + "West Central US", + "Japan East", + "Germany West Central", + "Canada Central", + "South Africa North", + "Switzerland North", + "Central India", + "West US 3", + "Sweden Central", + "Korea Central", + "France Central" + ], + "properties": null, + "resourceType": "services/privateLinkResources", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "UK South", + "East US 2", + "UK West", + "North Central US", + "Australia East", + "Southeast Asia", + "East US", + "West Europe", + "South Central US", + "North Europe", + "West Central US", + "Japan East", + "Germany West Central", + "Canada Central", + "South Africa North", + "Switzerland North" + ], + "properties": null, + "resourceType": "services/iomtconnectors", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "UK South", + "East US 2", + "UK West", + "North Central US", + "Australia East", + "Southeast Asia", + "East US", + "West Europe", + "South Central US", + "North Europe", + "West Central US", + "Japan East", + "Germany West Central", + "Canada Central", + "South Africa North", + "Switzerland North" + ], + "properties": null, + "resourceType": "services/iomtconnectors/connections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "UK South", + "East US 2", + "UK West", + "North Central US", + "Australia East", + "Southeast Asia", + "East US", + "West Europe", + "South Central US", + "North Europe", + "West Central US", + "Japan East", + "Germany West Central", + "Canada Central", + "South Africa North", + "Switzerland North" + ], + "properties": null, + "resourceType": "services/iomtconnectors/mappings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-28", + "2022-12-01", + "2022-06-01", + "2022-05-15", + "2022-01-31-preview", + "2021-11-01", + "2021-06-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-02-28", + "locationMappings": null, + "locations": [ + "South Central US", + "North Europe", + "West Europe", + "East US", + "East US 2", + "Australia East", + "UK South", + "West US 2", + "Canada Central", + "Switzerland North", + "West US 3", + "Central India", + "Southeast Asia", + "Korea Central", + "Sweden Central", + "North Central US", + "France Central", + "Qatar Central", + "Japan East", + "West Central US" + ], + "properties": null, + "resourceType": "workspaces", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-28", + "2022-12-01", + "2022-06-01", + "2022-05-15", + "2022-01-31-preview", + "2021-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "South Central US", + "North Europe", + "West Europe", + "East US", + "East US 2", + "Australia East", + "UK South", + "West US 2", + "Canada Central", + "Switzerland North", + "Central India", + "West US 3", + "Southeast Asia", + "Korea Central", + "Sweden Central", + "North Central US", + "France Central", + "Qatar Central", + "Japan East", + "West Central US" + ], + "properties": null, + "resourceType": "workspaces/privateEndpointConnectionProxies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-28", + "2022-12-01", + "2022-06-01", + "2022-05-15", + "2022-01-31-preview", + "2021-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "South Central US", + "North Europe", + "West Europe", + "East US", + "East US 2", + "Australia East", + "UK South", + "West US 2", + "Canada Central", + "Switzerland North", + "Central India", + "West US 3", + "Southeast Asia", + "Korea Central", + "Sweden Central", + "North Central US", + "France Central", + "Qatar Central", + "Japan East", + "West Central US" + ], + "properties": null, + "resourceType": "workspaces/privateEndpointConnections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-28", + "2022-12-01", + "2022-06-01", + "2022-05-15", + "2022-01-31-preview", + "2021-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "South Central US", + "North Europe", + "West Europe", + "East US", + "East US 2", + "Australia East", + "UK South", + "West US 2", + "Canada Central", + "Switzerland North", + "Central India", + "West US 3", + "Southeast Asia", + "Korea Central", + "Sweden Central", + "North Central US", + "France Central", + "Qatar Central", + "Japan East", + "West Central US" + ], + "properties": null, + "resourceType": "workspaces/privateLinkResources", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-28", + "2022-12-01", + "2022-06-01", + "2022-05-15", + "2022-01-31-preview", + "2021-11-01", + "2021-06-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-02-28", + "locationMappings": null, + "locations": [ + "South Central US", + "North Europe", + "West Europe", + "East US", + "East US 2", + "Australia East", + "UK South", + "West US 2", + "Canada Central", + "Switzerland North", + "Central India", + "West US 3", + "Southeast Asia", + "Korea Central", + "Sweden Central", + "North Central US", + "France Central", + "Qatar Central", + "Japan East", + "West Central US" + ], + "properties": null, + "resourceType": "workspaces/dicomservices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-28", + "2022-12-01", + "2022-06-01", + "2022-05-15", + "2022-01-31-preview", + "2021-11-01", + "2021-06-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-02-28", + "locationMappings": null, + "locations": [ + "South Central US", + "North Europe", + "West Europe", + "East US", + "East US 2", + "Australia East", + "UK South", + "West US 2", + "Canada Central", + "Switzerland North", + "Central India", + "West US 3", + "Southeast Asia", + "Korea Central", + "Sweden Central", + "North Central US", + "France Central", + "Qatar Central", + "Japan East", + "West Central US" + ], + "properties": null, + "resourceType": "workspaces/iotconnectors", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-28", + "2022-12-01", + "2022-06-01", + "2022-05-15", + "2022-01-31-preview", + "2021-11-01", + "2021-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-02-28", + "locationMappings": null, + "locations": [ + "South Central US", + "North Europe", + "West Europe", + "East US", + "East US 2", + "Australia East", + "UK South", + "West US 2", + "Canada Central", + "Switzerland North", + "Central India", + "West US 3", + "Southeast Asia", + "Korea Central", + "Sweden Central", + "North Central US", + "France Central", + "Qatar Central", + "Japan East", + "West Central US" + ], + "properties": null, + "resourceType": "workspaces/iotconnectors/fhirdestinations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-28", + "2022-12-01", + "2022-06-01", + "2022-05-15", + "2022-01-31-preview", + "2021-11-01", + "2021-06-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-02-28", + "locationMappings": null, + "locations": [ + "South Central US", + "North Europe", + "West Europe", + "East US", + "East US 2", + "Australia East", + "UK South", + "West US 2", + "Canada Central", + "Switzerland North", + "Central India", + "West US 3", + "Southeast Asia", + "Korea Central", + "Sweden Central", + "North Central US", + "France Central", + "Qatar Central", + "Japan East", + "West Central US" + ], + "properties": null, + "resourceType": "workspaces/fhirservices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-28", + "2022-12-01", + "2022-06-01", + "2022-05-15", + "2022-01-31-preview", + "2021-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "South Central US", + "North Europe", + "West Europe", + "East US", + "East US 2", + "Australia East", + "UK South", + "West US 2", + "Canada Central", + "Switzerland North", + "Central India", + "West US 3", + "Southeast Asia", + "Korea Central", + "Sweden Central", + "North Central US", + "France Central", + "Qatar Central", + "Japan East", + "West Central US" + ], + "properties": null, + "resourceType": "workspaces/eventGridFilters", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-28", + "2022-12-01", + "2022-06-01", + "2022-05-15", + "2022-01-31-preview", + "2021-11-01", + "2021-06-01-preview", + "2021-01-11", + "2020-03-30", + "2020-03-15", + "2019-09-16", + "2018-08-20-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "UK West", + "North Central US", + "West US 2", + "Australia East", + "Southeast Asia", + "UK South", + "East US", + "West Europe", + "South Central US", + "East US 2", + "North Europe", + "West Central US", + "Japan East", + "Germany West Central", + "Canada Central", + "South Africa North", + "Switzerland North", + "Central India", + "West US 3", + "Korea Central", + "Sweden Central", + "France Central", + "Qatar Central" + ], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-28", + "2022-12-01", + "2022-06-01", + "2022-05-15", + "2022-01-31-preview", + "2021-11-01", + "2021-06-01-preview", + "2021-01-11", + "2020-05-01-preview", + "2020-03-30", + "2020-03-15", + "2019-09-16", + "2018-08-20-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "UK West", + "North Central US", + "West US 2", + "Australia East", + "Southeast Asia", + "UK South", + "East US", + "West Europe", + "South Central US", + "East US 2", + "North Europe", + "West Central US", + "Japan East", + "Germany West Central", + "Canada Central", + "South Africa North", + "Switzerland North", + "Central India", + "West US 3", + "Korea Central", + "Sweden Central", + "France Central", + "Qatar Central" + ], + "properties": null, + "resourceType": "locations/operationresults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-28", + "2022-12-01", + "2022-06-01", + "2022-05-15", + "2022-01-31-preview", + "2021-11-01", + "2021-06-01-preview", + "2021-03-31-preview", + "2021-01-11", + "2020-03-30", + "2020-03-15", + "2019-09-16", + "2018-08-20-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-28", + "2022-12-01", + "2022-06-01", + "2022-05-15", + "2022-01-31-preview", + "2021-11-01", + "2021-06-01-preview", + "2021-01-11", + "2020-03-30", + "2020-03-15", + "2019-09-16", + "2018-08-20-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "UK West", + "North Central US", + "West US 2", + "Australia East", + "Southeast Asia", + "UK South", + "East US", + "West Europe", + "South Central US", + "East US 2", + "North Europe", + "West Central US", + "Japan East", + "Germany West Central", + "Canada Central", + "South Africa North", + "Switzerland North", + "Central India", + "West US 3", + "Korea Central", + "Sweden Central", + "France Central", + "Qatar Central" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-01-31-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "UK West", + "North Central US", + "West US 2", + "Australia East", + "Southeast Asia", + "UK South", + "East US", + "West Europe", + "South Central US", + "East US 2", + "North Europe", + "West Central US", + "Japan East", + "Germany North", + "Germany West Central", + "Canada Central", + "South Africa North", + "Switzerland North", + "Central India", + "West US 3", + "Korea Central", + "Sweden Central", + "Brazil South", + "East Asia", + "Japan West", + "Qatar Central", + "France Central" + ], + "properties": null, + "resourceType": "validateMedtechMappings", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "da7e5b80-b180-4f49-b2d6-4410703374c5" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.HealthDataAIServices", + "namespace": "Microsoft.HealthDataAIServices", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US" + ], + "properties": null, + "resourceType": "locations/operationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "Operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "4f8283c6-0541-4500-975e-b0ea3856d674" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.HealthModel", + "namespace": "Microsoft.HealthModel", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "5b534afd-fdc0-4b38-a77f-af25442e3149", + "roleDefinitionId": "27d9fedd-5b4c-44b5-a9da-724fa33445c8" + }, + { + "applicationId": "fd225045-a727-45dc-8caa-77c8eb1b9521", + "roleDefinitionId": "3d2a0b76-5260-4d80-a9d7-624fb8cb7d00" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Help", + "namespace": "Microsoft.Help", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2023-06-01", + "2023-03-23-preview", + "2023-03-03-preview", + "2023-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2023-06-01", + "2023-03-03-preview", + "2023-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2023-08-01-preview", + "2023-06-01", + "2023-01-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "discoverySolutions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2023-06-01", + "2023-01-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "diagnostics", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2023-06-01", + "2023-03-23-preview", + "2023-03-03-preview", + "2023-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2023-03-03-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "solutions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2023-03-23-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "troubleshooters", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "328fd23b-de6e-462c-9433-e207470a5727", + "roleDefinitionId": "79e29e06-4056-41e5-a6b2-959f1f47747e" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.HybridCloud", + "namespace": "Microsoft.HybridCloud", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-01-01-preview", + "locationMappings": null, + "locations": [ + "West Central US", + "West US", + "North Europe", + "West Europe", + "Korea Central", + "East US 2", + "UK South", + "Central India", + "Brazil South", + "Jio India West", + "Qatar Central", + "Australia Central", + "South Africa North", + "Japan East", + "East US", + "West US 2", + "West India", + "UAE North", + "UK West", + "East Asia", + "Southeast Asia", + "Canada East", + "West US 3", + "Central US", + "France Central", + "Switzerland North", + "Australia Southeast", + "Poland Central", + "Korea South", + "Sweden Central", + "Japan West", + "South India", + "Norway East", + "Australia East", + "Germany West Central", + "South Central US", + "Canada Central" + ], + "properties": null, + "resourceType": "cloudConnectors", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-01-01-preview", + "locationMappings": null, + "locations": [ + "West Central US", + "West US", + "North Europe", + "West Europe", + "Korea Central", + "East US 2", + "UK South", + "Central India", + "Brazil South", + "Jio India West", + "Qatar Central", + "Australia Central", + "South Africa North", + "Japan East", + "East US", + "West US 2", + "West India", + "UAE North", + "UK West", + "East Asia", + "Southeast Asia", + "Canada East", + "West US 3", + "Central US", + "France Central", + "Switzerland North", + "Australia Southeast", + "Poland Central", + "Korea South", + "Sweden Central", + "Japan West", + "South India", + "Norway East", + "Australia East", + "Germany West Central", + "South Central US", + "Canada Central" + ], + "properties": null, + "resourceType": "cloudConnections", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "8c420feb-03df-47cc-8a05-55df0cf3064b", + "roleDefinitionId": "83eeb1c6-47f8-4da2-bbc3-42a7ac767360" + }, + { + "applicationId": "d2a590e7-6906-4a45-8f41-cecfdca9bca1", + "roleDefinitionId": "f32ad452-2b05-4296-bee4-fc9056ed85fa" + }, + { + "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", + "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" + }, + { + "applicationId": "d00b5d58-cae5-42ad-ae0a-5a2e6f7ee6c9", + "roleDefinitionId": "4d8fb750-b938-4da8-95ce-557d4d36bd3b" + }, + { + "applicationId": "c8f5141d-83e0-4e9a-84d0-bb6677e26f64", + "roleDefinitionId": "b9872c82-72dd-402b-add5-f99a58f990da" + }, + { + "applicationId": "eec53b1f-b9a4-4479-acf5-6b247c6a49f2" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.HybridCompute", + "namespace": "Microsoft.HybridCompute", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-20-preview", + "2023-04-25-preview", + "2023-03-15-preview", + "2022-12-27-preview", + "2022-12-27", + "2022-11-10", + "2022-08-11-preview", + "2022-05-10-preview", + "2022-03-10", + "2021-12-10-preview", + "2021-06-10-preview", + "2021-05-20", + "2021-05-17-preview", + "2021-04-22-preview", + "2021-03-25-preview", + "2021-01-28-preview", + "2020-08-15-preview", + "2020-08-02", + "2020-07-30-preview", + "2020-03-11-preview", + "2019-12-12", + "2019-08-02-preview", + "2019-03-18-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-03-15-preview", + "locationMappings": null, + "locations": [ + "West Central US", + "West US 2", + "West Europe", + "Southeast Asia", + "East US", + "Australia East", + "South Central US", + "East US 2", + "North Europe", + "France Central", + "Japan East", + "UK South", + "East Asia", + "Canada Central", + "Korea Central", + "North Central US", + "West US", + "West US 3", + "Central US", + "UK West", + "Germany West Central", + "Brazil South", + "Switzerland North", + "UAE North", + "Central India", + "Canada East", + "South Africa North", + "Sweden Central", + "Australia Southeast", + "Norway East" + ], + "properties": null, + "resourceType": "machines", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-20-preview", + "2023-04-25-preview", + "2023-03-15-preview", + "2022-12-27" + ], + "capabilities": "None", + "defaultApiVersion": "2023-03-15-preview", + "locationMappings": null, + "locations": [ + "West Central US", + "West Europe", + "West US 2", + "Southeast Asia", + "East US", + "Australia East", + "South Central US", + "East US 2", + "North Europe", + "France Central", + "Japan East", + "UK South", + "East Asia", + "Canada Central", + "Korea Central", + "North Central US", + "West US", + "West US 3", + "Central US", + "UK West", + "Germany West Central", + "Brazil South", + "Switzerland North", + "UAE North", + "Central India", + "Canada East", + "South Africa North", + "Sweden Central", + "Australia Southeast", + "Norway East" + ], + "properties": null, + "resourceType": "machines/hybridIdentityMetadata", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-20-preview", + "2023-04-25-preview", + "2023-03-15-preview", + "2022-12-27-preview", + "2022-12-27", + "2022-11-10", + "2022-08-11-preview", + "2022-05-10-preview", + "2022-03-10", + "2021-12-10-preview", + "2021-06-10-preview", + "2021-05-20", + "2021-05-17-preview", + "2021-04-22-preview", + "2021-03-25-preview", + "2021-01-28-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "West US 2", + "West Europe", + "Southeast Asia", + "East US", + "Australia East", + "South Central US", + "East US 2", + "North Europe", + "France Central", + "Japan East", + "UK South", + "East Asia", + "Canada Central", + "Korea Central", + "North Central US", + "West US", + "West US 3", + "Central US", + "UK West", + "Germany West Central", + "Brazil South", + "Switzerland North", + "UAE North", + "Central India", + "Canada East", + "South Africa North", + "Sweden Central", + "Australia Southeast", + "Norway East" + ], + "properties": null, + "resourceType": "machines/privateLinkScopes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-20-preview", + "2023-04-25-preview", + "2023-03-15-preview", + "2022-12-27-preview", + "2022-12-27", + "2022-11-10", + "2022-08-11-preview", + "2022-05-10-preview", + "2022-03-10", + "2021-12-10-preview", + "2021-06-10-preview", + "2021-05-20", + "2021-05-17-preview", + "2021-04-22-preview", + "2021-03-25-preview", + "2021-01-28-preview", + "2020-08-15-preview", + "2020-08-02", + "2020-07-30-preview", + "2020-03-11-preview", + "2019-12-12", + "2019-08-02-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-03-15-preview", + "locationMappings": null, + "locations": [ + "West Central US", + "West Europe", + "West US 2", + "Southeast Asia", + "East US", + "Australia East", + "South Central US", + "East US 2", + "North Europe", + "France Central", + "Japan East", + "UK South", + "East Asia", + "Canada Central", + "Korea Central", + "North Central US", + "West US", + "West US 3", + "Central US", + "UK West", + "Germany West Central", + "Brazil South", + "Switzerland North", + "UAE North", + "Central India", + "Canada East", + "South Africa North", + "Sweden Central", + "Australia Southeast", + "Norway East" + ], + "properties": null, + "resourceType": "machines/extensions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-20-preview", + "2023-04-25-preview", + "2023-03-15-preview", + "2022-12-27-preview", + "2022-12-27", + "2022-11-10", + "2022-08-11-preview", + "2022-05-10-preview", + "2022-03-10", + "2021-12-10-preview", + "2021-06-10-preview", + "2021-05-20", + "2021-05-17-preview", + "2021-04-22-preview", + "2021-03-25-preview", + "2021-01-28-preview", + "2020-08-15-preview", + "2020-08-02", + "2020-07-30-preview", + "2020-03-11-preview", + "2019-12-12", + "2019-08-02-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-03-15-preview", + "locationMappings": null, + "locations": [ + "West Europe" + ], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-20-preview", + "2023-04-25-preview", + "2023-03-15-preview", + "2022-12-27-preview", + "2022-12-27", + "2022-11-10", + "2022-08-11-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-03-15-preview", + "locationMappings": null, + "locations": [ + "West Central US", + "West Europe", + "West US 2", + "Southeast Asia", + "East US", + "Australia East", + "South Central US", + "East US 2", + "North Europe", + "France Central", + "Japan East", + "UK South", + "East Asia", + "Canada Central", + "Korea Central", + "North Central US", + "West US", + "West US 3", + "Central US", + "UK West", + "Germany West Central", + "Brazil South", + "Switzerland North", + "UAE North", + "Central India", + "Canada East", + "South Africa North", + "Sweden Central", + "Australia Southeast", + "Norway East" + ], + "properties": null, + "resourceType": "locations/publishers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-20-preview", + "2023-04-25-preview", + "2023-03-15-preview", + "2022-12-27-preview", + "2022-12-27", + "2022-11-10", + "2022-08-11-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-03-15-preview", + "locationMappings": null, + "locations": [ + "West Central US", + "West Europe", + "West US 2", + "Southeast Asia", + "East US", + "Australia East", + "South Central US", + "East US 2", + "North Europe", + "France Central", + "Japan East", + "UK South", + "East Asia", + "Canada Central", + "Korea Central", + "North Central US", + "West US", + "West US 3", + "Central US", + "UK West", + "Germany West Central", + "Brazil South", + "Switzerland North", + "UAE North", + "Central India", + "Canada East", + "South Africa North", + "Sweden Central", + "Australia Southeast", + "Norway East" + ], + "properties": null, + "resourceType": "locations/publishers/extensionTypes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-20-preview", + "2023-04-25-preview", + "2023-03-15-preview", + "2022-12-27-preview", + "2022-12-27", + "2022-11-10", + "2022-08-11-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-03-15-preview", + "locationMappings": null, + "locations": [ + "West Central US", + "West Europe", + "West US 2", + "Southeast Asia", + "East US", + "Australia East", + "South Central US", + "East US 2", + "North Europe", + "France Central", + "Japan East", + "UK South", + "East Asia", + "Canada Central", + "Korea Central", + "North Central US", + "West US", + "West US 3", + "Central US", + "UK West", + "Germany West Central", + "Brazil South", + "Switzerland North", + "UAE North", + "Central India", + "Canada East", + "South Africa North", + "Sweden Central", + "Australia Southeast", + "Norway East" + ], + "properties": null, + "resourceType": "locations/publishers/extensionTypes/versions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-20-preview", + "2023-04-25-preview", + "2023-03-15-preview", + "2022-12-27-preview", + "2022-12-27", + "2022-11-10", + "2022-08-11-preview", + "2022-05-10-preview", + "2022-03-10", + "2021-12-10-preview", + "2021-06-10-preview", + "2021-05-20", + "2021-05-17-preview", + "2021-04-22-preview", + "2021-03-25-preview", + "2021-01-28-preview", + "2020-08-15-preview", + "2020-08-02", + "2020-07-30-preview", + "2020-03-11-preview", + "2019-12-12", + "2019-08-02-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-03-15-preview", + "locationMappings": null, + "locations": [ + "West Central US", + "West Europe", + "West US 2", + "Southeast Asia", + "East US", + "Australia East", + "South Central US", + "East US 2", + "North Europe", + "France Central", + "Japan East", + "UK South", + "East Asia", + "Canada Central", + "Korea Central", + "North Central US", + "West US", + "West US 3", + "Central US", + "UK West", + "Germany West Central", + "Brazil South", + "Switzerland North", + "UAE North", + "Central India", + "Canada East", + "South Africa North", + "Sweden Central", + "Australia Southeast", + "Norway East" + ], + "properties": null, + "resourceType": "locations/operationStatus", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-20-preview", + "2023-04-25-preview", + "2023-03-15-preview", + "2022-12-27-preview", + "2022-12-27", + "2022-11-10", + "2022-08-11-preview", + "2022-05-10-preview", + "2022-03-10", + "2021-12-10-preview", + "2021-06-10-preview", + "2021-05-20", + "2021-05-17-preview", + "2021-04-22-preview", + "2021-03-25-preview", + "2021-01-28-preview", + "2020-08-15-preview", + "2020-08-02", + "2020-07-30-preview", + "2020-03-11-preview", + "2019-12-12", + "2019-08-02-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-03-15-preview", + "locationMappings": null, + "locations": [ + "West Central US", + "West Europe", + "West US 2", + "Southeast Asia", + "East US", + "Australia East", + "South Central US", + "East US 2", + "North Europe", + "France Central", + "Japan East", + "UK South", + "East Asia", + "Canada Central", + "Korea Central", + "North Central US", + "West US", + "West US 3", + "Central US", + "UK West", + "Germany West Central", + "Brazil South", + "Switzerland North", + "UAE North", + "Central India", + "Canada East", + "South Africa North", + "Sweden Central", + "Australia Southeast", + "Norway East" + ], + "properties": null, + "resourceType": "locations/operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-20-preview", + "2023-04-25-preview", + "2023-03-15-preview", + "2022-12-27-preview", + "2022-12-27", + "2022-11-10", + "2022-08-11-preview", + "2022-05-10-preview", + "2022-03-10", + "2021-12-10-preview", + "2021-06-10-preview", + "2021-05-20", + "2021-05-17-preview", + "2021-04-22-preview", + "2021-03-25-preview", + "2021-01-28-preview", + "2020-08-15-preview", + "2020-08-02", + "2020-07-30-preview", + "2020-03-11-preview", + "2019-12-12", + "2019-08-02-preview", + "2019-03-18-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-03-15-preview", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-20-preview", + "2023-04-25-preview", + "2023-03-15-preview", + "2022-12-27-preview", + "2022-12-27", + "2022-11-10", + "2022-08-11-preview", + "2022-05-10-preview", + "2022-03-10", + "2021-12-10-preview", + "2021-06-10-preview", + "2021-05-20", + "2021-05-17-preview", + "2021-04-22-preview", + "2021-03-25-preview", + "2021-01-28-preview", + "2020-08-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "West Europe", + "Southeast Asia", + "East US", + "West Central US", + "South Central US", + "North Europe", + "UK South", + "Australia East", + "East US 2", + "Japan East", + "Canada Central", + "West US", + "North Central US", + "France Central", + "Korea Central", + "UK West", + "West US 3", + "East Asia", + "Brazil South", + "Central US", + "Switzerland North", + "South Africa North", + "Central India", + "Sweden Central", + "Canada East", + "Australia Southeast", + "Norway East" + ], + "properties": null, + "resourceType": "machines/assessPatches", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-20-preview", + "2023-04-25-preview", + "2023-03-15-preview", + "2022-12-27-preview", + "2022-12-27", + "2022-11-10", + "2022-08-11-preview", + "2022-05-10-preview", + "2022-03-10", + "2021-12-10-preview", + "2021-06-10-preview", + "2021-05-20", + "2021-05-17-preview", + "2021-04-22-preview", + "2021-03-25-preview", + "2021-01-28-preview", + "2020-08-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "West Europe", + "Southeast Asia", + "East US", + "West Central US", + "South Central US", + "North Europe", + "UK South", + "Australia East", + "East US 2", + "Japan East", + "Canada Central", + "West US", + "North Central US", + "France Central", + "Korea Central", + "UK West", + "West US 3", + "East Asia", + "Brazil South", + "Central US", + "Switzerland North", + "South Africa North", + "Central India", + "Sweden Central", + "Canada East", + "Australia Southeast", + "Norway East" + ], + "properties": null, + "resourceType": "machines/installPatches", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-20-preview", + "2023-04-25-preview", + "2023-03-15-preview", + "2022-12-27-preview", + "2022-12-27", + "2022-11-10", + "2022-08-11-preview", + "2022-05-10-preview", + "2022-03-10", + "2021-12-10-preview", + "2021-06-10-preview", + "2021-05-20", + "2021-05-17-preview", + "2021-04-22-preview", + "2021-03-25-preview", + "2021-01-28-preview", + "2020-08-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "West Europe", + "Southeast Asia", + "East US", + "West Central US", + "South Central US", + "North Europe", + "UK South", + "Australia East", + "East US 2", + "japan East", + "Canada Central", + "West US", + "North Central US", + "France Central", + "Korea Central", + "UK West", + "West US 3", + "East Asia", + "Brazil South", + "Central US", + "Switzerland North", + "South Africa North", + "Central India", + "Sweden Central", + "Canada East", + "Australia Southeast", + "Norway East" + ], + "properties": null, + "resourceType": "locations/updateCenterOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-20-preview", + "2023-04-25-preview", + "2023-03-15-preview", + "2022-12-27-preview", + "2022-12-27", + "2022-11-10", + "2022-08-11-preview", + "2022-05-10-preview", + "2022-03-10", + "2021-12-10-preview", + "2021-06-10-preview", + "2021-05-20", + "2021-05-17-preview", + "2021-04-22-preview", + "2021-03-25-preview", + "2021-01-28-preview", + "2020-08-15-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "West US 2", + "West Europe", + "Southeast Asia", + "East US", + "Australia East", + "South Central US", + "East US 2", + "North Europe", + "France Central", + "Japan East", + "UK South", + "East Asia", + "Canada Central", + "Korea Central", + "North Central US", + "West US", + "West US 3", + "Central US", + "Germany West Central", + "Brazil South", + "UAE North", + "Switzerland North", + "UK West", + "Central India", + "Canada East", + "South Africa North", + "Sweden Central", + "Australia Southeast", + "Norway East" + ], + "properties": null, + "resourceType": "privateLinkScopes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-20-preview", + "2023-04-25-preview", + "2023-03-15-preview", + "2022-12-27-preview", + "2022-12-27", + "2022-11-10", + "2022-08-11-preview", + "2022-05-10-preview", + "2022-03-10", + "2021-12-10-preview", + "2021-06-10-preview", + "2021-05-20", + "2021-05-17-preview", + "2021-04-22-preview", + "2021-03-25-preview", + "2021-01-28-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "West US 2", + "West Europe", + "Southeast Asia", + "East US", + "Australia East", + "South Central US", + "East US 2", + "North Europe", + "France Central", + "Japan East", + "UK South", + "East Asia", + "Canada Central", + "Korea Central", + "North Central US", + "West US", + "West US 3", + "Central US", + "Germany West Central", + "Brazil South", + "Switzerland North", + "UAE North", + "UK West", + "Central India", + "Canada East", + "South Africa North", + "Sweden Central", + "Australia Southeast", + "Norway East" + ], + "properties": null, + "resourceType": "privateLinkScopes/privateEndpointConnections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-20-preview", + "2023-04-25-preview", + "2023-03-15-preview", + "2022-12-27-preview", + "2022-12-27", + "2022-11-10", + "2022-08-11-preview", + "2022-05-10-preview", + "2022-03-10", + "2021-12-10-preview", + "2021-06-10-preview", + "2021-05-20", + "2021-05-17-preview", + "2021-04-22-preview", + "2021-03-25-preview", + "2021-01-28-preview", + "2020-08-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "West US 2", + "West Europe", + "Southeast Asia", + "East US", + "Australia East", + "South Central US", + "East US 2", + "North Europe", + "France Central", + "Japan East", + "UK South", + "East Asia", + "Canada Central", + "Korea Central", + "North Central US", + "West US", + "West US 3", + "Central US", + "Germany West Central", + "Brazil South", + "Switzerland North", + "UAE North", + "UK West", + "Central India", + "Canada East", + "South Africa North", + "Sweden Central", + "Australia Southeast", + "Norway East" + ], + "properties": null, + "resourceType": "privateLinkScopes/privateEndpointConnectionProxies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-20-preview", + "2023-04-25-preview", + "2023-03-15-preview", + "2022-12-27-preview", + "2022-12-27", + "2022-11-10", + "2022-08-11-preview", + "2022-05-10-preview", + "2022-03-10", + "2021-12-10-preview", + "2021-06-10-preview", + "2021-05-20", + "2021-05-17-preview", + "2021-04-22-preview", + "2021-03-25-preview", + "2021-01-28-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "West US 2", + "West Europe", + "Southeast Asia", + "East US", + "Australia East", + "South Central US", + "East US 2", + "North Europe", + "France Central", + "Japan East", + "UK South", + "East Asia", + "Canada Central", + "Korea Central", + "North Central US", + "West US", + "West US 3", + "Central US", + "Germany West Central", + "Brazil South", + "Switzerland North", + "UAE North", + "UK West", + "Central India", + "Canada East", + "South Africa North", + "Sweden Central", + "Australia Southeast", + "Norway East" + ], + "properties": null, + "resourceType": "locations/privateLinkScopes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-20-preview", + "2023-04-25-preview", + "2023-03-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-03-15-preview", + "locationMappings": null, + "locations": [ + "West Europe" + ], + "properties": null, + "resourceType": "osType", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-20-preview", + "2023-04-25-preview", + "2023-03-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-03-15-preview", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "osType/agentVersions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-20-preview", + "2023-04-25-preview", + "2023-03-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-03-15-preview", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "osType/agentVersions/latest", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-20-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "West US 2", + "West Europe", + "Southeast Asia", + "East US", + "Australia East", + "South Central US", + "East US 2", + "North Europe", + "France Central", + "Japan East", + "UK South", + "East Asia", + "Canada Central", + "Korea Central", + "North Central US", + "West US", + "West US 3", + "Central US", + "UK West", + "Germany West Central", + "Brazil South", + "Switzerland North", + "UAE North", + "Central India", + "Canada East", + "South Africa North", + "Sweden Central", + "Australia Southeast", + "Norway East" + ], + "properties": null, + "resourceType": "machines/licenseProfiles", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-20-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "West US 2", + "West Europe", + "Southeast Asia", + "East US", + "Australia East", + "South Central US", + "East US 2", + "North Europe", + "France Central", + "Japan East", + "UK South", + "East Asia", + "Canada Central", + "Korea Central", + "North Central US", + "West US", + "West US 3", + "Central US", + "UK West", + "Germany West Central", + "Brazil South", + "Switzerland North", + "UAE North", + "Central India", + "Canada East", + "South Africa North", + "Sweden Central", + "Australia Southeast", + "Norway East" + ], + "properties": null, + "resourceType": "licenses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-20-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-06-20-preview", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "validateLicense", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "e18cedde-9458-482f-9dd1-558c597ac42e", + "roleDefinitionId": "a938b4f8-c23c-4de2-99ee-ded7bb06a0b8" + }, + { + "applicationId": "aacceff9-8ec3-413c-83eb-cb131aaf55c6", + "roleDefinitionId": "a938b4f8-c23c-4de2-99ee-ded7bb06a0b8" + }, + { + "applicationId": "9449a792-6831-40e2-9097-29dbc6dd4753", + "roleDefinitionId": "a938b4f8-c23c-4de2-99ee-ded7bb06a0b8" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.HybridConnectivity", + "namespace": "Microsoft.HybridConnectivity", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-15", + "2022-05-01-preview", + "2021-10-06-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US 2", + "Southeast Asia", + "West Europe", + "North Europe", + "West Central US", + "South Central US", + "UK South", + "Australia East", + "France Central", + "West US", + "Central US", + "North Central US", + "Japan East", + "East Asia", + "Korea Central", + "West US 3", + "Sweden Central", + "Canada Central", + "Canada East", + "UK West", + "Brazil South", + "Switzerland North", + "South Africa North", + "Central India", + "UAE North", + "Norway East", + "Australia Southeast" + ], + "properties": null, + "resourceType": "endpoints", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview", + "2023-03-15", + "2022-05-01-preview", + "2021-10-06-preview", + "2021-10-01-privatepreview", + "2021-07-08-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview", + "2023-03-15", + "2022-05-01-preview", + "2021-10-06-preview", + "2021-10-01-privatepreview", + "2021-07-08-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-15", + "2022-05-01-preview", + "2021-10-06-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Sweden Central", + "East US", + "East US 2", + "West US 2", + "Southeast Asia", + "West Europe", + "North Europe", + "West Central US", + "South Central US", + "UK South", + "Australia East", + "France Central", + "West US", + "Central US", + "North Central US", + "Japan East", + "East Asia", + "Korea Central", + "West US 3", + "Canada Central", + "Canada East", + "UK West", + "Brazil South", + "South Africa North", + "Central India", + "Switzerland North", + "UAE North", + "Norway East", + "Australia Southeast" + ], + "properties": null, + "resourceType": "Locations/OperationStatuses", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "319f651f-7ddb-4fc6-9857-7aef9250bd05", + "roleDefinitionId": "272ed523-98e0-4d5b-9341-432df88447f9" + }, + { + "applicationId": "de742ffc-b441-4542-8646-7e805426b824", + "roleDefinitionId": "272ed523-98e0-4d5b-9341-432df88447f9" + }, + { + "applicationId": "e18cedde-9458-482f-9dd1-558c597ac42e", + "roleDefinitionId": "272ed523-98e0-4d5b-9341-432df88447f9" + }, + { + "applicationId": "e65f9af7-1b91-4078-a98f-83eb5fe83e00", + "roleDefinitionId": "ade7e098-35c1-4227-97cb-33078978c2b4" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.HybridContainerService", + "namespace": "Microsoft.HybridContainerService", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-11-15-preview", + "2023-11-01", + "2022-09-01-preview", + "2022-05-01-preview", + "2022-01-01-preview", + "2021-09-01-preview", + "2021-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-11-15-preview", + "2023-11-01", + "2022-09-01-preview", + "2022-05-01-preview", + "2022-01-01-preview", + "2021-09-01-preview", + "2021-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US 2 EUAP", + "East US", + "West Europe", + "West US 3", + "South Central US" + ], + "properties": null, + "resourceType": "Locations/operationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01-preview", + "2022-05-01-preview", + "2022-01-01-preview", + "2021-09-01-preview", + "2021-08-01-preview" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West US 3", + "South Central US", + "West Europe" + ], + "properties": null, + "resourceType": "provisionedClusters", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01-preview", + "2022-05-01-preview", + "2022-01-01-preview", + "2021-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West US 3", + "South Central US" + ], + "properties": null, + "resourceType": "provisionedClusters/hybridIdentityMetadata", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01-preview", + "2022-05-01-preview", + "2022-01-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West US 3", + "South Central US", + "West Europe" + ], + "properties": null, + "resourceType": "provisionedClusters/agentPools", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01-preview", + "2022-05-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West US 3", + "South Central US", + "West Europe" + ], + "properties": null, + "resourceType": "virtualNetworks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-11-15-preview", + "2023-11-01", + "2022-09-01-preview", + "2022-05-01-preview", + "2022-01-01-preview", + "2021-09-01-preview", + "2021-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West US 3", + "South Central US", + "West Europe" + ], + "properties": null, + "resourceType": "provisionedClusters/upgradeProfiles", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "b8ed041c-aa91-418e-8f47-20c70abc2de1", + "roleDefinitionId": "b193432e-9b7e-4885-b2c0-052afdceace3" + }, + { + "applicationId": "319f651f-7ddb-4fc6-9857-7aef9250bd05", + "roleDefinitionId": "2f3359bb-89bc-4a0a-90d0-5b22829162c6" + }, + { + "applicationId": "ffcd9699-8660-437a-99e7-87365fb88c8b", + "roleDefinitionId": "b193432e-9b7e-4885-b2c0-052afdceace3" + }, + { + "applicationId": "f77c2a8f-8a0a-4776-8e0a-bcb2549610ca", + "managedByAuthorization": { + "additionalAuthorizations": [ + { + "applicationId": "b8ed041c-aa91-418e-8f47-20c70abc2de1", + "roleDefinitionId": "1e86f807-6ec0-40b3-8b5f-686b7e43a0a2" + }, + { + "applicationId": "ffcd9699-8660-437a-99e7-87365fb88c8b", + "roleDefinitionId": "1e86f807-6ec0-40b3-8b5f-686b7e43a0a2" + } + ] + }, + "managedByRoleDefinitionId": "1e86f807-6ec0-40b3-8b5f-686b7e43a0a2", + "roleDefinitionId": "8010f77f-bee6-484b-bce2-444be3761632" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.HybridNetwork", + "namespace": "Microsoft.HybridNetwork", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview", + "2023-01-01", + "2022-09-01-preview", + "2022-01-01-preview", + "2021-05-01", + "2020-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-01-01-preview", + "2021-05-01", + "2020-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-05-01", + "2020-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US EUAP", + "East US 2 EUAP", + "West Central US", + "Southeast Asia", + "West Europe", + "East US", + "UK South", + "South Central US", + "West US 3", + "Australia East", + "Canada Central", + "West US", + "North Europe", + "UAE North" + ], + "properties": null, + "resourceType": "Locations/OperationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-01-01-preview", + "2021-05-01", + "2020-01-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Europe", + "Southeast Asia", + "East US" + ], + "properties": null, + "resourceType": "devices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-09-01-preview", + "2022-01-01-preview", + "2021-06-01-privatepreview", + "2021-05-01", + "2020-01-01-preview" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2021-05-01", + "locationMappings": null, + "locations": [ + "West Europe", + "Southeast Asia", + "East US", + "UK South", + "West US 3", + "South Central US", + "Australia East", + "Canada Central", + "West US", + "North Europe", + "UAE North" + ], + "properties": null, + "resourceType": "networkfunctions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-01-01-preview", + "2021-05-01", + "2020-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "networkFunctionVendors", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Southeast Asia", + "West Europe", + "East US", + "UK South", + "West US 3", + "South Central US", + "Australia East", + "Canada Central", + "West US", + "North Europe", + "UAE North" + ], + "properties": null, + "resourceType": "networkFunctions/components", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-01-01", + "locationMappings": null, + "locations": [ + "West Europe", + "Southeast Asia", + "East US", + "UK South", + "West US 3", + "South Central US", + "Australia East", + "Canada Central", + "West US", + "North Europe", + "UAE North" + ], + "properties": null, + "resourceType": "publishers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Europe", + "Southeast Asia", + "East US", + "UK South", + "West US 3", + "South Central US", + "Australia East", + "Canada Central", + "West US", + "North Europe", + "UAE North" + ], + "properties": null, + "resourceType": "publishers/networkFunctionDefinitionGroups", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Europe", + "Southeast Asia", + "East US", + "UK South", + "West US 3", + "South Central US", + "Australia East", + "Canada Central", + "West US", + "North Europe", + "UAE North" + ], + "properties": null, + "resourceType": "publishers/networkFunctionDefinitionGroups/networkFunctionDefinitionVersions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Europe", + "Southeast Asia", + "East US", + "UK South", + "West US 3", + "South Central US", + "Australia East", + "Canada Central", + "West US", + "North Europe", + "UAE North" + ], + "properties": null, + "resourceType": "publishers/artifactStores", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Europe", + "Southeast Asia", + "East US", + "UK South", + "West US 3", + "South Central US", + "Australia East", + "Canada Central", + "West US", + "North Europe", + "UAE North" + ], + "properties": null, + "resourceType": "publishers/artifactStores/artifactManifests", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "cd2ee752-c429-4310-a631-e495f8e7e3dc", + "roleDefinitionId": "10c76f6f-472b-47b0-8aab-2e295e1819db" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Impact", + "namespace": "Microsoft.Impact", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-02-01-preview", + "2022-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "Operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "9edfcdd9-0bc5-4bd4-b287-c3afc716aac7", + "roleDefinitionId": "913c14c1-35ac-45ee-b8f2-05524381b92c" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.IoTCentral", + "namespace": "Microsoft.IoTCentral", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-11-01-preview", + "2021-06-01", + "2018-09-01", + "2017-07-01-privatepreview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2021-06-01", + "locationMappings": null, + "locations": [ + "Australia East", + "Canada Central", + "Central US", + "East US", + "East US 2", + "Japan East", + "North Europe", + "Southeast Asia", + "South Central US", + "UK South", + "West Central US", + "West Europe", + "West US" + ], + "properties": null, + "resourceType": "IoTApps", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-11-01-preview", + "2021-06-01", + "2018-09-01", + "2017-07-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-06-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-11-01-preview", + "2021-06-01", + "2018-09-01" + ], + "capabilities": "None", + "defaultApiVersion": "2021-06-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkSubdomainAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-11-01-preview", + "2021-06-01", + "2018-09-01", + "2017-07-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-06-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-11-01-preview", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-11-01-preview", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations/operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-11-01-preview", + "2021-06-01", + "2018-09-01" + ], + "capabilities": "None", + "defaultApiVersion": "2021-06-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "appTemplates", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "d6d855d0-705d-4f41-8a67-215ffa52110a", + "roleDefinitionId": "d492d3d5-b504-4982-8328-b084f86f6438" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.IoTFirmwareDefense", + "namespace": "Microsoft.IoTFirmwareDefense", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-15-privatepreview", + "2021-11-10-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-08-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe" + ], + "properties": null, + "resourceType": "workspaces", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-08-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe" + ], + "properties": null, + "resourceType": "workspaces/firmwares", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "cfbd4387-1a16-4945-83c0-ec10e46cd4da", + "roleDefinitionId": "d5d6ff70-e29a-4cec-b30b-4bd7ebcdcbaa" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.IoTSecurity", + "namespace": "Microsoft.IoTSecurity", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2021-11-01-preview", + "2021-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "defenderSettings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2021-09-01-preview", + "2021-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2021-11-01-preview", + "2021-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe" + ], + "properties": null, + "resourceType": "locations/deviceGroups", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-11-01-preview", + "2021-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe" + ], + "properties": null, + "resourceType": "locations/deviceGroups/devices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe" + ], + "properties": null, + "resourceType": "locations/endpoints", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe" + ], + "properties": null, + "resourceType": "locations/deviceGroups/vulnerabilities", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2021-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe" + ], + "properties": null, + "resourceType": "locations/deviceGroups/alerts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe" + ], + "properties": null, + "resourceType": "locations/deviceGroups/alerts/pcaps", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe" + ], + "properties": null, + "resourceType": "locations/deviceGroups/recommendations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe" + ], + "properties": null, + "resourceType": "locations/sites", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe" + ], + "properties": null, + "resourceType": "locations/sites/sensors", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2021-09-01-preview", + "2021-02-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East Asia", + "Southeast Asia", + "Central US", + "East US", + "East US 2", + "West US", + "North Central US", + "South Central US", + "Japan West", + "Japan East", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "Korea Central", + "Korea South", + "Australia Central", + "Australia Central 2", + "UAE Central", + "UAE North", + "South Africa North", + "South Africa West", + "North Europe", + "West Europe", + "UK South", + "UK West", + "France Central", + "France South" + ], + "properties": null, + "resourceType": "sites", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-09-01-preview", + "2021-02-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East Asia", + "Southeast Asia", + "Central US", + "East US", + "East US 2", + "West US", + "North Central US", + "South Central US", + "Japan West", + "Japan East", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "Korea Central", + "Korea South", + "Australia Central", + "Australia Central 2", + "UAE Central", + "UAE North", + "South Africa North", + "South Africa West", + "North Europe", + "West Europe", + "UK South", + "UK West", + "France Central", + "France South" + ], + "properties": null, + "resourceType": "sensors", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-11-01-preview", + "2021-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "onPremiseSensors", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "alertTypes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "recommendationTypes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "licenseSkus", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "cfa8b339-82a2-471a-a3c9-0fc0be7a4093", + "roleDefinitionId": "1cf9858a-28a2-4228-abba-94e606305b95" + }, + { + "applicationId": "589d5083-6f11-4d30-a62a-a4b316a14abf", + "roleDefinitionId": "1f7e9952-ea79-42b8-a90e-b2dabbe1c1f2" + }, + { + "applicationId": "a1b76039-a76c-499f-a2dd-846b4cc32627" + }, + { + "applicationId": "1341df96-0b28-43da-ba24-7a6ce39be816" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.KeyVault", + "namespace": "Microsoft.KeyVault", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-10-01", + "profileVersion": "2019-03-01-hybrid" + }, + { + "apiVersion": "2016-10-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2016-10-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-08-01-PREVIEW", + "2023-02-01", + "2022-11-01", + "2022-07-01", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-10-01", + "2021-06-01-preview", + "2021-04-01-preview", + "2020-04-01-preview", + "2019-09-01", + "2018-02-14-preview", + "2018-02-14", + "2016-10-01", + "2015-06-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2019-09-01", + "locationMappings": null, + "locations": [ + "North Central US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "East US 2", + "Central US", + "South Central US", + "West US", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Brazil South", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "West Central US", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "UAE North", + "South Africa North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "vaults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-10-01", + "profileVersion": "2019-03-01-hybrid" + }, + { + "apiVersion": "2016-10-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2016-10-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-08-01-PREVIEW", + "2023-02-01", + "2022-11-01", + "2022-07-01", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-10-01", + "2021-06-01-preview", + "2021-04-01-preview", + "2020-04-01-preview", + "2019-09-01", + "2018-02-14-preview", + "2018-02-14", + "2016-10-01", + "2015-06-01" + ], + "capabilities": "None", + "defaultApiVersion": "2019-09-01", + "locationMappings": null, + "locations": [ + "North Central US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "East US 2", + "Central US", + "South Central US", + "West US", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Brazil South", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "West Central US", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "UAE North", + "South Africa North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "vaults/secrets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-10-01", + "profileVersion": "2019-03-01-hybrid" + }, + { + "apiVersion": "2016-10-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2016-10-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-08-01-PREVIEW", + "2023-02-01", + "2022-11-01", + "2022-07-01", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-10-01", + "2021-06-01-preview", + "2021-04-01-preview", + "2020-04-01-preview", + "2019-09-01", + "2018-02-14-preview", + "2018-02-14", + "2016-10-01", + "2015-06-01" + ], + "capabilities": "None", + "defaultApiVersion": "2019-09-01", + "locationMappings": null, + "locations": [ + "North Central US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "East US 2", + "Central US", + "South Central US", + "West US", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Brazil South", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "West Central US", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "UAE North", + "South Africa North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "vaults/accessPolicies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-10-01", + "profileVersion": "2019-03-01-hybrid" + }, + { + "apiVersion": "2016-10-01", + "profileVersion": "2018-03-01-hybrid" + }, + { + "apiVersion": "2016-10-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-08-01-PREVIEW", + "2023-02-01", + "2022-11-01", + "2022-07-01", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-10-01", + "2021-06-01-preview", + "2021-04-01-preview", + "2020-04-01-preview", + "2019-09-01", + "2018-02-14-preview", + "2018-02-14", + "2016-10-01", + "2015-06-01", + "2014-12-19-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2019-09-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-10-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-08-01-PREVIEW", + "2023-02-01", + "2022-11-01", + "2022-07-01", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-10-01", + "2021-06-01-preview", + "2021-04-01-preview", + "2020-04-01-preview", + "2019-09-01", + "2018-02-14-preview", + "2018-02-14", + "2016-10-01", + "2015-06-01" + ], + "capabilities": "None", + "defaultApiVersion": "2019-09-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-10-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-08-01-PREVIEW", + "2023-02-01", + "2022-11-01", + "2022-07-01", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-10-01", + "2021-06-01-preview", + "2021-04-01-preview", + "2020-04-01-preview", + "2019-09-01", + "2018-02-14-preview", + "2018-02-14", + "2016-10-01" + ], + "capabilities": "None", + "defaultApiVersion": "2019-09-01", + "locationMappings": null, + "locations": [ + "North Central US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "East US 2", + "Central US", + "South Central US", + "West US", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Brazil South", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "West Central US", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "UAE North", + "South Africa North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "deletedVaults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-10-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-08-01-PREVIEW", + "2023-02-01", + "2022-11-01", + "2022-07-01", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-10-01", + "2021-06-01-preview", + "2021-04-01-preview", + "2020-04-01-preview", + "2019-09-01", + "2018-02-14-preview", + "2018-02-14", + "2016-10-01" + ], + "capabilities": "None", + "defaultApiVersion": "2019-09-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2022-02-01-preview", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-08-01-PREVIEW", + "2023-02-01", + "2022-11-01", + "2022-07-01", + "2022-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2022-02-01-preview", + "locationMappings": null, + "locations": [ + "North Central US", + "South Central US", + "Central US EUAP", + "East US 2 EUAP", + "West Central US", + "UK South", + "West Europe", + "Australia Central", + "Canada Central", + "Germany West Central", + "East Asia", + "Australia East", + "Japan East", + "East US 2", + "East US", + "France South", + "Jio India Central", + "Korea Central", + "Norway West", + "South Africa West", + "Brazil South", + "South India", + "Sweden Central", + "Switzerland West", + "UAE Central", + "Australia Central 2", + "Central India", + "Central US", + "Germany North", + "Canada East", + "France Central", + "Jio India West", + "Korea South", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "Australia Southeast", + "Southeast Asia", + "Brazil Southeast", + "Switzerland North", + "UAE North", + "UK West", + "West India", + "Japan West", + "West US 2", + "West US 3", + "West US" + ], + "properties": null, + "resourceType": "locations/notifyNetworkSecurityPerimeterUpdatesAvailable", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-10-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-08-01-PREVIEW", + "2023-02-01", + "2022-11-01", + "2022-07-01", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-10-01", + "2021-06-01-preview", + "2021-04-01-preview", + "2020-04-01-preview", + "2019-09-01", + "2018-02-14-preview", + "2018-02-14", + "2016-10-01" + ], + "capabilities": "None", + "defaultApiVersion": "2019-09-01", + "locationMappings": null, + "locations": [ + "North Central US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "East US 2", + "Central US", + "South Central US", + "West US", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Brazil South", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "West Central US", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "UAE North", + "South Africa North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "locations/deletedVaults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-PREVIEW", + "2023-02-01", + "2022-11-01", + "2022-07-01", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-10-01", + "2021-06-01-preview", + "2021-04-01-preview", + "2020-04-01-preview", + "2019-09-01", + "2018-02-14-preview", + "2018-02-14", + "2016-10-01" + ], + "capabilities": "None", + "defaultApiVersion": "2019-09-01", + "locationMappings": null, + "locations": [ + "East US", + "North Central US", + "West Europe", + "North Europe", + "East Asia", + "Southeast Asia", + "East US 2", + "Central US", + "South Central US", + "West Central US", + "West US 2", + "West US", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "UAE North", + "South Africa North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "locations/deleteVirtualNetworkOrSubnets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-10-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-08-01-PREVIEW", + "2023-02-01", + "2022-11-01", + "2022-07-01", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-10-01", + "2021-06-01-preview", + "2021-04-01-preview", + "2020-04-01-preview", + "2019-09-01", + "2018-02-14-preview", + "2018-02-14", + "2016-10-01" + ], + "capabilities": "None", + "defaultApiVersion": "2019-09-01", + "locationMappings": null, + "locations": [ + "North Central US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "East US 2", + "Central US", + "South Central US", + "West US", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Brazil South", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "West Central US", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "UAE North", + "South Africa North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "locations/operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-PREVIEW", + "2023-02-01", + "2022-11-01", + "2022-07-01", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-10-01", + "2021-06-01-preview", + "2021-04-01-preview", + "2020-04-01-preview", + "2019-09-01", + "2018-02-14-preview", + "2018-02-14" + ], + "capabilities": "None", + "defaultApiVersion": "2019-09-01", + "locationMappings": null, + "locations": [ + "North Central US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "East US 2", + "Central US", + "South Central US", + "West US", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Brazil South", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "West Central US", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "UAE North", + "South Africa North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "vaults/eventGridFilters", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-PREVIEW", + "2023-02-01", + "2022-11-01", + "2022-07-01", + "2022-02-01-preview", + "2021-12-01-preview", + "2021-11-01-preview", + "2021-10-01", + "2021-06-01-preview", + "2021-04-01-preview", + "2020-04-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2021-04-01-preview", + "locationMappings": null, + "locations": [ + "East US 2", + "South Central US", + "North Europe", + "West Europe", + "Canada Central", + "Central US", + "Switzerland North", + "South Africa North", + "UK South", + "SouthEast Asia", + "East Asia", + "Korea Central", + "Australia Central", + "West US", + "East US", + "North Central US", + "West Central US", + "West US 2", + "West US 3", + "Canada East", + "Japan East", + "UAE North", + "Australia East", + "France Central", + "Switzerland West", + "Central India", + "Brazil South", + "Sweden Central", + "Qatar Central", + "South India", + "Poland Central", + "Japan West", + "Norway East", + "Norway West", + "Germany West Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "managedHSMs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-PREVIEW", + "2023-02-01", + "2022-11-01", + "2022-07-01", + "2022-02-01-preview", + "2021-12-01-preview", + "2021-11-01-preview", + "2021-10-01", + "2021-06-01-preview", + "2021-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-04-01-preview", + "locationMappings": null, + "locations": [ + "East US 2", + "South Central US", + "North Europe", + "West Europe", + "Canada Central", + "Central US", + "Switzerland North", + "South Africa North", + "UK South", + "SouthEast Asia", + "East Asia", + "Korea Central", + "Australia Central", + "West US", + "East US", + "North Central US", + "West Central US", + "West US 2", + "West US 3", + "Canada East", + "Japan East", + "UAE North", + "Australia East", + "France Central", + "Switzerland West", + "Central India", + "Brazil South", + "Sweden Central", + "Qatar Central", + "South India", + "Poland Central", + "Japan West", + "Norway East", + "Norway West", + "Germany West Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "deletedManagedHSMs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-PREVIEW", + "2023-02-01", + "2022-11-01", + "2022-07-01", + "2022-02-01-preview", + "2021-12-01-preview", + "2021-11-01-preview", + "2021-10-01", + "2021-06-01-preview", + "2021-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US 2", + "South Central US", + "North Europe", + "West Europe", + "Canada Central", + "Central US", + "Switzerland North", + "South Africa North", + "UK South", + "SouthEast Asia", + "East Asia", + "Korea Central", + "Australia Central", + "West US", + "East US", + "North Central US", + "West Central US", + "West US 2", + "West US 3", + "Canada East", + "Japan East", + "UAE North", + "Australia East", + "France Central", + "Switzerland West", + "Central India", + "Brazil South", + "Sweden Central", + "Qatar Central", + "South India", + "Poland Central", + "Japan West", + "Norway East", + "Norway West", + "Germany West Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "locations/deletedManagedHSMs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-PREVIEW", + "2023-02-01", + "2022-11-01", + "2022-07-01", + "2022-02-01-preview", + "2021-12-01-preview", + "2021-11-01-preview", + "2021-10-01", + "2021-06-01-preview", + "2021-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US 2", + "South Central US", + "North Europe", + "West Europe", + "Canada Central", + "Central US", + "Switzerland North", + "South Africa North", + "UK South", + "SouthEast Asia", + "East Asia", + "Korea Central", + "Australia Central", + "West US", + "East US", + "North Central US", + "West Central US", + "West US 2", + "West US 3", + "Canada East", + "Japan East", + "UAE North", + "Australia East", + "France Central", + "Switzerland West", + "Central India", + "Brazil South", + "Sweden Central", + "Qatar Central", + "South India", + "Poland Central", + "Japan West", + "Norway East", + "Norway West", + "Germany West Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "locations/managedHsmOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-PREVIEW", + "2023-02-01", + "2022-11-01" + ], + "capabilities": "None", + "defaultApiVersion": "2022-11-01", + "locationMappings": null, + "locations": [ + "East US 2", + "South Central US", + "North Europe", + "West Europe", + "Canada Central", + "Central US", + "Switzerland North", + "South Africa North", + "UK South", + "SouthEast Asia", + "East Asia", + "Korea Central", + "Australia Central", + "West US", + "East US", + "North Central US", + "West Central US", + "West US 2", + "West US 3", + "Canada East", + "Japan East", + "UAE North", + "Australia East", + "France Central", + "Switzerland West", + "Central India", + "Brazil South", + "Sweden Central", + "Qatar Central", + "Poland Central", + "South India", + "Japan West", + "Norway East", + "Norway West", + "Germany West Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "managedHSMs/keys", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-PREVIEW", + "2023-02-01", + "2022-11-01" + ], + "capabilities": "None", + "defaultApiVersion": "2022-11-01", + "locationMappings": null, + "locations": [ + "East US 2", + "South Central US", + "North Europe", + "West Europe", + "Canada Central", + "Central US", + "Switzerland North", + "South Africa North", + "UK South", + "SouthEast Asia", + "East Asia", + "Korea Central", + "Australia Central", + "West US", + "East US", + "North Central US", + "West Central US", + "West US 2", + "West US 3", + "Canada East", + "Japan East", + "UAE North", + "Australia East", + "France Central", + "Switzerland West", + "Central India", + "Brazil South", + "Sweden Central", + "Qatar Central", + "Poland Central", + "South India", + "Japan West", + "Norway East", + "Norway West", + "Germany West Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "managedHSMs/keys/versions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-PREVIEW", + "2023-02-01", + "2022-11-01", + "2022-07-01" + ], + "capabilities": "None", + "defaultApiVersion": "2022-11-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkMhsmNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-PREVIEW", + "2023-02-01", + "2022-11-01", + "2022-07-01", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-10-01", + "2021-06-01-preview", + "2021-04-01-preview", + "2020-04-01-preview", + "2019-09-01" + ], + "capabilities": "None", + "defaultApiVersion": "2019-09-01", + "locationMappings": null, + "locations": [ + "North Central US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "East US 2", + "Central US", + "South Central US", + "West US", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Brazil South", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "West Central US", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "UAE North", + "South Africa North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "vaults/keys", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-PREVIEW", + "2023-02-01", + "2022-11-01", + "2022-07-01", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-10-01", + "2021-06-01-preview", + "2021-04-01-preview", + "2020-04-01-preview", + "2019-09-01" + ], + "capabilities": "None", + "defaultApiVersion": "2019-09-01", + "locationMappings": null, + "locations": [ + "North Central US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "East US 2", + "Central US", + "South Central US", + "West US", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Brazil South", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "West Central US", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "UAE North", + "South Africa North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North", + "Israel Central" + ], + "properties": null, + "resourceType": "vaults/keys/versions", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "64b12d6e-6549-484c-8cc6-6281839ba394", + "roleDefinitionId": "1d1d44cf-68a1-4def-a2b6-cd7efc3515af" + }, + { + "applicationId": "359431ad-ece5-496b-8768-be4bbfd82f36", + "roleDefinitionId": "1b5c71b7-9814-4b40-b62a-23018af874d8" + }, + { + "applicationId": "0000dab9-8b21-4ba2-807f-1743968cef00", + "roleDefinitionId": "1b5c71b7-9814-4b40-b62a-23018af874d8" + }, + { + "applicationId": "8edd93e1-2103-40b4-bd70-6e34e586362d", + "roleDefinitionId": "eb67887a-31e8-4e4e-bf5b-14ff79351a6f" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Kubernetes", + "namespace": "Microsoft.Kubernetes", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-preview", + "2022-05-01-preview", + "2021-10-01", + "2021-04-01-preview", + "2021-03-01", + "2020-01-01-preview" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Europe", + "East US", + "West Central US", + "South Central US", + "Southeast Asia", + "UK South", + "East US 2", + "West US 2", + "Australia East", + "North Europe", + "France Central", + "Central US", + "West US", + "North Central US", + "Korea Central", + "Japan East", + "East Asia", + "West US 3", + "Canada East", + "Canada Central", + "Switzerland North", + "South Africa North", + "Brazil South", + "UAE North", + "Central India", + "Sweden Central" + ], + "properties": null, + "resourceType": "connectedClusters", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-preview", + "2022-05-01-preview", + "2021-10-01", + "2021-04-01-preview", + "2021-03-01", + "2020-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-preview", + "2022-05-01-preview", + "2021-10-01", + "2021-04-01-preview", + "2021-03-01", + "2020-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US 2 EUAP", + "West Europe", + "East US", + "West Central US", + "South Central US", + "Southeast Asia", + "UK South", + "East US 2", + "West US 2", + "Australia East", + "North Europe", + "France Central", + "Central US", + "West US", + "North Central US", + "Korea Central", + "Japan East", + "East Asia", + "West US 3", + "Canada East", + "Canada Central", + "Switzerland North", + "South Africa North", + "Brazil South", + "UAE North", + "Central India", + "Sweden Central", + "Norway East", + "UK West" + ], + "properties": null, + "resourceType": "locations/operationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-preview", + "2022-05-01-preview", + "2021-10-01", + "2021-04-01-preview", + "2021-03-01", + "2020-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "registeredSubscriptions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-preview", + "2022-05-01-preview", + "2021-10-01", + "2021-04-01-preview", + "2021-03-01", + "2020-01-01-preview", + "2019-11-01-preview", + "2019-09-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "c699bf69-fb1d-4eaf-999b-99e6b2ae4d85", + "roleDefinitionId": "90155430-a360-410f-af5d-89dc284d85c6" + }, + { + "applicationId": "03db181c-e9d3-4868-9097-f0b728327182", + "roleDefinitionId": "DE2ADB97-42D8-49C8-8FCF-DBB53EF936AC" + }, + { + "applicationId": "a0f92522-89de-4c5e-9a75-0044ccf66efd", + "roleDefinitionId": "b3429810-7d5c-420e-8605-cf280f3099f2" + }, + { + "applicationId": "bd9b7cd5-dac1-495f-b013-ac871e98fa5f", + "roleDefinitionId": "0d44c8f0-08b9-44d4-9f59-e51c83f95200" + }, + { + "applicationId": "585fc3c3-9a59-4720-8319-53cce041a605", + "roleDefinitionId": "4a9ce2ee-6de2-43ba-a7bd-8f316de763a7" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.KubernetesConfiguration", + "namespace": "Microsoft.KubernetesConfiguration", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2022-11-01", + "2022-07-01", + "2022-03-01", + "2021-03-01", + "2020-10-01-preview", + "2020-07-01-preview", + "2019-11-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": "2022-03-01", + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West Central US", + "West US 2", + "West US 3", + "South Central US", + "East US 2", + "North Europe", + "UK South", + "Southeast Asia", + "Australia East", + "France Central", + "Central US", + "North Central US", + "West US", + "Korea Central", + "East Asia", + "Japan East", + "Canada East", + "Canada Central", + "Norway East", + "Germany West Central", + "Sweden Central", + "Switzerland North", + "Australia Southeast", + "Central India", + "South India", + "Japan West", + "Uk West", + "France South", + "Korea South", + "South Africa North", + "Brazil South", + "Uae North", + "Norway West", + "Germany North", + "Jio India West" + ], + "properties": null, + "resourceType": "sourceControlConfigurations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2022-11-01", + "2022-07-01", + "2022-03-01", + "2020-07-01-preview" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsExtension", + "defaultApiVersion": "2022-07-01", + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West Central US", + "West US 2", + "West US 3", + "South Central US", + "East US 2", + "North Europe", + "UK South", + "Southeast Asia", + "Australia East", + "France Central", + "Central US", + "North Central US", + "West US", + "Korea Central", + "East Asia", + "Japan East", + "Canada East", + "Canada Central", + "Norway East", + "Germany West Central", + "Sweden Central", + "Switzerland North", + "Australia Southeast", + "Central India", + "South India", + "Japan West", + "Uk West", + "France South", + "Korea South", + "South Africa North", + "Brazil South", + "Uae North", + "Norway West", + "Germany North", + "Jio India West" + ], + "properties": null, + "resourceType": "extensions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2022-11-01", + "2022-07-01", + "2022-03-01", + "2022-01-01-preview", + "2021-11-01-preview", + "2021-06-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": "2022-07-01", + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West Central US", + "West US 2", + "West US 3", + "South Central US", + "East US 2", + "North Europe", + "UK South", + "Southeast Asia", + "Australia East", + "France Central", + "Central US", + "North Central US", + "West US", + "Korea Central", + "East Asia", + "Japan East", + "Canada East", + "Canada Central", + "Norway East", + "Germany West Central", + "Sweden Central", + "Switzerland North", + "Australia Southeast", + "Central India", + "South India", + "Japan West", + "Uk West", + "Korea South", + "France South", + "South Africa North", + "Brazil South", + "Uae North", + "Norway West", + "Germany North", + "Jio India West" + ], + "properties": null, + "resourceType": "fluxConfigurations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2023-05-01", + "2022-11-01", + "2022-03-01", + "2022-01-01-preview", + "2021-12-01-preview", + "2021-11-01-preview", + "2021-09-01", + "2021-06-01-preview", + "2021-05-01-preview", + "2021-03-01", + "2020-10-01-preview", + "2020-07-01-preview", + "2019-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2022-01-15-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "East US", + "West Europe", + "West Central US", + "West US 3", + "South Central US", + "East US 2", + "North Europe", + "UK South", + "Southeast Asia", + "Australia East", + "France Central", + "Central US", + "North Central US", + "West US", + "Korea Central", + "East Asia", + "Japan East", + "Canada Central", + "Canada East", + "Norway East", + "Central India", + "South India", + "Australia Southeast", + "Germany West Central", + "Switzerland North", + "Sweden Central", + "Japan West", + "Uk West", + "Korea South", + "France South", + "South Africa North", + "Brazil South", + "Uae North", + "Norway West", + "Germany North", + "Jio India West" + ], + "properties": null, + "resourceType": "extensionTypes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2022-01-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "East US", + "West Europe", + "West Central US", + "West US 3", + "South Central US", + "East US 2", + "North Europe", + "UK South", + "Southeast Asia", + "Australia East", + "France Central", + "Central US", + "North Central US", + "West US", + "Korea Central", + "East Asia", + "Japan East", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Norway East", + "Australia Southeast", + "Germany West Central", + "Switzerland North", + "Sweden Central", + "Japan West", + "Uk West", + "Korea South", + "France South", + "South Africa North", + "Brazil South", + "Uae North", + "Norway West", + "Germany North", + "Jio India West" + ], + "properties": null, + "resourceType": "locations/extensionTypes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2022-01-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "East US", + "West Europe", + "West Central US", + "West US 3", + "South Central US", + "East US 2", + "North Europe", + "UK South", + "Southeast Asia", + "Australia East", + "France Central", + "Central US", + "North Central US", + "West US", + "Korea Central", + "East Asia", + "Japan East", + "Canada Central", + "Canada East", + "Central India", + "Norway East", + "Australia Southeast", + "Germany West Central", + "Switzerland North", + "Sweden Central", + "Japan West", + "Uk West", + "Korea South", + "France South", + "South Africa North", + "South India", + "Brazil South", + "Uae North", + "Norway West", + "Germany North", + "Jio India West" + ], + "properties": null, + "resourceType": "locations/extensionTypes/versions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-04-02-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West Central US", + "West US 2", + "West US 3", + "South Central US", + "East US 2", + "North Europe", + "UK South", + "Southeast Asia", + "Australia East", + "France Central", + "Central US", + "North Central US", + "West US", + "Korea Central", + "East Asia", + "Japan East", + "Canada East", + "Canada Central", + "Norway East", + "Germany West Central", + "Sweden Central", + "Switzerland North", + "Australia Southeast", + "Central India", + "South India", + "Japan West", + "Uk West", + "Korea South", + "France South", + "South Africa North", + "Brazil South", + "Uae North", + "Norway West", + "Germany North", + "Jio India West" + ], + "properties": null, + "resourceType": "privateLinkScopes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-04-02-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West Central US", + "West US 2", + "West US 3", + "South Central US", + "East US 2", + "North Europe", + "UK South", + "Southeast Asia", + "Australia East", + "France Central", + "Central US", + "North Central US", + "West US", + "Korea Central", + "East Asia", + "Japan East", + "Canada East", + "Canada Central", + "Norway East", + "Germany West Central", + "Sweden Central", + "Switzerland North", + "Australia Southeast", + "Central India", + "South India", + "Japan West", + "Uk West", + "France South", + "Korea South", + "South Africa North", + "Brazil South", + "Uae North", + "Norway West", + "Germany North", + "Jio India West" + ], + "properties": null, + "resourceType": "privateLinkScopes/privateEndpointConnections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-04-02-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West Central US", + "West US 2", + "West US 3", + "South Central US", + "East US 2", + "North Europe", + "UK South", + "Southeast Asia", + "Australia East", + "France Central", + "Central US", + "North Central US", + "West US", + "Korea Central", + "East Asia", + "Japan East", + "Canada East", + "Canada Central", + "Norway East", + "Germany West Central", + "Sweden Central", + "Switzerland North", + "Australia Southeast", + "Central India", + "South India", + "Japan West", + "Uk West", + "South Africa North", + "Korea South", + "France South", + "Brazil South", + "Uae North", + "Norway West", + "Germany North", + "Jio India West" + ], + "properties": null, + "resourceType": "privateLinkScopes/privateEndpointConnectionProxies", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "2746ea77-4702-4b45-80ca-3c97e680e8b7", + "roleDefinitionId": "dd9d4347-f397-45f2-b538-85f21c90037c" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Kusto", + "namespace": "Microsoft.Kusto", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-15", + "2023-05-02", + "2022-12-29", + "2022-11-11", + "2022-07-07", + "2022-02-01", + "2021-08-27", + "2021-01-01", + "2020-09-18", + "2020-06-14", + "2020-02-15", + "2019-11-09", + "2019-09-07", + "2019-05-15", + "2019-01-21", + "2018-09-07-preview", + "2017-09-07-privatepreview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2021-08-27", + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "clusters", + "zoneMappings": [ + { + "location": "Australia East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Central India", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East Asia", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Korea Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Norway East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Poland Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Qatar Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "South Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Sweden Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Switzerland North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "UAE North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 3", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Israel Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Italy North", + "zones": [ + "1", + "2", + "3" + ] + } + ] + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-15", + "2023-05-02", + "2022-12-29", + "2022-11-11", + "2022-07-07", + "2022-02-01", + "2021-08-27", + "2021-01-01", + "2020-09-18", + "2020-06-14", + "2020-02-15", + "2019-11-09", + "2019-09-07", + "2019-05-15", + "2019-01-21", + "2018-09-07-preview", + "2017-09-07-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-08-27", + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "clusters/databases", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-15", + "2023-05-02", + "2022-12-29", + "2022-11-11", + "2022-07-07", + "2022-02-01", + "2021-08-27", + "2021-01-01", + "2020-09-18", + "2020-06-14", + "2020-02-15", + "2019-11-09", + "2019-09-07" + ], + "capabilities": "None", + "defaultApiVersion": "2021-08-27", + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "clusters/attacheddatabaseconfigurations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-15", + "2023-05-02", + "2022-12-29", + "2022-11-11", + "2022-07-07", + "2022-02-01", + "2021-08-27", + "2021-01-01", + "2020-09-18", + "2020-06-14", + "2020-02-15", + "2019-11-09" + ], + "capabilities": "None", + "defaultApiVersion": "2021-08-27", + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "clusters/principalassignments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-01-01", + "2020-09-18", + "2020-06-14", + "2020-02-15", + "2019-11-09", + "2019-09-07", + "2019-05-15", + "2019-01-21", + "2018-09-07-preview", + "2017-09-07-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": "2020-09-18", + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "clusters/databases/eventhubconnections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-15", + "2023-05-02", + "2022-12-29", + "2022-11-11", + "2022-07-07", + "2022-02-01", + "2021-08-27", + "2021-01-01", + "2020-09-18", + "2020-06-14", + "2020-02-15", + "2019-11-09", + "2019-09-07", + "2019-05-15", + "2019-01-21", + "2018-09-07-preview", + "2017-09-07-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-08-27", + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "clusters/databases/dataconnections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-15", + "2023-05-02", + "2022-12-29", + "2022-11-11", + "2022-07-07", + "2022-02-01", + "2021-08-27", + "2021-01-01", + "2020-09-18", + "2020-06-14", + "2020-02-15", + "2019-11-09" + ], + "capabilities": "None", + "defaultApiVersion": "2021-08-27", + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "clusters/databases/principalassignments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-15", + "2023-05-02", + "2022-12-29", + "2022-11-11", + "2022-07-07", + "2022-02-01", + "2021-08-27", + "2021-01-01", + "2020-09-18", + "2020-06-14", + "2020-02-15", + "2019-11-09", + "2019-09-07", + "2019-05-15", + "2019-01-21", + "2018-09-07-preview", + "2017-09-07-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-08-27", + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-15", + "2023-05-02", + "2022-12-29", + "2022-11-11", + "2022-07-07", + "2022-02-01", + "2021-08-27", + "2021-01-01", + "2020-09-18", + "2020-06-14", + "2020-02-15", + "2019-11-09", + "2019-09-07", + "2019-05-15", + "2019-01-21", + "2018-09-07-preview", + "2017-09-07-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-08-27", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-15", + "2023-05-02", + "2022-12-29", + "2022-11-11", + "2022-07-07", + "2022-02-01", + "2021-08-27", + "2021-01-01", + "2020-09-18", + "2020-06-14", + "2020-02-15", + "2019-11-09", + "2019-09-07", + "2019-05-15", + "2019-01-21", + "2018-09-07-preview", + "2017-09-07-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-08-27", + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-15", + "2023-05-02", + "2022-12-29", + "2022-11-11" + ], + "capabilities": "None", + "defaultApiVersion": "2023-08-15", + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/skus", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-15", + "2023-05-02", + "2022-12-29", + "2022-11-11", + "2022-07-07", + "2022-02-01", + "2021-08-27", + "2021-01-01", + "2020-09-18", + "2020-06-14", + "2020-02-15", + "2019-11-09", + "2019-09-07", + "2019-05-15", + "2019-01-21", + "2018-09-07-preview", + "2017-09-07-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-08-27", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-15", + "2023-05-02", + "2022-12-29", + "2022-11-11", + "2022-07-07", + "2022-02-01", + "2021-08-27", + "2021-01-01" + ], + "capabilities": "None", + "defaultApiVersion": "2021-08-27", + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "clusters/databases/scripts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-15", + "2023-05-02", + "2022-12-29", + "2022-11-11", + "2022-07-07", + "2022-02-01", + "2021-08-27" + ], + "capabilities": "None", + "defaultApiVersion": "2021-08-27", + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "clusters/managedPrivateEndpoints", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-15" + ], + "capabilities": "None", + "defaultApiVersion": "2023-08-15", + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "clusters/sandboxCustomImages", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "1a14be2a-e903-4cec-99cf-b2e209259a0f", + "managedByRoleDefinitionId": "8f2de81a-b9aa-49d8-b24c-11814d3ab525", + "roleDefinitionId": "8f2de81a-b9aa-49d8-b24c-11814d3ab525" + }, + { + "applicationId": "c7bb12bf-0b39-4f7f-9171-f418ff39b76a", + "managedByRoleDefinitionId": "4796d754-aa9c-4af1-be54-f17836325288", + "roleDefinitionId": "4796d754-aa9c-4af1-be54-f17836325288" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.LabServices", + "namespace": "Microsoft.LabServices", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-07", + "2022-08-01", + "2021-11-15-preview", + "2021-10-01-preview", + "2020-05-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Korea Central", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West US" + ], + "properties": null, + "resourceType": "labplans", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-07", + "2022-08-01", + "2021-11-15-preview", + "2021-10-01-preview", + "2020-05-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Korea Central", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West US" + ], + "properties": null, + "resourceType": "labs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-01-01-preview", + "2018-10-15", + "2017-12-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "Japan East", + "West US", + "Australia Southeast", + "Australia Central", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "Korea Central", + "North Europe", + "South Africa North", + "South Central US", + "Switzerland North", + "UK West", + "West India", + "Australia East", + "Australia Central 2", + "Brazil South", + "Canada East", + "East US", + "East US 2", + "France Central", + "France South", + "Japan West", + "Korea South", + "North Central US", + "South India", + "Southeast Asia", + "Switzerland West", + "UK South", + "West Europe", + "West US 2" + ], + "properties": null, + "resourceType": "labaccounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-07", + "2022-08-01", + "2021-11-15-preview", + "2021-10-01-preview", + "2020-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Korea Central", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West US" + ], + "properties": null, + "resourceType": "locations/operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-01-01-preview", + "2018-10-15", + "2017-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "Japan East", + "West US", + "Australia Southeast", + "Australia Central", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "Korea Central", + "North Europe", + "South Africa North", + "South Central US", + "Switzerland North", + "UK West", + "West India", + "Australia East", + "Australia Central 2", + "Brazil South", + "Canada East", + "East US", + "East US 2", + "France Central", + "France South", + "Japan West", + "Korea South", + "North Central US", + "South India", + "Southeast Asia", + "Switzerland West", + "UK South", + "West Europe", + "West US 2" + ], + "properties": null, + "resourceType": "locations/operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-07", + "2022-08-01", + "2021-11-15-preview", + "2021-10-01-preview", + "2020-05-01-preview", + "2019-01-01-preview", + "2018-10-15", + "2017-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "South Central US", + "East Asia", + "Japan East", + "East US 2", + "East US", + "UK West", + "West Central US" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-01-01-preview", + "2018-10-15", + "2017-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "users", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-07", + "2022-08-01", + "2021-11-15-preview", + "2021-10-01-preview", + "2020-05-01-preview", + "2019-01-01-preview", + "2018-10-15", + "2017-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-07", + "2022-08-01", + "2021-11-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Korea Central", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West US" + ], + "properties": null, + "resourceType": "locations/usages", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "847bd4c1-7486-4241-a783-f9bda69241c1", + "roleDefinitionId": "7fca83fc-dc1b-4cd9-9248-4e4ea1fd349c" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.LoadTestService", + "namespace": "Microsoft.LoadTestService", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-12-01", + "2022-08-01-preview", + "2022-04-15-preview", + "2022-04-01-preview", + "2021-12-01-preview", + "2021-11-01-preview", + "2021-09-01-preview", + "2020-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-12-01", + "2022-08-01-preview", + "2022-04-15-preview", + "2022-04-01-preview", + "2021-12-01-preview", + "2021-11-01-preview", + "2021-09-01-preview", + "2020-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-12-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "North Europe", + "West US 2", + "West US 3", + "East Asia", + "Australia East", + "East US 2", + "South Central US", + "Sweden Central", + "UK South", + "West Europe", + "Canada Central", + "Japan East", + "Brazil South", + "Southeast Asia", + "France Central", + "Germany West Central", + "Central India" + ], + "properties": null, + "resourceType": "loadtests", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-12-01", + "2022-08-01-preview", + "2022-04-15-preview", + "2022-04-01-preview", + "2021-12-01-preview", + "2021-11-01-preview", + "2021-09-01-preview", + "2020-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Europe", + "East Asia", + "Australia East", + "East US", + "East US 2", + "South Central US", + "Sweden Central", + "West US 2", + "West US 3", + "UK South", + "West Europe", + "Canada Central", + "Japan East", + "Brazil South", + "Southeast Asia", + "France Central", + "Germany West Central", + "Central India", + "Central US" + ], + "properties": null, + "resourceType": "Locations/OperationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-12-01", + "2022-08-01-preview", + "2022-04-15-preview", + "2022-04-01-preview", + "2021-12-01-preview", + "2021-11-01-preview", + "2021-09-01-preview", + "2020-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "registeredSubscriptions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "North Europe", + "West US 2", + "West US 3", + "East Asia", + "Australia East", + "East US 2", + "South Central US", + "Sweden Central", + "UK South", + "West Europe", + "Canada Central", + "Japan East", + "Brazil South", + "Southeast Asia", + "France Central", + "Germany West Central", + "Central India" + ], + "properties": null, + "resourceType": "loadtests/outboundNetworkDependenciesEndpoints", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "North Europe", + "West US 2", + "West US 3", + "East Asia", + "Australia East", + "East US 2", + "South Central US", + "Sweden Central", + "UK South", + "West Europe", + "Canada Central", + "Japan East", + "Brazil South", + "Southeast Asia", + "France Central", + "Germany West Central", + "Central India" + ], + "properties": null, + "resourceType": "Locations/Quotas", + "zoneMappings": null + } + ] + }, + { + "authorization": { + "applicationId": "7cd684f4-8a78-49b0-91ec-6a35d38739ba", + "roleDefinitionId": "cb3ef1fb-6e31-49e2-9d87-ed821053fe58" + }, + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Logic", + "namespace": "Microsoft.Logic", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-05-01", + "2018-07-01-preview", + "2017-07-01", + "2016-10-01", + "2016-06-01", + "2015-08-01-preview", + "2015-02-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "West US", + "East US", + "East US 2", + "Japan West", + "Japan East", + "Brazil South", + "Brazil Southeast", + "Sweden Central", + "Qatar Central", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West US 3", + "Jio India West", + "West Central US", + "UK South", + "UK West", + "France Central", + "France South", + "Korea Central", + "Korea South", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany North", + "Germany West Central", + "Poland Central" + ], + "properties": null, + "resourceType": "workflows", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-05-01", + "2018-07-01-preview", + "2017-07-01", + "2016-10-01", + "2016-06-01", + "2015-08-01-preview", + "2015-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "West US", + "East US", + "East US 2", + "Japan West", + "Japan East", + "Brazil South", + "Brazil Southeast", + "Sweden Central", + "Qatar Central", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West US 3", + "Jio India West", + "West Central US", + "UK South", + "UK West", + "France Central", + "France South", + "Korea Central", + "Korea South", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany North", + "Germany West Central", + "Poland Central" + ], + "properties": null, + "resourceType": "locations/workflows", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "West US", + "East US", + "East US 2", + "Japan West", + "Japan East", + "Brazil South", + "Brazil Southeast", + "Qatar Central", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West US 3", + "Jio India West", + "West Central US", + "UK South", + "UK West", + "France Central", + "France South", + "Korea Central", + "Korea South", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany North", + "Germany West Central", + "Poland Central" + ], + "properties": null, + "resourceType": "locations/validateWorkflowExport", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "West US", + "East US", + "East US 2", + "Japan West", + "Japan East", + "Brazil South", + "Brazil Southeast", + "Qatar Central", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West US 3", + "Jio India West", + "West Central US", + "UK South", + "UK West", + "France Central", + "France South", + "Korea Central", + "Korea South", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany North", + "Germany West Central", + "Poland Central" + ], + "properties": null, + "resourceType": "locations/workflowExport", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-05-01", + "2018-07-01-preview", + "2017-07-01", + "2016-10-01", + "2016-06-01", + "2015-08-01-preview", + "2015-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US" + ], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-05-01", + "2018-07-01-preview", + "2017-07-01", + "2016-10-01", + "2016-06-01", + "2015-08-01-preview", + "2015-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Sweden Central", + "North Central US", + "Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "West US", + "East US", + "East US 2", + "Japan West", + "Japan East", + "Brazil South", + "Brazil Southeast", + "Qatar Central", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West US 3", + "Jio India West", + "West Central US", + "UK South", + "UK West", + "France Central", + "France South", + "Korea Central", + "Korea South", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany North", + "Germany West Central", + "Poland Central" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-05-01", + "2018-07-01-preview", + "2016-06-01", + "2015-08-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "West US", + "East US", + "East US 2", + "Japan West", + "Japan East", + "Brazil South", + "Brazil Southeast", + "Sweden Central", + "Qatar Central", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West US 3", + "Jio India West", + "West Central US", + "UK South", + "UK West", + "France Central", + "France South", + "Korea Central", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany North", + "Germany West Central", + "Poland Central" + ], + "properties": null, + "resourceType": "integrationAccounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-06-01-preview", + "2019-05-01", + "2018-07-01-preview", + "2018-03-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "West US", + "East US", + "East US 2", + "Japan West", + "Japan East", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "Canada Central", + "West US 2", + "UK South", + "UK West", + "France Central", + "South Africa North", + "UAE North" + ], + "properties": null, + "resourceType": "integrationServiceEnvironments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-06-01-preview", + "2019-05-01", + "2018-07-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "West US", + "East US", + "East US 2", + "Japan West", + "Japan East", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "Canada Central", + "West US 2", + "West Central US", + "UK South", + "UK West", + "France Central", + "South Africa North", + "UAE North" + ], + "properties": null, + "resourceType": "integrationServiceEnvironments/managedApis", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "a5472e16-e1d2-4bbe-81b3-ecdcd459b536", + "roleDefinitionId": "bd91f1c6-cda0-4e9d-9982-18a494ec938e" + }, + { + "applicationId": "0ecb6dbc-7807-4951-9a69-b5d3dfa5a0b5", + "roleDefinitionId": "b15da9ae-5633-4997-8e2c-b0941fb54476" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Logz", + "namespace": "Microsoft.Logz", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-01-01-preview", + "2020-10-01-preview", + "2020-10-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-01-01-preview", + "2020-10-01-preview", + "2020-10-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-01-01-preview", + "2020-10-01-preview", + "2020-10-01" + ], + "capabilities": "None", + "defaultApiVersion": "2020-10-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "registeredSubscriptions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-01-01-preview", + "2020-10-01-preview", + "2020-10-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US EUAP", + "East US 2 EUAP", + "West US 2", + "West Europe" + ], + "properties": null, + "resourceType": "locations/operationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-01-01-preview", + "2020-10-01-preview", + "2020-10-01" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "West Europe" + ], + "properties": null, + "resourceType": "monitors", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-01-01-preview", + "2020-10-01-preview", + "2020-10-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "West Europe" + ], + "properties": null, + "resourceType": "monitors/tagRules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-01-01-preview", + "2020-10-01-preview", + "2020-10-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "West Europe" + ], + "properties": null, + "resourceType": "monitors/singleSignOnConfigurations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-01-01-preview", + "2020-10-01-preview", + "2020-10-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "West Europe" + ], + "properties": null, + "resourceType": "monitors/accounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-01-01-preview", + "2020-10-01-preview", + "2020-10-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "West Europe" + ], + "properties": null, + "resourceType": "monitors/accounts/tagRules", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "c1652d7f-7767-4507-9f5f-9a97f38585d2", + "roleDefinitionId": "1cc297bc-1829-4524-941f-966373421033" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.MachineLearning", + "namespace": "Microsoft.MachineLearning", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-04-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "South Central US", + "West Europe", + "Southeast Asia", + "Japan East", + "West Central US" + ], + "properties": null, + "resourceType": "Workspaces", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-01-01", + "2016-05-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "South Central US", + "West Europe", + "Southeast Asia", + "Japan East", + "East US 2", + "West Central US" + ], + "properties": null, + "resourceType": "webServices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-01-01", + "2016-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "South Central US" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-01-01", + "2016-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "South Central US" + ], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-01-01", + "2016-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "South Central US", + "West Europe", + "Southeast Asia", + "Japan East", + "East US 2", + "West Central US" + ], + "properties": null, + "resourceType": "locations/operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-01-01", + "2016-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "South Central US", + "West Europe", + "Southeast Asia", + "Japan East", + "East US 2", + "West Central US" + ], + "properties": null, + "resourceType": "locations/operationsStatus", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-01-01", + "2016-05-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "South Central US", + "West Europe", + "Southeast Asia", + "Japan East", + "East US 2", + "West Central US" + ], + "properties": null, + "resourceType": "commitmentPlans", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "0736f41a-0425-4b46-bdb5-1563eff02385", + "managedByRoleDefinitionId": "91d00862-cf55-46a5-9dce-260bbd92ce25", + "roleDefinitionId": "376aa7d7-51a9-463d-bd4d-7e1691345612" + }, + { + "applicationId": "44b7b882-eb46-485c-9c78-686f6b67b176", + "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635", + "roleDefinitionId": "34a36fe4-521c-4206-9ba5-26ad882913a1" + }, + { + "applicationId": "607ece82-f922-494f-88b8-30effaf12214", + "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635", + "roleDefinitionId": "376aa7d7-51a9-463d-bd4d-7e1691345612" + }, + { + "applicationId": "61c50b89-703d-431d-8d80-1e8618748775", + "managedByRoleDefinitionId": "91d00862-cf55-46a5-9dce-260bbd92ce25", + "roleDefinitionId": "d312a9a6-5102-420b-b8b3-aa6b22670aaa" + }, + { + "applicationId": "18a66f5f-dbdf-4c17-9dd7-1634712a9cbe", + "managedByRoleDefinitionId": "91d00862-cf55-46a5-9dce-260bbd92ce25", + "roleDefinitionId": "8b910db7-60f9-4c04-af30-71aab18eda90" + }, + { + "applicationId": "b8cf62f3-7cc7-4e32-ab3a-41370ef0cfcf", + "managedByRoleDefinitionId": "91d00862-cf55-46a5-9dce-260bbd92ce25", + "roleDefinitionId": "8b910db7-60f9-4c04-af30-71aab18eda90" + }, + { + "applicationId": "fb9de05a-fecc-4642-b3ca-66b9d4434d4d", + "managedByRoleDefinitionId": "91d00862-cf55-46a5-9dce-260bbd92ce25", + "roleDefinitionId": "8b910db7-60f9-4c04-af30-71aab18eda90" + }, + { + "applicationId": "bf283ae6-5efd-44a8-b56a-2a7939982d60", + "managedByRoleDefinitionId": "91d00862-cf55-46a5-9dce-260bbd92ce25", + "roleDefinitionId": "8b910db7-60f9-4c04-af30-71aab18eda90" + }, + { + "applicationId": "6608bce8-e060-4e82-bfd2-67ed4f60262f", + "managedByRoleDefinitionId": "91d00862-cf55-46a5-9dce-260bbd92ce25", + "roleDefinitionId": "344880d0-81ee-4377-b825-b8b79810e492" + }, + { + "applicationId": "a99783bc-5466-4cef-82eb-ebf285d77131", + "managedByRoleDefinitionId": "91d00862-cf55-46a5-9dce-260bbd92ce25", + "roleDefinitionId": "376aa7d7-51a9-463d-bd4d-7e1691345612" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.MachineLearningServices", + "namespace": "Microsoft.MachineLearningServices", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2023-04-01", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-10-01-preview", + "2022-10-01", + "2022-06-01-preview", + "2022-05-01", + "2022-02-01-preview", + "2021-10-01", + "2021-03-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "Japan West", + "West US 3", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US", + "Canada East", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "workspaces/batchEndpoints", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2023-04-01", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-10-01-preview", + "2022-10-01", + "2022-06-01-preview", + "2022-05-01", + "2022-02-01-preview", + "2021-10-01", + "2021-03-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "Japan West", + "West US 3", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US", + "Canada East", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "workspaces/batchEndpoints/deployments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2023-04-01", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-10-01-preview", + "2022-10-01", + "2022-06-01-preview", + "2022-05-01", + "2022-02-01-preview", + "2022-01-01-preview", + "2021-10-01", + "2021-07-01", + "2021-04-01", + "2021-03-01-preview", + "2021-01-01", + "2020-09-01-preview", + "2020-08-01", + "2020-06-01", + "2020-05-15-preview", + "2020-05-01-preview", + "2020-04-01-preview", + "2020-04-01", + "2020-03-01", + "2020-02-18-preview", + "2020-02-02", + "2020-01-01", + "2019-11-01", + "2019-10-01", + "2019-06-01", + "2019-05-01", + "2018-11-19", + "2018-03-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2021-01-01", + "locationMappings": null, + "locations": [ + "Canada Central", + "Central India", + "North Central US", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "Japan West", + "West US 3", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US", + "Canada East", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "workspaces", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2023-04-01", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-10-01-preview", + "2022-05-01-privatepreview" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Canada Central", + "Central India", + "North Central US", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "Japan West", + "West US 3", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US", + "Canada East", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "registries", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2023-04-01", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-10-01-preview", + "2022-05-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Canada Central", + "Central India", + "North Central US", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "Japan West", + "West US 3", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US", + "Canada East", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "locations/registryOperationsStatus", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2023-04-01", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-10-01-preview", + "2022-10-01", + "2022-06-01-preview", + "2022-05-01", + "2022-02-01-preview", + "2021-10-01", + "2021-03-01-preview", + "2020-12-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "Japan West", + "West US 3", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US", + "Canada East", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "workspaces/onlineEndpoints", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2023-04-01", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-10-01-preview", + "2022-10-01", + "2022-06-01-preview", + "2022-05-01", + "2022-02-01-preview", + "2021-10-01", + "2021-03-01-preview", + "2020-12-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "Japan West", + "West US 3", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US", + "Canada East", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "workspaces/onlineEndpoints/deployments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2023-04-01", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-10-01-preview", + "2022-10-01", + "2022-06-01-preview", + "2022-05-01", + "2022-02-01-preview", + "2021-10-01", + "2021-03-01-preview", + "2020-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "Japan West", + "West US 3", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US", + "Canada East", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "workspaces/onlineEndpoints/deployments/skus", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2023-04-01", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-10-01-preview", + "2022-10-01", + "2022-06-01-preview", + "2022-05-01", + "2022-02-01-preview", + "2022-01-01-preview", + "2021-10-01", + "2021-07-01", + "2021-04-01", + "2021-03-01-preview", + "2021-01-01", + "2020-09-01-preview", + "2020-08-01", + "2020-06-01", + "2020-05-15-preview", + "2020-05-01-preview", + "2020-04-01-preview", + "2020-04-01", + "2020-03-01", + "2020-02-18-preview", + "2020-02-02", + "2020-01-01", + "2019-11-01", + "2019-06-01", + "2019-05-01", + "2018-11-19", + "2018-03-01-preview" + ], + "capabilities": "SystemAssignedResourceIdentity", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "Japan West", + "West US 3", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US", + "Canada East", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "workspaces/computes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2023-04-01", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-10-01-preview", + "2022-10-01", + "2022-06-01-preview", + "2022-05-01", + "2022-02-01-preview", + "2021-10-01", + "2021-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "Japan West", + "West US 3", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US", + "Canada East", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "workspaces/jobs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2023-04-01", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-10-01-preview", + "2022-10-01", + "2022-06-01-preview", + "2022-05-01", + "2022-02-01-preview", + "2021-10-01", + "2021-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "Japan West", + "West US 3", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US", + "Canada East", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "workspaces/codes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2023-04-01", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-10-01-preview", + "2022-10-01", + "2022-06-01-preview", + "2022-05-01", + "2022-02-01-preview", + "2021-10-01", + "2021-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "Japan West", + "West US 3", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US", + "Canada East", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "workspaces/codes/versions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2023-04-01", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-10-01-preview", + "2022-10-01", + "2022-06-01-preview", + "2022-05-01", + "2022-02-01-preview", + "2021-10-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "Japan West", + "West US 3", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US", + "Canada East", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "workspaces/components", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2023-04-01", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-10-01-preview", + "2022-10-01", + "2022-06-01-preview", + "2022-05-01", + "2022-02-01-preview", + "2021-10-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "Japan West", + "West US 3", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US", + "Canada East", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "workspaces/components/versions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2023-04-01", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-10-01-preview", + "2022-10-01", + "2022-06-01-preview", + "2022-05-01", + "2022-02-01-preview", + "2021-10-01", + "2021-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "Japan West", + "West US 3", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US", + "Canada East", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "workspaces/environments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2023-04-01", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-10-01-preview", + "2022-10-01", + "2022-06-01-preview", + "2022-05-01", + "2022-02-01-preview", + "2021-10-01", + "2021-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "Japan West", + "West US 3", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US", + "Canada East", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "workspaces/environments/versions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2023-04-01", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-10-01-preview", + "2022-10-01", + "2022-06-01-preview", + "2022-05-01", + "2022-02-01-preview", + "2021-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "Japan West", + "West US 3", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US", + "Canada East", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "workspaces/data", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2023-04-01", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-10-01-preview", + "2022-10-01", + "2022-06-01-preview", + "2022-05-01", + "2022-02-01-preview", + "2021-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "Japan West", + "West US 3", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US", + "Canada East", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "workspaces/data/versions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-10-01", + "2020-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "Japan West", + "West US 3", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US", + "Canada East", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "workspaces/datasets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "Japan West", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "Canada East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "workspaces/services", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2023-04-01", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-10-01-preview", + "2022-10-01", + "2022-06-01-preview", + "2022-05-01", + "2022-02-01-preview", + "2021-10-01", + "2021-03-01-preview", + "2020-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Canada Central", + "Central India", + "North Central US", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "Japan West", + "West US 3", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US", + "Canada East", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "workspaces/datastores", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2023-04-01", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-10-01-preview", + "2022-10-01", + "2022-06-01-preview", + "2022-05-01", + "2022-02-01-preview", + "2022-01-01-preview", + "2021-10-01", + "2021-07-01", + "2021-04-01", + "2021-03-01-preview", + "2021-01-01", + "2020-09-01-preview", + "2020-08-01", + "2020-06-01", + "2020-05-15-preview", + "2020-05-01-preview", + "2020-04-01-preview", + "2020-04-01", + "2020-03-01", + "2020-02-18-preview", + "2020-02-02", + "2019-06-01", + "2019-05-01", + "2018-11-19", + "2018-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "Japan West", + "West US 3", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US", + "Canada East", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "workspaces/eventGridFilters", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2023-04-01", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-10-01-preview", + "2022-10-01", + "2022-06-01-preview", + "2022-05-01", + "2022-02-01-preview", + "2021-10-01", + "2021-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "Japan West", + "West US 3", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US", + "Canada East", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "workspaces/models", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2023-04-01", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-10-01-preview", + "2022-10-01", + "2022-06-01-preview", + "2022-05-01", + "2022-02-01-preview", + "2021-10-01", + "2021-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "Japan West", + "West US 3", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US", + "Canada East", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "workspaces/models/versions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2023-04-01", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-10-01-preview", + "2022-10-01", + "2022-06-01-preview", + "2022-05-01", + "2022-02-01-preview", + "2022-01-01-preview", + "2021-10-01", + "2021-07-01", + "2021-04-01", + "2021-03-01-preview", + "2021-01-01", + "2020-09-01-preview", + "2020-08-01", + "2020-06-01", + "2020-05-15-preview", + "2020-05-01-preview", + "2020-04-01-preview", + "2020-04-01", + "2020-03-01", + "2020-02-18-preview", + "2020-02-02", + "2020-01-01", + "2019-11-01", + "2019-06-01", + "2019-05-01", + "2018-11-19", + "2018-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US 2" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2023-04-01", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-10-01-preview", + "2022-10-01", + "2022-06-01-preview", + "2022-05-01", + "2022-02-01-preview", + "2022-01-01-preview", + "2021-10-01", + "2021-07-01", + "2021-04-01", + "2021-03-01-preview", + "2021-01-01", + "2020-09-01-preview", + "2020-08-01", + "2020-06-01", + "2020-05-15-preview", + "2020-05-01-preview", + "2020-04-01-preview", + "2020-04-01", + "2020-03-01", + "2020-02-18-preview", + "2020-02-02", + "2020-01-01", + "2019-11-01", + "2019-06-01", + "2019-05-01", + "2018-11-19", + "2018-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US 2" + ], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2023-04-01", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-10-01-preview", + "2022-10-01", + "2022-06-01-preview", + "2022-05-01", + "2022-02-01-preview", + "2022-01-01-preview", + "2021-10-01", + "2021-07-01", + "2021-04-01", + "2021-03-01-preview", + "2021-01-01", + "2020-09-01-preview", + "2020-08-01", + "2020-06-01", + "2020-05-15-preview", + "2020-05-01-preview", + "2020-04-01-preview", + "2020-04-01", + "2020-03-01", + "2020-02-18-preview", + "2020-02-02", + "2020-01-01", + "2019-11-01", + "2019-06-01", + "2019-05-01", + "2018-11-19", + "2018-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "Japan West", + "West US 3", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "East US", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Canada East", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "locations/computeOperationsStatus", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2023-04-01", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-10-01-preview", + "2022-10-01", + "2022-06-01-preview", + "2022-05-01", + "2022-02-01-preview", + "2021-10-01", + "2021-03-01-preview", + "2020-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Brazil South", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Japan East", + "Japan West", + "West US 3", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "Korea Central", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "UK South", + "West Central US", + "West Europe", + "West US", + "West US 2", + "Canada East", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "locations/mfeOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2023-04-01", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-10-01-preview", + "2022-10-01", + "2022-06-01-preview", + "2022-05-01", + "2022-02-01-preview", + "2021-10-01", + "2021-03-01-preview", + "2020-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Brazil South", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Japan East", + "Japan West", + "West US 3", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "Korea Central", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "UK South", + "West Central US", + "West Europe", + "West US", + "West US 2", + "Canada East", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "locations/mfeOperationsStatus", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2023-04-01", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-10-01-preview", + "2022-10-01", + "2022-06-01-preview", + "2022-05-01", + "2022-02-01-preview", + "2022-01-01-preview", + "2021-10-01", + "2021-07-01", + "2021-04-01", + "2021-03-01-preview", + "2021-01-01", + "2020-09-01-preview", + "2020-09-01", + "2020-08-01", + "2020-06-01", + "2020-05-15-preview", + "2020-05-01-preview", + "2020-04-01-preview", + "2020-04-01", + "2020-03-01", + "2020-02-18-preview", + "2020-02-02", + "2020-01-01", + "2019-11-01", + "2019-10-01", + "2019-06-01", + "2019-05-01", + "2018-11-19", + "2018-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "Japan West", + "West US 3", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US", + "Canada East", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "locations/workspaceOperationsStatus", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2023-04-01", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-10-01-preview", + "2022-10-01", + "2022-06-01-preview", + "2022-05-01", + "2022-02-01-preview", + "2022-01-01-preview", + "2021-10-01", + "2021-07-01", + "2021-04-01", + "2021-03-01-preview", + "2021-01-01", + "2020-09-01-preview", + "2020-08-01", + "2020-06-01", + "2020-05-15-preview", + "2020-05-01-preview", + "2020-04-01-preview", + "2020-04-01", + "2020-03-01", + "2020-02-18-preview", + "2020-02-02", + "2020-01-01", + "2019-11-01", + "2019-06-01", + "2019-05-01", + "2018-11-19" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "Japan West", + "West US 3", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US", + "Canada East", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "locations/usages", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2023-04-01", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-10-01-preview", + "2022-10-01", + "2022-06-01-preview", + "2022-05-01", + "2022-02-01-preview", + "2022-01-01-preview", + "2021-10-01", + "2021-07-01", + "2021-04-01", + "2021-03-01-preview", + "2021-01-01", + "2020-09-01-preview", + "2020-08-01", + "2020-06-01", + "2020-05-15-preview", + "2020-05-01-preview", + "2020-04-01-preview", + "2020-04-01", + "2020-03-01", + "2020-02-18-preview", + "2020-02-02", + "2020-01-01", + "2019-11-01", + "2019-06-01", + "2019-05-01", + "2018-11-19" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "Japan West", + "West US 3", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US", + "Canada East", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "locations/vmsizes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2023-04-01", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-10-01-preview", + "2022-10-01", + "2022-06-01-preview", + "2022-05-01", + "2022-02-01-preview", + "2022-01-01-preview", + "2021-10-01", + "2021-07-01", + "2021-04-01", + "2021-03-01-preview", + "2021-01-01", + "2020-09-01-preview", + "2020-08-01", + "2020-06-01", + "2020-05-15-preview", + "2020-05-01-preview", + "2020-04-01-preview", + "2020-04-01", + "2020-03-01", + "2020-02-18-preview", + "2020-02-02", + "2020-01-01", + "2019-11-01", + "2019-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "Japan West", + "West US 3", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US", + "Canada East", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "locations/quotas", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2023-04-01", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-10-01-preview", + "2022-10-01", + "2022-06-01-preview", + "2022-05-01", + "2022-02-01-preview", + "2022-01-01-preview", + "2021-10-01", + "2021-07-01", + "2021-04-01", + "2021-03-01-preview", + "2021-01-01", + "2020-09-01-preview", + "2020-08-01", + "2020-06-01", + "2020-05-15-preview", + "2020-05-01-preview", + "2020-04-01-preview", + "2020-04-01", + "2020-03-01", + "2020-02-18-preview", + "2020-02-02", + "2020-01-01", + "2019-11-01", + "2019-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "Japan West", + "West US 3", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US", + "Canada East", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "locations/updatequotas", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-09-01-preview", + "2020-05-15-preview", + "2020-05-01-preview", + "2020-04-01-preview" + ], + "capabilities": "SystemAssignedResourceIdentity", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "Japan West", + "West US 3", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US", + "Canada East", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "workspaces/linkedServices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-10-01-preview", + "2022-06-01-preview", + "2021-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "Japan West", + "West US 3", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US", + "Canada East", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "workspaces/labelingJobs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2023-04-01", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-10-01-preview", + "2022-10-01", + "2022-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "Japan West", + "West US 3", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US", + "Canada East", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "workspaces/schedules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2023-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "Japan West", + "West US 3", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US", + "Canada East", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "workspaces/featuresets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2023-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "Japan West", + "West US 3", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US", + "Canada East", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "workspaces/featuresets/versions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2023-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "Japan West", + "West US 3", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US", + "Canada East", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "workspaces/featurestoreEntities", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2023-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "Japan West", + "West US 3", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US", + "Canada East", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "workspaces/featurestoreEntities/versions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2023-04-01", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "Japan West", + "West US 3", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US", + "Canada East", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "registries/codes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2023-04-01", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "Japan West", + "West US 3", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US", + "Canada East", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "registries/codes/versions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2023-04-01", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "Japan West", + "West US 3", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US", + "Canada East", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "registries/components", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2023-04-01", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "Japan West", + "West US 3", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US", + "Canada East", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "registries/components/versions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2023-04-01", + "2023-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "Japan West", + "West US 3", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US", + "Canada East", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "registries/data", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2023-04-01", + "2023-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "Japan West", + "West US 3", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US", + "Canada East", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "registries/data/versions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2023-04-01", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "Japan West", + "West US 3", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US", + "Canada East", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "registries/environments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2023-04-01", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "Japan West", + "West US 3", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US", + "Canada East", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "registries/environments/versions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2023-04-01", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "Japan West", + "West US 3", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US", + "Canada East", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "registries/models", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-04-01-preview", + "2023-04-01", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "Japan West", + "West US 3", + "Jio India West", + "Germany West Central", + "Switzerland North", + "UAE North", + "South Africa North", + "Norway East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US", + "Canada East", + "Sweden Central", + "UK West", + "Australia Southeast", + "Qatar Central", + "South India", + "Poland Central" + ], + "properties": null, + "resourceType": "registries/models/versions", + "zoneMappings": null + } + ] + }, + { + "authorization": { + "applicationId": "f18474f2-a66a-4bb0-a3c9-9b8d892092fa", + "roleDefinitionId": "2f1ef7b0-d5c4-4d3c-98fa-6a9fa8e74aa5" + }, + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Maintenance", + "namespace": "Microsoft.Maintenance", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2023-04-01", + "2022-11-01-preview", + "2022-07-01-preview", + "2021-09-01-preview", + "2021-05-01", + "2021-04-01-preview", + "2020-07-01-preview", + "2020-04-01", + "2018-10-01", + "2018-06-01-preview", + "2017-04-26", + "2017-01-01", + "2016-01-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "West Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Australia Central 2", + "South Africa North", + "South Africa West", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "France South", + "UAE North", + "UAE Central", + "Germany West Central", + "Germany North", + "Switzerland North", + "Switzerland West", + "Norway West", + "Norway East", + "Brazil Southeast", + "West US 3", + "Jio India West", + "Jio India Central", + "Sweden Central", + "Poland Central", + "Qatar Central", + "Israel Central", + "Italy North" + ], + "properties": null, + "resourceType": "maintenanceConfigurations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2023-04-01", + "2022-11-01-preview", + "2022-07-01-preview", + "2021-09-01-preview", + "2021-05-01", + "2021-04-01-preview", + "2020-07-01-preview", + "2020-04-01", + "2018-10-01", + "2018-06-01-preview", + "2017-04-26", + "2017-01-01", + "2016-01-01" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "West Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Australia Central 2", + "South Africa North", + "South Africa West", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "France South", + "UAE North", + "UAE Central", + "Germany West Central", + "Germany North", + "Switzerland North", + "Switzerland West", + "Norway West", + "Norway East", + "Brazil Southeast", + "West US 3", + "Jio India West", + "Jio India Central", + "Sweden Central", + "Poland Central", + "Qatar Central", + "Israel Central", + "Italy North" + ], + "properties": null, + "resourceType": "updates", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "West Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Australia Central 2", + "South Africa North", + "South Africa West", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "France South", + "UAE North", + "UAE Central", + "Germany West Central", + "Germany North", + "Switzerland North", + "Switzerland West", + "Norway West", + "Norway East", + "Brazil Southeast", + "West US 3", + "Jio India West", + "Jio India Central", + "Sweden Central", + "Poland Central", + "Qatar Central", + "Israel Central", + "Italy North" + ], + "properties": null, + "resourceType": "configurationAssignments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2023-04-01", + "2022-11-01-preview", + "2022-07-01-preview", + "2021-09-01-preview", + "2021-05-01", + "2021-04-01-preview", + "2020-07-01-preview", + "2020-04-01", + "2018-10-01", + "2018-06-01-preview", + "2017-04-26", + "2017-01-01", + "2016-01-01" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "West Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Australia Central 2", + "South Africa North", + "South Africa West", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "France South", + "UAE North", + "UAE Central", + "Germany West Central", + "Germany North", + "Switzerland North", + "Switzerland West", + "Norway West", + "Norway East", + "Brazil Southeast", + "West US 3", + "Jio India West", + "Jio India Central", + "Sweden Central", + "Poland Central", + "Qatar Central", + "Israel Central", + "Italy North" + ], + "properties": null, + "resourceType": "applyUpdates", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2023-04-01", + "2022-11-01-preview", + "2022-07-01-preview", + "2021-09-01-preview", + "2021-05-01", + "2021-04-01-preview", + "2020-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "publicMaintenanceConfigurations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2023-04-01", + "2022-11-01-preview", + "2022-07-01-preview", + "2021-09-01-preview", + "2021-05-01", + "2021-04-01-preview", + "2020-07-01-preview", + "2020-04-01", + "2018-10-01", + "2018-06-01-preview", + "2017-04-26", + "2017-01-01", + "2016-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "West Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Australia Central 2", + "South Africa North", + "South Africa West", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "France South", + "UAE North", + "UAE Central", + "Germany West Central", + "Germany North", + "Switzerland North", + "Switzerland West", + "Norway West", + "Norway East", + "Brazil Southeast", + "West US 3", + "Jio India West", + "Jio India Central", + "Sweden Central", + "Poland Central", + "Qatar Central", + "Israel Central", + "Italy North" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "d1bd24c7-b27f-477e-86dd-939e107873d7", + "roleDefinitionId": "152eedb2-7399-4357-8ea6-8126717fa567" + }, + { + "applicationId": "a893dadc-5c8e-47f4-8379-6afb34bdbe12", + "roleDefinitionId": "152eedb2-7399-4357-8ea6-8126717fa567" + }, + { + "applicationId": "319f651f-7ddb-4fc6-9857-7aef9250bd05", + "roleDefinitionId": "152eedb2-7399-4357-8ea6-8126717fa567" + }, + { + "applicationId": "f77c2a8f-8a0a-4776-8e0a-bcb2549610ca", + "managedByAuthorization": { + "additionalAuthorizations": [ + { + "applicationId": "d1bd24c7-b27f-477e-86dd-939e107873d7", + "roleDefinitionId": "1e86f807-6ec0-40b3-8b5f-686b7e43a0a2" + } + ] + }, + "managedByRoleDefinitionId": "1e86f807-6ec0-40b3-8b5f-686b7e43a0a2", + "roleDefinitionId": "8010f77f-bee6-484b-bce2-444be3761632" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.ManagedNetworkFabric", + "namespace": "Microsoft.ManagedNetworkFabric", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-15", + "2023-02-01-preview", + "2022-01-15-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-15" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "West US 3" + ], + "properties": null, + "resourceType": "NetworkFabricControllers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-15", + "2023-02-01-preview", + "2022-01-15-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-15" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 3", + "South Central US", + "East US" + ], + "properties": null, + "resourceType": "Locations/OperationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-15" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "West US 3" + ], + "properties": null, + "resourceType": "NetworkFabrics", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-15" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "West US 3" + ], + "properties": null, + "resourceType": "NetworkRacks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-15" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "West US 3" + ], + "properties": null, + "resourceType": "NetworkDevices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-15" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "West US 3" + ], + "properties": null, + "resourceType": "NetworkDevices/NetworkInterfaces", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-15" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "West US 3" + ], + "properties": null, + "resourceType": "L2IsolationDomains", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-15" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "West US 3" + ], + "properties": null, + "resourceType": "L3IsolationDomains", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-15" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "West US 3" + ], + "properties": null, + "resourceType": "accesscontrollists", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-15" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "West US 3" + ], + "properties": null, + "resourceType": "RoutePolicies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-15" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "West US 3" + ], + "properties": null, + "resourceType": "L3IsolationDomains/externalNetworks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-15" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "West US 3" + ], + "properties": null, + "resourceType": "L3IsolationDomains/internalNetworks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-15" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "West US 3" + ], + "properties": null, + "resourceType": "NetworkFabrics/NetworkToNetworkInterconnects", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-15" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "West US 3" + ], + "properties": null, + "resourceType": "IpExtendedCommunities", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-15" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "West US 3" + ], + "properties": null, + "resourceType": "IpCommunities", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-15" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "West US 3" + ], + "properties": null, + "resourceType": "IpPrefixes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-15" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "West US 3" + ], + "properties": null, + "resourceType": "InternetGateways", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-15" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "West US 3" + ], + "properties": null, + "resourceType": "internetgatewayrules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-15" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "West US 3" + ], + "properties": null, + "resourceType": "networkpacketbrokers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-15" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "West US 3" + ], + "properties": null, + "resourceType": "networktaps", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-15" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "West US 3" + ], + "properties": null, + "resourceType": "networktaprules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-15" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "West US 3" + ], + "properties": null, + "resourceType": "neighborgroups", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "319f651f-7ddb-4fc6-9857-7aef9250bd05", + "roleDefinitionId": "37b6c327-098f-4da7-93aa-5d87c2fc2d13" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.ManagedStorageClass", + "namespace": "Microsoft.ManagedStorageClass", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "East US", + "East US 2", + "East US 2 EUAP", + "Central US" + ], + "properties": null, + "resourceType": "Locations/OperationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "East US", + "East US 2", + "Central US" + ], + "properties": null, + "resourceType": "managedstorageclass", + "zoneMappings": null + } + ] + }, + { + "authorization": { + "applicationId": "f2c304cf-8e7e-4c3f-8164-16299ad9d272", + "roleDefinitionId": "c1cf3708-588a-4647-be7f-f400bbe214cf" + }, + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Management", + "namespace": "Microsoft.Management", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-11-01-preview", + "2017-08-31-preview", + "2017-06-30-preview", + "2017-05-31-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "resources", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01", + "2021-04-01", + "2020-10-01", + "2020-05-01", + "2020-02-01", + "2019-11-01", + "2018-03-01-preview", + "2018-03-01-beta", + "2018-01-01-preview", + "2017-11-01-preview", + "2017-08-31-preview", + "2017-06-30-preview", + "2017-05-31-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "managementGroups", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01", + "2021-04-01", + "2020-10-01", + "2020-05-01", + "2020-02-01", + "2019-11-01", + "2018-03-01-preview", + "2018-03-01-beta", + "2018-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "getEntities", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01", + "2021-04-01", + "2020-10-01", + "2020-05-01", + "2020-02-01", + "2018-03-01-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "managementGroups/settings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01", + "2021-04-01", + "2020-10-01", + "2020-05-01", + "2020-02-01", + "2019-11-01", + "2018-03-01-preview", + "2018-03-01-beta", + "2018-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01", + "2021-04-01", + "2020-10-01", + "2020-05-01", + "2020-02-01", + "2019-11-01", + "2018-03-01-preview", + "2018-03-01-beta", + "2018-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01", + "2021-04-01", + "2020-10-01", + "2020-05-01", + "2020-02-01", + "2019-11-01", + "2018-03-01-preview", + "2018-03-01-beta", + "2018-01-01-preview", + "2017-11-01-preview", + "2017-08-31-preview", + "2017-06-30-preview", + "2017-05-31-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operationResults/asyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01", + "2021-04-01", + "2020-10-01", + "2020-05-01", + "2020-02-01", + "2019-11-01", + "2018-03-01-preview", + "2018-03-01-beta", + "2018-01-01-preview", + "2017-11-01-preview", + "2017-08-31-preview", + "2017-06-30-preview", + "2017-05-31-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01", + "2021-04-01", + "2020-10-01", + "2020-05-01", + "2020-02-01", + "2019-11-01", + "2018-03-01-preview", + "2018-03-01-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "tenantBackfillStatus", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01", + "2021-04-01", + "2020-10-01", + "2020-05-01", + "2020-02-01", + "2019-11-01", + "2018-03-01-preview", + "2018-03-01-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "startTenantBackfill", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "6a807e11-115f-4c49-8e9f-faa2ac963cc7", + "roleDefinitionId": "6b7d3f6e-edd9-44ea-a0e5-abab1c5887b3" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.ManufacturingPlatform", + "namespace": "Microsoft.ManufacturingPlatform", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "Operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "608f6f31-fed0-4f7b-809f-90f6c9b3de78", + "roleDefinitionId": "3431F0E6-63BC-482D-A96E-0AB819610A5F" + }, + { + "applicationId": "ba1ea022-5807-41d5-bbeb-292c7e1cf5f6", + "roleDefinitionId": "48195074-b752-4868-be0f-7c324a224aa1" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Maps", + "namespace": "Microsoft.Maps", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01", + "2021-12-01-preview", + "2021-07-01-preview", + "2021-02-01", + "2020-02-01-preview", + "2018-05-01", + "2017-01-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2021-07-01-preview", + "locationMappings": null, + "locations": [ + "West Central US", + "Global", + "West US 2", + "East US", + "West Europe", + "North Europe" + ], + "properties": null, + "resourceType": "accounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01", + "2021-12-01-preview", + "2021-02-01", + "2020-02-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2021-02-01", + "locationMappings": null, + "locations": [ + "North Europe", + "West Europe", + "East US 2", + "West US 2", + "Europe", + "United States" + ], + "properties": null, + "resourceType": "accounts/creators", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01", + "2021-12-01-preview", + "2021-07-01-preview", + "2021-02-01", + "2020-02-01-preview", + "2018-05-01" + ], + "capabilities": "None", + "defaultApiVersion": "2018-05-01", + "locationMappings": null, + "locations": [ + "West Central US", + "West US 2", + "East US", + "West Europe", + "North Europe", + "Global" + ], + "properties": null, + "resourceType": "accounts/eventGridFilters", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01", + "2021-12-01-preview", + "2021-07-01-preview", + "2021-02-01", + "2020-02-01-preview", + "2018-05-01", + "2017-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Global" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "a0e1e353-1a3e-42cf-a8ea-3a9746eec58c" + }, + { + "applicationId": "87df0fbf-e22d-4d7c-bc30-f59ca7460837" + }, + { + "applicationId": "a5ce81bb-67c7-4043-952a-22004782adb5" + }, + { + "applicationId": "d360971a-94de-4558-b764-dfd218a8f5ce" + }, + { + "applicationId": "597cd9fe-6340-49a7-a0e3-8af00a7e1730" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Marketplace", + "namespace": "Microsoft.Marketplace", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "register", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-03-01-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "privategalleryitems", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-12-01-preview", + "2021-10-01", + "2021-06-01", + "2018-08-01-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "products", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-12-01-preview", + "2021-10-01", + "2021-06-01", + "2018-08-01-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "offers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-08-01-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "macc", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-03-01-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "offerTypes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-03-01-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "offerTypes/publishers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-03-01-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "offerTypes/publishers/offers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-03-01-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "offerTypes/publishers/offers/plans", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-03-01-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "offerTypes/publishers/offers/plans/configs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-03-01-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "offerTypes/publishers/offers/plans/configs/importImage", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-03-01-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "offerTypes/publishers/offers/plans/agreements", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01-preview", + "2023-01-01-preview", + "2023-01-01", + "2022-09-01", + "2022-07-31", + "2022-03-01", + "2022-02-02", + "2021-12-01", + "2018-03-01-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-03-01-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "listAvailableOffers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-06-30-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "publishers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-06-30-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "publishers/offers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-06-30-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "publishers/offers/amendments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-08-01-beta", + "2018-03-01-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "privateStoreClient", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-09-01", + "2022-03-01", + "2021-12-01", + "2021-06-01", + "2020-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "privateStores", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-06-01-beta", + "2020-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "privateStores/offers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview", + "2022-02-02" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "search", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-09-01", + "2022-03-01", + "2021-12-01", + "2021-06-01", + "2020-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "privateStores/requestApprovals/query", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-09-01", + "2022-03-01", + "2021-12-01", + "2021-06-01", + "2020-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "privateStores/requestApprovals/withdrawPlan", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-09-01", + "2022-03-01", + "2021-12-01", + "2021-06-01", + "2020-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "privateStores/RequestApprovals", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-09-01", + "2022-03-01", + "2021-12-01", + "2021-06-01", + "2020-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "privateStores/queryNotificationsState", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-09-01", + "2022-03-01", + "2021-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "privateStores/fetchAllSubscriptionsInTenant", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-09-01", + "2022-03-01", + "2021-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "privateStores/listNewPlansNotifications", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-09-01", + "2022-03-01", + "2021-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "privateStores/listStopSellOffersPlansNotifications", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-09-01", + "2022-03-01", + "2021-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "privateStores/listSubscriptionsContext", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-09-01", + "2022-03-01", + "2021-12-01", + "2021-06-01", + "2020-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "privateStores/offers/acknowledgeNotification", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-09-01", + "2022-03-01", + "2021-12-01", + "2021-06-01", + "2020-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "privateStores/AdminRequestApprovals", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-09-01", + "2022-03-01", + "2021-12-01", + "2021-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "privateStores/collections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-09-01", + "2022-03-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "privateStores/collections/approveAllItems", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-09-01", + "2022-03-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "privateStores/collections/disableApproveAllItems", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-09-01", + "2022-03-01", + "2021-12-01", + "2021-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "privateStores/collections/offers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "privateStores/collections/mapOffersToContexts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "privateStores/collections/queryRules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "privateStores/collections/setRules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-09-01", + "2022-03-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "privateStores/collections/offers/upsertOfferWithMultiContext", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-09-01", + "2022-03-01", + "2021-12-01", + "2021-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "privateStores/bulkCollectionsAction", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-09-01", + "2022-03-01", + "2021-12-01", + "2021-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "privateStores/collections/transferOffers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-09-01", + "2022-03-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "privateStores/anyExistingOffersInTheCollections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-09-01", + "2022-03-01", + "2021-12-01", + "2021-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "privateStores/queryOffers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-09-01", + "2022-03-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "privateStores/queryUserOffers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "privateStores/queryUserRules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-09-01", + "2022-03-01", + "2021-12-01", + "2021-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "privateStores/collectionsToSubscriptionsMapping", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-09-01", + "2022-03-01", + "2021-12-01", + "2021-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "privateStores/billingAccounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-09-01", + "2022-03-01", + "2021-12-01", + "2021-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "privateStores/queryApprovedPlans", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-07-31", + "2021-10-01", + "2021-06-01", + "2018-08-01-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-07-31", + "2021-10-01", + "2021-06-01", + "2018-08-01-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations/edgeZones", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-07-31", + "2021-10-01", + "2021-06-01", + "2018-08-01-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations/edgeZones/products", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "mysolutions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "products/reviews", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "products/reviews/comments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "products/reviews/helpful", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "products/usermetadata", + "zoneMappings": null + } + ] + }, + { + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.MarketplaceOrdering", + "namespace": "Microsoft.MarketplaceOrdering", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationFree", + "registrationState": "Registered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-01-01", + "2015-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "South Central US", + "West US" + ], + "properties": null, + "resourceType": "agreements", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-01-01", + "2015-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-01-01", + "2015-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "South Central US", + "West US" + ], + "properties": null, + "resourceType": "offertypes", + "zoneMappings": null + } + ] + }, + { + "authorization": { + "applicationId": "374b2a64-3b6b-436b-934c-b820eacca870", + "roleDefinitionId": "aab70789-0cec-44b5-95d7-84b64c9487af" + }, + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Media", + "namespace": "Microsoft.Media", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2021-11-01", + "2021-06-01", + "2021-05-01", + "2020-05-01", + "2018-07-01", + "2018-06-01-preview", + "2018-03-30-preview", + "2015-10-01", + "2015-04-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2021-06-01", + "locationMappings": null, + "locations": [ + "Japan West", + "Japan East", + "East Asia", + "Southeast Asia", + "West Europe", + "North Europe", + "East US", + "West US", + "Australia East", + "Australia Southeast", + "East US 2", + "Central US", + "Brazil South", + "Central India", + "West India", + "South India", + "North Central US", + "South Central US", + "UK South", + "UK West", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "Germany West Central", + "Germany North", + "Switzerland West", + "Switzerland North", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central" + ], + "properties": null, + "resourceType": "mediaservices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-11-01-preview", + "2021-05-01-privatepreview", + "2021-05-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2021-05-01-preview", + "locationMappings": null, + "locations": [ + "East US 2", + "West US 2" + ], + "properties": null, + "resourceType": "videoAnalyzers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-08-01", + "2021-11-01", + "2021-06-01", + "2020-05-01", + "2018-07-01", + "2018-06-01-preview", + "2018-03-30-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2018-07-01", + "locationMappings": null, + "locations": [ + "Japan West", + "Japan East", + "East Asia", + "Southeast Asia", + "West Europe", + "North Europe", + "East US", + "West US", + "Australia East", + "Australia Southeast", + "East US 2", + "Central US", + "Brazil South", + "Central India", + "West India", + "South India", + "North Central US", + "South Central US", + "UK South", + "UK West", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "Germany West Central", + "Germany North", + "Switzerland West", + "Switzerland North", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central" + ], + "properties": null, + "resourceType": "mediaservices/assets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-08-01", + "2021-11-01" + ], + "capabilities": "None", + "defaultApiVersion": "2021-11-01", + "locationMappings": null, + "locations": [ + "Japan West", + "Japan East", + "East Asia", + "Southeast Asia", + "West Europe", + "North Europe", + "East US", + "West US", + "Australia East", + "Australia Southeast", + "East US 2", + "Central US", + "Brazil South", + "Central India", + "West India", + "South India", + "North Central US", + "South Central US", + "UK South", + "UK West", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "Germany West Central", + "Germany North", + "Switzerland West", + "Switzerland North", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central" + ], + "properties": null, + "resourceType": "mediaservices/assets/tracks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-08-01", + "2021-11-01", + "2021-06-01", + "2020-05-01", + "2018-07-01", + "2018-06-01-preview", + "2018-03-30-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2018-07-01", + "locationMappings": null, + "locations": [ + "Japan West", + "Japan East", + "East Asia", + "Southeast Asia", + "West Europe", + "North Europe", + "East US", + "West US", + "Australia East", + "Australia Southeast", + "East US 2", + "Central US", + "Brazil South", + "Central India", + "West India", + "South India", + "North Central US", + "South Central US", + "UK South", + "UK West", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "Germany West Central", + "Germany North", + "Switzerland West", + "Switzerland North", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central" + ], + "properties": null, + "resourceType": "mediaservices/contentKeyPolicies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-08-01", + "2021-11-01", + "2021-06-01", + "2020-05-01", + "2018-07-01", + "2018-06-01-preview", + "2018-03-30-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2018-07-01", + "locationMappings": null, + "locations": [ + "Japan West", + "Japan East", + "East Asia", + "Southeast Asia", + "West Europe", + "North Europe", + "East US", + "West US", + "Australia East", + "Australia Southeast", + "East US 2", + "Central US", + "Brazil South", + "Central India", + "West India", + "South India", + "North Central US", + "South Central US", + "UK South", + "UK West", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "Germany West Central", + "Germany North", + "Switzerland West", + "Switzerland North", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central" + ], + "properties": null, + "resourceType": "mediaservices/streamingLocators", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-08-01", + "2021-11-01", + "2021-06-01", + "2020-05-01", + "2018-07-01", + "2018-06-01-preview", + "2018-03-30-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2018-07-01", + "locationMappings": null, + "locations": [ + "Japan West", + "Japan East", + "East Asia", + "Southeast Asia", + "West Europe", + "North Europe", + "East US", + "West US", + "Australia East", + "Australia Southeast", + "East US 2", + "Central US", + "Brazil South", + "Central India", + "West India", + "South India", + "North Central US", + "South Central US", + "UK South", + "UK West", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "Germany West Central", + "Germany North", + "Switzerland West", + "Switzerland North", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central" + ], + "properties": null, + "resourceType": "mediaservices/streamingPolicies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-02-05" + ], + "capabilities": "None", + "defaultApiVersion": "2018-02-05", + "locationMappings": null, + "locations": [ + "Japan West", + "Japan East", + "East Asia", + "Southeast Asia", + "West Europe", + "North Europe", + "East US", + "West US", + "Australia East", + "Australia Southeast", + "East US 2", + "Central US", + "Brazil South", + "Central India", + "West India", + "South India", + "North Central US", + "South Central US", + "UK South", + "UK West", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "Germany West Central", + "Germany North", + "Switzerland West", + "Switzerland North", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central" + ], + "properties": null, + "resourceType": "mediaservices/eventGridFilters", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-07-01", + "2022-05-01-preview", + "2021-11-01", + "2021-06-01", + "2020-05-01", + "2018-07-01", + "2018-06-01-preview", + "2018-03-30-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2018-07-01", + "locationMappings": null, + "locations": [ + "Japan West", + "Japan East", + "East Asia", + "Southeast Asia", + "West Europe", + "North Europe", + "East US", + "West US", + "Australia East", + "Australia Southeast", + "East US 2", + "Central US", + "Brazil South", + "Central India", + "West India", + "South India", + "North Central US", + "South Central US", + "UK South", + "UK West", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "Germany West Central", + "Germany North", + "Switzerland West", + "Switzerland North", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central" + ], + "properties": null, + "resourceType": "mediaservices/transforms", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-07-01", + "2022-05-01-preview", + "2021-11-01", + "2021-06-01", + "2020-05-01", + "2018-07-01", + "2018-06-01-preview", + "2018-03-30-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2018-07-01", + "locationMappings": null, + "locations": [ + "Japan West", + "Japan East", + "East Asia", + "Southeast Asia", + "West Europe", + "North Europe", + "East US", + "West US", + "Australia East", + "Australia Southeast", + "East US 2", + "Central US", + "Brazil South", + "Central India", + "West India", + "South India", + "North Central US", + "South Central US", + "UK South", + "UK West", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "Germany West Central", + "Germany North", + "Switzerland West", + "Switzerland North", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central" + ], + "properties": null, + "resourceType": "mediaservices/transforms/jobs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-11-01", + "2022-08-01", + "2021-11-01", + "2021-06-01", + "2020-05-01", + "2019-05-01-preview", + "2018-07-01", + "2018-06-01-preview", + "2018-03-30-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2018-07-01", + "locationMappings": null, + "locations": [ + "Japan West", + "Japan East", + "East Asia", + "Southeast Asia", + "West Europe", + "North Europe", + "East US", + "West US", + "Australia East", + "Australia Southeast", + "East US 2", + "Central US", + "Brazil South", + "Central India", + "West India", + "South India", + "North Central US", + "South Central US", + "UK South", + "UK West", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "Germany West Central", + "Germany North", + "Switzerland West", + "Switzerland North", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central" + ], + "properties": null, + "resourceType": "mediaservices/streamingEndpoints", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-11-01", + "2022-08-01", + "2021-11-01", + "2021-06-01", + "2020-05-01", + "2019-05-01-preview", + "2018-07-01", + "2018-06-01-preview", + "2018-03-30-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2018-07-01", + "locationMappings": null, + "locations": [ + "Japan West", + "Japan East", + "East Asia", + "Southeast Asia", + "West Europe", + "North Europe", + "East US", + "West US", + "Australia East", + "Australia Southeast", + "East US 2", + "Central US", + "Brazil South", + "Central India", + "West India", + "South India", + "North Central US", + "South Central US", + "UK South", + "UK West", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "Germany West Central", + "Germany North", + "Switzerland West", + "Switzerland North", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central" + ], + "properties": null, + "resourceType": "mediaservices/liveEvents", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-11-01", + "2022-08-01", + "2021-11-01", + "2021-06-01", + "2020-05-01", + "2019-05-01-preview", + "2018-07-01", + "2018-06-01-preview", + "2018-03-30-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2018-07-01", + "locationMappings": null, + "locations": [ + "Japan West", + "Japan East", + "East Asia", + "Southeast Asia", + "West Europe", + "North Europe", + "East US", + "West US", + "Australia East", + "Australia Southeast", + "East US 2", + "Central US", + "Brazil South", + "Central India", + "West India", + "South India", + "North Central US", + "South Central US", + "UK South", + "UK West", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "Germany West Central", + "Germany North", + "Switzerland West", + "Switzerland North", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central" + ], + "properties": null, + "resourceType": "mediaservices/liveEvents/liveOutputs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-11-01", + "2022-08-01", + "2021-11-01", + "2021-06-01", + "2020-05-01", + "2019-05-01-preview", + "2018-07-01", + "2018-06-01-preview", + "2018-03-30-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2018-07-01", + "locationMappings": null, + "locations": [ + "Japan West", + "Japan East", + "East Asia", + "Southeast Asia", + "West Europe", + "North Europe", + "East US", + "West US", + "Australia East", + "Australia Southeast", + "East US 2", + "Central US", + "Brazil South", + "Central India", + "West India", + "South India", + "North Central US", + "South Central US", + "UK South", + "UK West", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "Germany West Central", + "Germany North", + "Switzerland West", + "Switzerland North", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central" + ], + "properties": null, + "resourceType": "mediaservices/streamingEndpointOperations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-11-01", + "2022-08-01", + "2021-11-01", + "2021-06-01", + "2020-05-01", + "2019-05-01-preview", + "2018-07-01", + "2018-06-01-preview", + "2018-03-30-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2018-07-01", + "locationMappings": null, + "locations": [ + "Japan West", + "Japan East", + "East Asia", + "Southeast Asia", + "West Europe", + "North Europe", + "East US", + "West US", + "Australia East", + "Australia Southeast", + "East US 2", + "Central US", + "Brazil South", + "Central India", + "West India", + "South India", + "North Central US", + "South Central US", + "UK South", + "UK West", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "Germany West Central", + "Germany North", + "Switzerland West", + "Switzerland North", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central" + ], + "properties": null, + "resourceType": "mediaservices/liveEventOperations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-11-01", + "2022-08-01", + "2021-11-01", + "2021-06-01", + "2020-05-01", + "2019-05-01-preview", + "2018-07-01", + "2018-06-01-preview", + "2018-03-30-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2018-07-01", + "locationMappings": null, + "locations": [ + "Japan West", + "Japan East", + "East Asia", + "Southeast Asia", + "West Europe", + "North Europe", + "East US", + "West US", + "Australia East", + "Australia Southeast", + "East US 2", + "Central US", + "Brazil South", + "Central India", + "West India", + "South India", + "North Central US", + "South Central US", + "UK South", + "UK West", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "Germany West Central", + "Germany North", + "Switzerland West", + "Switzerland North", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central" + ], + "properties": null, + "resourceType": "mediaservices/liveOutputOperations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2021-11-01", + "2021-06-01", + "2021-05-01", + "2020-05-01" + ], + "capabilities": "None", + "defaultApiVersion": "2020-05-01", + "locationMappings": null, + "locations": [ + "Japan West", + "Japan East", + "East Asia", + "Southeast Asia", + "West Europe", + "North Europe", + "East US", + "West US", + "Australia East", + "Australia Southeast", + "East US 2", + "Central US", + "Brazil South", + "Central India", + "West India", + "South India", + "North Central US", + "South Central US", + "UK South", + "UK West", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "Germany West Central", + "Germany North", + "Switzerland West", + "Switzerland North", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central" + ], + "properties": null, + "resourceType": "mediaservices/privateEndpointConnectionProxies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2021-11-01", + "2021-06-01", + "2021-05-01", + "2020-05-01" + ], + "capabilities": "None", + "defaultApiVersion": "2020-05-01", + "locationMappings": null, + "locations": [ + "Japan West", + "Japan East", + "East Asia", + "Southeast Asia", + "West Europe", + "North Europe", + "East US", + "West US", + "Australia East", + "Australia Southeast", + "East US 2", + "Central US", + "Brazil South", + "Central India", + "West India", + "South India", + "North Central US", + "South Central US", + "UK South", + "UK West", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "Germany West Central", + "Germany North", + "Switzerland West", + "Switzerland North", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central" + ], + "properties": null, + "resourceType": "mediaservices/privateEndpointConnections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2021-11-01", + "2021-06-01", + "2021-05-01", + "2020-05-01" + ], + "capabilities": "None", + "defaultApiVersion": "2020-05-01", + "locationMappings": null, + "locations": [ + "Japan West", + "Japan East", + "East Asia", + "Southeast Asia", + "West Europe", + "North Europe", + "East US", + "West US", + "Australia East", + "Australia Southeast", + "East US 2", + "Central US", + "Brazil South", + "Central India", + "West India", + "South India", + "North Central US", + "South Central US", + "UK South", + "UK West", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "Germany West Central", + "Germany North", + "Switzerland West", + "Switzerland North", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central" + ], + "properties": null, + "resourceType": "mediaservices/privateEndpointConnectionOperations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2021-11-01", + "2021-06-01", + "2021-05-01", + "2020-05-01", + "2018-07-01", + "2018-06-01-preview", + "2018-03-30-preview", + "2015-10-01", + "2015-04-01" + ], + "capabilities": "None", + "defaultApiVersion": "2021-11-01", + "locationMappings": null, + "locations": [ + "Japan West", + "Japan East", + "East Asia", + "Southeast Asia", + "West Europe", + "North Europe", + "East US", + "West US", + "Australia East", + "Australia Southeast", + "East US 2", + "Central US", + "Brazil South", + "Central India", + "West India", + "South India", + "North Central US", + "South Central US", + "UK South", + "UK West", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "Germany West Central", + "Germany North", + "Switzerland West", + "Switzerland North", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central" + ], + "properties": null, + "resourceType": "locations/mediaServicesOperationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2021-11-01", + "2021-06-01", + "2021-05-01", + "2020-05-01", + "2018-07-01", + "2018-06-01-preview", + "2018-03-30-preview", + "2015-10-01", + "2015-04-01" + ], + "capabilities": "None", + "defaultApiVersion": "2021-11-01", + "locationMappings": null, + "locations": [ + "Japan West", + "Japan East", + "East Asia", + "Southeast Asia", + "West Europe", + "North Europe", + "East US", + "West US", + "Australia East", + "Australia Southeast", + "East US 2", + "Central US", + "Brazil South", + "Central India", + "West India", + "South India", + "North Central US", + "South Central US", + "UK South", + "UK West", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "Germany West Central", + "Germany North", + "Switzerland West", + "Switzerland North", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central" + ], + "properties": null, + "resourceType": "locations/mediaServicesOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-08-01", + "2021-11-01", + "2021-06-01", + "2020-05-01", + "2018-07-01" + ], + "capabilities": "None", + "defaultApiVersion": "2018-07-01", + "locationMappings": null, + "locations": [ + "Japan West", + "Japan East", + "East Asia", + "Southeast Asia", + "West Europe", + "North Europe", + "East US", + "West US", + "Australia East", + "Australia Southeast", + "East US 2", + "Central US", + "Brazil South", + "Central India", + "West India", + "South India", + "North Central US", + "South Central US", + "UK South", + "UK West", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "Germany West Central", + "Germany North", + "Switzerland West", + "Switzerland North", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central" + ], + "properties": null, + "resourceType": "mediaservices/assets/assetFilters", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2022-08-01", + "2021-11-01", + "2021-06-01", + "2020-05-01", + "2018-07-01" + ], + "capabilities": "None", + "defaultApiVersion": "2018-07-01", + "locationMappings": null, + "locations": [ + "Japan West", + "Japan East", + "East Asia", + "Southeast Asia", + "West Europe", + "North Europe", + "East US", + "West US", + "Australia East", + "Australia Southeast", + "East US 2", + "Central US", + "Brazil South", + "Central India", + "West India", + "South India", + "North Central US", + "South Central US", + "UK South", + "UK West", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "Germany West Central", + "Germany North", + "Switzerland West", + "Switzerland North", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central" + ], + "properties": null, + "resourceType": "mediaservices/accountFilters", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2021-11-01-preview", + "2021-11-01", + "2021-06-01", + "2021-05-01-privatepreview", + "2021-05-01-preview", + "2021-05-01", + "2020-05-01", + "2018-07-01", + "2018-06-01-preview", + "2018-03-30-preview", + "2018-02-05", + "2016-05-01-preview", + "2015-10-01", + "2015-04-01" + ], + "capabilities": "None", + "defaultApiVersion": "2020-05-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2015-10-01", + "2015-04-01" + ], + "capabilities": "None", + "defaultApiVersion": "2015-10-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checknameavailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2021-11-01-preview", + "2021-11-01", + "2021-06-01", + "2021-05-01-privatepreview", + "2021-05-01-preview", + "2021-05-01", + "2020-05-01", + "2018-07-01", + "2018-06-01-preview", + "2018-03-30-preview", + "2016-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2018-07-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01", + "2021-11-01-preview", + "2021-11-01", + "2021-06-01", + "2021-05-01-privatepreview", + "2021-05-01-preview", + "2021-05-01", + "2020-05-01", + "2018-07-01", + "2018-06-01-preview", + "2018-03-30-preview", + "2016-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2020-05-01", + "locationMappings": null, + "locations": [ + "Japan West", + "Japan East", + "East Asia", + "Southeast Asia", + "West Europe", + "North Europe", + "East US", + "West US", + "Australia East", + "Australia Southeast", + "East US 2", + "Central US", + "Brazil South", + "Central India", + "West India", + "South India", + "North Central US", + "South Central US", + "UK South", + "UK West", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "Germany West Central", + "Germany North", + "Switzerland West", + "Switzerland North", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central" + ], + "properties": null, + "resourceType": "locations/checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-11-01-preview", + "locationMappings": null, + "locations": [ + "Southeast Asia", + "Australia East", + "North Europe", + "West Europe", + "Central India", + "Japan East", + "Korea Central", + "East US 2", + "West US 2" + ], + "properties": null, + "resourceType": "locations/videoAnalyzerOperationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-11-01-preview", + "locationMappings": null, + "locations": [ + "Southeast Asia", + "Australia East", + "North Europe", + "West Europe", + "Central India", + "Japan East", + "Korea Central", + "East US 2", + "West US 2" + ], + "properties": null, + "resourceType": "locations/videoAnalyzerOperationResults", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "33903a03-0696-45c8-bdad-a20d82965fe1", + "roleDefinitionId": "38d5b12b-fe07-4dec-8690-29cbf53dc1b5" + }, + { + "applicationId": "3016d0ce-47cc-4005-b11d-5fcabb1b643d" + }, + { + "applicationId": "eea619ad-603a-4b03-a386-860fcc7410d1" + }, + { + "applicationId": "45f92819-d76e-42aa-872c-abf0a3ef4ec6" + }, + { + "applicationId": "f77c2a8f-8a0a-4776-8e0a-bcb2549610ca", + "managedByAuthorization": { + "additionalAuthorizations": [ + { + "applicationId": "33903a03-0696-45c8-bdad-a20d82965fe1", + "roleDefinitionId": "1e86f807-6ec0-40b3-8b5f-686b7e43a0a2" + } + ] + }, + "managedByRoleDefinitionId": "1e86f807-6ec0-40b3-8b5f-686b7e43a0a2", + "roleDefinitionId": "8010f77f-bee6-484b-bce2-444be3761632" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Metaverse", + "namespace": "Microsoft.Metaverse", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US" + ], + "properties": null, + "resourceType": "locations/operationStatuses", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "e3bfd6ac-eace-4438-9dc1-eed439e738de", + "roleDefinitionId": "e88f4159-1d71-4b12-8ef0-38c039cb051e" + }, + { + "applicationId": "51df634f-ddb4-4901-8a2d-52f6393a796b", + "roleDefinitionId": "d7568dc2-2265-41f7-9c0f-1e9c7862ca62" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Migrate", + "namespace": "Microsoft.Migrate", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-06-01-preview", + "2020-05-01", + "2019-06-01", + "2018-09-01-preview" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2018-09-01-preview", + "locationMappings": null, + "locations": [ + "Central US", + "East Asia", + "Southeast Asia", + "North Europe", + "West Europe", + "West US 2", + "Australia Southeast", + "UK South", + "UK West", + "Canada Central", + "Central India", + "South India", + "Japan East", + "Japan West", + "Brazil South", + "Korea South", + "Korea Central", + "France Central", + "Switzerland North", + "Australia East", + "UAE North", + "South Africa North", + "Germany West Central", + "Norway East", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central" + ], + "properties": null, + "resourceType": "migrateprojects", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview", + "2023-03-03", + "2022-02-02-preview", + "2020-05-01-preview", + "2020-01-01", + "2019-10-01", + "2019-05-01", + "2018-06-30-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "West Europe", + "UK South", + "UK West", + "North Europe", + "West US 2", + "Southeast Asia", + "East Asia", + "Central India", + "South India", + "Canada Central", + "Australia Southeast", + "Japan West", + "Japan East", + "Brazil South", + "Korea Central", + "Korea South", + "France Central", + "Switzerland North", + "Australia East", + "UAE North", + "South Africa North", + "Germany West Central", + "Norway East", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central" + ], + "properties": null, + "resourceType": "assessmentProjects", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2022-08-01", + "2021-08-01", + "2021-01-01", + "2019-10-01-preview" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-08-01", + "locationMappings": null, + "locations": [ + "East US 2", + "North Europe", + "UK South", + "Southeast Asia", + "Australia East", + "Japan East", + "Brazil South", + "Norway East", + "Switzerland North", + "France Central", + "Central India", + "Korea Central", + "UAE North", + "Germany West Central", + "Canada Central", + "Qatar Central", + "Sweden Central", + "Poland Central" + ], + "properties": null, + "resourceType": "moveCollections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-10-01", + "2019-05-01", + "2018-06-30-preview", + "2018-02-02", + "2017-11-11-preview", + "2017-09-25-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview", + "2023-03-03", + "2022-02-02-preview", + "2020-05-01-preview", + "2020-01-01", + "2019-10-01", + "2019-05-01", + "2018-06-30-preview", + "2018-02-02", + "2017-11-11-preview", + "2017-09-25-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2022-08-01", + "2021-08-01", + "2021-01-01", + "2019-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2022-08-01", + "locationMappings": null, + "locations": [ + "East US 2", + "North Europe", + "UK South", + "Southeast Asia", + "Australia East", + "Japan East", + "Brazil South", + "Norway East", + "Switzerland North", + "France Central", + "Central India", + "Korea Central", + "UAE North", + "Germany West Central", + "Canada Central", + "Qatar Central", + "Sweden Central", + "Poland Central" + ], + "properties": null, + "resourceType": "locations/rmsOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-05-01-preview" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-05-01-preview", + "locationMappings": null, + "locations": [ + "Korea South", + "UK West", + "West Europe", + "Canada Central", + "Switzerland North", + "UAE North", + "East Asia", + "Norway East", + "South Africa North", + "UK South", + "South India", + "Korea Central", + "Australia Southeast", + "Central India", + "Brazil South", + "France Central", + "Japan East", + "Japan West", + "Australia East", + "Southeast Asia", + "North Europe", + "Sweden Central", + "Switzerland West" + ], + "properties": null, + "resourceType": "modernizeProjects", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "851682fd-88ff-44cb-ac39-8a2624c539b1", + "roleDefinitionId": "3d6e95bf-cf5e-4fb3-87cb-7228b7d2fcbd" + }, + { + "applicationId": "f77c2a8f-8a0a-4776-8e0a-bcb2549610ca", + "managedByAuthorization": { + "additionalAuthorizations": [ + { + "applicationId": "851682fd-88ff-44cb-ac39-8a2624c539b1", + "roleDefinitionId": "1e86f807-6ec0-40b3-8b5f-686b7e43a0a2" + } + ] + }, + "managedByRoleDefinitionId": "1e86f807-6ec0-40b3-8b5f-686b7e43a0a2", + "roleDefinitionId": "8010f77f-bee6-484b-bce2-444be3761632" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Mission", + "namespace": "Microsoft.Mission", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "Locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "North Central US", + "East US", + "West US", + "West US 2", + "South Central US", + "West US 3", + "East US 2", + "Central US", + "Canada Central", + "Canada East" + ], + "properties": null, + "resourceType": "Locations/OperationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "Operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-02-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 3", + "East US 2", + "Central US", + "Canada Central", + "Canada East", + "West US 2", + "South Central US", + "North Central US", + "West US", + "East US" + ], + "properties": null, + "resourceType": "virtualEnclaves", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-02-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 3", + "East US 2", + "Central US", + "Canada Central", + "Canada East", + "West US 2", + "South Central US", + "North Central US", + "West US", + "East US" + ], + "properties": null, + "resourceType": "communities", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-02-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 3", + "East US 2", + "Central US", + "Canada Central", + "Canada East", + "West US 2", + "South Central US", + "North Central US", + "West US", + "East US" + ], + "properties": null, + "resourceType": "virtualEnclaves/workloads", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-02-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 3", + "East US 2", + "Central US", + "Canada Central", + "Canada East", + "West US 2", + "South Central US", + "North Central US", + "West US", + "East US" + ], + "properties": null, + "resourceType": "catalogs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-02-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "West US 3", + "East US 2", + "Central US", + "Canada Central", + "Canada East", + "South Central US", + "North Central US", + "West US", + "East US" + ], + "properties": null, + "resourceType": "internalConnections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-02-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 3", + "East US 2", + "Central US", + "Canada Central", + "Canada East", + "West US 2", + "South Central US", + "North Central US", + "West US", + "East US" + ], + "properties": null, + "resourceType": "virtualEnclaves/endpoints", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-02-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "West US 3", + "East US 2", + "Central US", + "Canada Central", + "Canada East", + "South Central US", + "North Central US", + "West US", + "East US" + ], + "properties": null, + "resourceType": "externalConnections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "96636591-1bce-4eef-b8f9-939c0713889f", + "roleDefinitionId": "b67ee066-e058-4ddb-92bc-83cdd74bc38a" + }, + { + "applicationId": "c7ddd9b4-5172-4e28-bd29-1e0792947d18", + "roleDefinitionId": "b67ee066-e058-4ddb-92bc-83cdd74bc38a" + }, + { + "applicationId": "af7c72b5-1a61-4bf3-958b-4e51e1ddfbe8", + "roleDefinitionId": "b67ee066-e058-4ddb-92bc-83cdd74bc38a" + }, + { + "applicationId": "a15bc1de-f777-408f-9d2b-a27ed19c72ba" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.MixedReality", + "namespace": "Microsoft.MixedReality", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2021-03-01-preview", + "2021-01-01", + "2020-05-01", + "2020-04-06-preview", + "2019-12-02-preview", + "2019-02-28-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-01-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2021-03-01-preview", + "2021-01-01", + "2020-05-01", + "2020-04-06-preview", + "2019-12-02-preview", + "2019-02-28-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "East US", + "East US 2", + "Japan East", + "Korea Central", + "North Europe", + "South Central US", + "Southeast Asia", + "Sweden Central", + "UK South", + "West Europe", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2021-03-01-preview", + "2021-01-01", + "2020-05-01", + "2020-04-06-preview", + "2019-12-02-preview", + "2019-02-28-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-01-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-03-01-preview", + "2021-01-01", + "2020-05-01", + "2019-12-02-preview", + "2019-02-28-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "East US", + "East US 2", + "Korea Central", + "North Europe", + "West Europe", + "South Central US", + "UK South", + "Southeast Asia", + "West US 2" + ], + "properties": null, + "resourceType": "spatialAnchorsAccounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-03-01-preview", + "2021-01-01", + "2020-04-06-preview", + "2019-12-02-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US 2", + "East US", + "Southeast Asia", + "West Europe", + "West US 2", + "Japan East", + "Australia East", + "North Europe", + "South Central US", + "UK South" + ], + "properties": null, + "resourceType": "remoteRenderingAccounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-03-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US 2", + "North Europe" + ], + "properties": null, + "resourceType": "objectAnchorsAccounts", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "54b9b9be-c365-4548-95c6-d2f2011f48f4", + "roleDefinitionId": "b27fa4bc-5127-4625-b3e5-5fc5eddbc24e" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.MobileNetwork", + "namespace": "Microsoft.MobileNetwork", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-06-01", + "2022-12-01-privatepreview", + "2022-11-01", + "2022-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-06-01", + "2022-12-01-privatepreview", + "2022-11-01", + "2022-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US EUAP", + "East US", + "East US 2 EUAP", + "UAE North", + "West Central US", + "West Europe" + ], + "properties": null, + "resourceType": "Locations/OperationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-06-01", + "2022-12-01-privatepreview", + "2022-11-01", + "2022-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-06-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-06-01", + "2022-12-01-privatepreview", + "2022-11-01", + "2022-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "packetCoreControlPlaneVersions", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "6cc6281b-5127-4e79-8f6f-8ca4b2276fda", + "roleDefinitionId": "45b45dc0-d912-4b6c-9a28-97453263b488" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.MobilePacketCore", + "namespace": "Microsoft.MobilePacketCore", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-15-preview", + "2023-04-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-15-preview", + "2023-04-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2 EUAP", + "West Central US" + ], + "properties": null, + "resourceType": "Locations/OperationStatuses", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "5bd9995f-b6f8-4c7a-a024-e8c5eab9c85d", + "roleDefinitionId": "162e0e01-6b40-41c8-b840-aa53dc2765df" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.ModSimWorkbench", + "namespace": "Microsoft.ModSimWorkbench", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West US 3", + "East US 2" + ], + "properties": null, + "resourceType": "Locations/operationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "Locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "be14bf7e-8ab4-49b0-9dc6-a0eddd6fa73e", + "roleDefinitionId": "803a038d-eff1-4489-a0c2-dbc204ebac3c" + }, + { + "applicationId": "e158b4a5-21ab-442e-ae73-2e19f4e7d763", + "managedByRoleDefinitionId": "50cd84fb-5e4c-4801-a8d2-4089ab77e6cd", + "roleDefinitionId": "e46476d4-e741-4936-a72b-b768349eed70" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Monitor", + "namespace": "Microsoft.Monitor", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-03", + "2021-06-03-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "Australia Southeast", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US 2", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "Southeast Asia", + "UAE North", + "UK South", + "West Central US", + "West Europe", + "West US", + "West US 2" + ], + "properties": null, + "resourceType": "accounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-03", + "2023-04-01", + "2021-06-03-preview", + "2021-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-06-01-preview", + "locationMappings": null, + "locations": [ + "North Central US", + "East US", + "Australia Central", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US 2", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "Southeast Asia", + "UAE North", + "UK South", + "West Central US", + "West Europe", + "West US", + "West US 2" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-03", + "2023-04-01", + "2021-06-03-preview", + "2021-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-03", + "2021-06-03-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "Australia Southeast", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US 2", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "Southeast Asia", + "UAE North", + "UK South", + "West Central US", + "West Europe", + "West US", + "West US 2" + ], + "properties": null, + "resourceType": "locations/operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-03", + "2021-06-03-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "Australia Southeast", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US 2", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "Southeast Asia", + "UAE North", + "UK South", + "West Central US", + "West Europe", + "West US", + "West US 2" + ], + "properties": null, + "resourceType": "locations/operationStatuses", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "12fb057d-b751-47cd-857c-f2934bb677b4", + "roleDefinitionId": "e4796bef-6b6d-4cbc-ba1e-27f1a308d860" + }, + { + "applicationId": "608f9929-9737-432e-860f-4e1c1821052f", + "roleDefinitionId": "3db66429-be98-4b0c-8ad6-20dc5cb960e4" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.NetApp", + "namespace": "Microsoft.NetApp", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2023-05-01", + "2023-03-01-preview", + "2023-03-01", + "2023-01-01-preview", + "2023-01-01", + "2022-11-01-preview", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-03-01", + "2022-01-01", + "2021-10-01", + "2021-08-01", + "2021-06-01", + "2021-04-01", + "2021-02-01", + "2020-12-01", + "2020-11-01", + "2020-10-01", + "2020-09-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-03-01", + "2020-02-01", + "2019-11-01", + "2019-10-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-05-01", + "2017-08-15" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany North", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Qatar Central", + "South Central US", + "South Africa North", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE North", + "UAE Central", + "UK South", + "UK West", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "netAppAccounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2023-05-01", + "2023-03-01-preview", + "2023-03-01", + "2023-01-01-preview", + "2023-01-01", + "2022-11-01-preview", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-03-01", + "2022-01-01", + "2021-10-01", + "2021-08-01", + "2021-06-01", + "2021-04-01", + "2021-02-01", + "2020-12-01", + "2020-11-01", + "2020-10-01", + "2020-09-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany North", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Qatar Central", + "South Central US", + "South Africa North", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE North", + "UAE Central", + "UK South", + "UK West", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "netAppAccounts/snapshotPolicies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2023-05-01", + "2023-03-01-preview", + "2023-03-01", + "2023-01-01-preview", + "2023-01-01", + "2022-11-01-preview", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-03-01", + "2022-01-01", + "2021-10-01", + "2021-08-01", + "2021-06-01", + "2021-04-01", + "2021-02-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany North", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Qatar Central", + "South Central US", + "South Africa North", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE North", + "UAE Central", + "UK South", + "UK West", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "netAppAccounts/volumeGroups", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2023-05-01", + "2023-03-01-preview", + "2023-03-01", + "2023-01-01-preview", + "2023-01-01", + "2022-11-01-preview", + "2022-11-01", + "2022-09-01", + "2022-07-01-preview", + "2022-07-01", + "2022-05-01", + "2022-03-01", + "2022-01-01", + "2021-10-01", + "2021-08-01", + "2021-06-01", + "2021-04-01", + "2021-02-01", + "2020-12-01", + "2020-11-01", + "2020-10-01", + "2020-09-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-03-01", + "2020-02-01", + "2019-11-01", + "2019-10-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-05-01", + "2017-08-15" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany North", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Qatar Central", + "South Central US", + "South Africa North", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE North", + "UAE Central", + "UK South", + "UK West", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "netAppAccounts/capacityPools", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2023-05-01", + "2023-03-01-preview", + "2023-03-01", + "2023-01-01-preview", + "2023-01-01", + "2022-11-01-preview", + "2022-11-01", + "2022-09-01", + "2022-07-01-preview", + "2022-07-01", + "2022-05-01", + "2022-03-01", + "2022-01-01", + "2021-12-01-preview", + "2021-10-01", + "2021-08-01", + "2021-06-01", + "2021-04-01", + "2021-02-01", + "2020-12-01", + "2020-11-01", + "2020-10-01", + "2020-09-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-03-01", + "2020-02-01", + "2019-11-01", + "2019-10-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-05-01", + "2017-08-15" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany North", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Qatar Central", + "South Central US", + "South Africa North", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE North", + "UAE Central", + "UK South", + "UK West", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "netAppAccounts/capacityPools/volumes", + "zoneMappings": [ + { + "location": "Australia East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Central India", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East Asia", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Korea Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Norway East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Qatar Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "South Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Sweden Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Switzerland North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "UAE North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 3", + "zones": [ + "1", + "2", + "3" + ] + } + ] + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-10-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-05-01", + "2017-08-15" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany North", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Qatar Central", + "South Central US", + "South Africa North", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE North", + "UAE Central", + "UK South", + "UK West", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "netAppAccounts/capacityPools/volumes/mountTargets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2023-05-01", + "2023-03-01-preview", + "2023-03-01", + "2023-01-01-preview", + "2023-01-01", + "2022-11-01-preview", + "2022-11-01", + "2022-09-01", + "2022-07-01-preview", + "2022-07-01", + "2022-05-01", + "2022-03-01", + "2022-01-01", + "2021-10-01", + "2021-08-01", + "2021-06-01", + "2021-04-01", + "2021-02-01", + "2020-12-01", + "2020-11-01", + "2020-10-01", + "2020-09-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-03-01", + "2020-02-01", + "2019-11-01", + "2019-10-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-05-01", + "2017-08-15" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany North", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Qatar Central", + "South Central US", + "South Africa North", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE North", + "UAE Central", + "UK South", + "UK West", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "netAppAccounts/capacityPools/volumes/snapshots", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2023-05-01", + "2023-03-01-preview", + "2023-03-01", + "2023-01-01-preview", + "2023-01-01", + "2022-11-01-preview", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-03-01", + "2022-01-01", + "2021-10-01", + "2021-08-01", + "2021-06-01", + "2021-04-01", + "2021-02-01", + "2020-12-01", + "2020-11-01", + "2020-10-01", + "2020-09-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-03-01", + "2020-02-01", + "2019-11-01", + "2019-10-01", + "2019-08-01", + "2019-07-15-preview", + "2019-07-01", + "2019-06-01", + "2019-05-01", + "2017-08-15" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany North", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2023-05-01", + "2023-03-01-preview", + "2023-03-01", + "2023-01-01-preview", + "2023-01-01", + "2022-11-01-preview", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-03-01", + "2022-01-01", + "2021-10-01", + "2021-08-01", + "2021-06-01", + "2021-04-01", + "2021-02-01", + "2020-12-01", + "2020-11-01", + "2020-10-01", + "2020-09-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-03-01", + "2020-02-01", + "2019-11-01", + "2019-10-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-05-01", + "2017-08-15" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany North", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Qatar Central", + "South Central US", + "South Africa North", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE North", + "UAE Central", + "UK South", + "UK West", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2023-05-01", + "2023-03-01-preview", + "2023-03-01", + "2023-01-01-preview", + "2023-01-01", + "2022-11-01-preview", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-03-01", + "2022-01-01", + "2021-10-01", + "2021-08-01", + "2021-06-01", + "2021-04-01", + "2021-02-01", + "2020-12-01", + "2020-11-01", + "2020-10-01", + "2020-09-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-03-01", + "2020-02-01", + "2019-11-01", + "2019-10-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-05-01", + "2017-08-15" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany North", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Qatar Central", + "South Central US", + "South Africa North", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE North", + "UAE Central", + "UK South", + "UK West", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/checkFilePathAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2023-05-01", + "2023-03-01-preview", + "2023-03-01", + "2023-01-01-preview", + "2023-01-01", + "2022-11-01-preview", + "2022-11-01", + "2022-09-01", + "2022-07-01-preview", + "2022-07-01", + "2022-05-01", + "2022-03-01", + "2022-01-01", + "2021-12-01-preview", + "2021-10-01", + "2021-08-01", + "2021-06-01", + "2021-04-01", + "2021-02-01", + "2020-12-01", + "2020-11-01", + "2020-10-01", + "2020-09-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-03-01", + "2020-02-01", + "2019-11-01", + "2019-10-01", + "2019-08-01", + "2019-07-15-preview", + "2019-07-01", + "2019-06-01", + "2019-05-01", + "2017-08-15" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany North", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West US", + "West US (Stage)", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2023-05-01", + "2023-03-01-preview", + "2023-03-01", + "2023-01-01-preview", + "2023-01-01", + "2022-11-01-preview", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-03-01", + "2022-01-01", + "2021-10-01", + "2021-08-01", + "2021-06-01", + "2021-04-01", + "2021-02-01", + "2020-12-01", + "2020-11-01", + "2020-10-01", + "2020-09-01", + "2020-08-01", + "2020-07-01", + "2020-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany North", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Qatar Central", + "South Central US", + "South Africa North", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE North", + "UAE Central", + "UK South", + "UK West", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/checkQuotaAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2023-05-01", + "2023-03-01-preview", + "2023-03-01", + "2023-01-01-preview", + "2023-01-01", + "2022-11-01-preview", + "2022-11-01", + "2021-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany North", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Qatar Central", + "South Central US", + "South Africa North", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE North", + "UAE Central", + "UK South", + "UK West", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/queryNetworkSiblingSet", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2023-05-01", + "2023-03-01-preview", + "2023-03-01", + "2023-01-01-preview", + "2023-01-01", + "2022-11-01-preview", + "2022-11-01", + "2021-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany North", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Qatar Central", + "South Central US", + "South Africa North", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE North", + "UAE Central", + "UK South", + "UK West", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/updateNetworkSiblingSet", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2023-05-01", + "2023-03-01-preview", + "2023-03-01", + "2023-01-01-preview", + "2023-01-01", + "2022-11-01-preview", + "2022-11-01", + "2021-12-01-preview", + "2021-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany North", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Qatar Central", + "South Central US", + "South Africa North", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE North", + "UAE Central", + "UK South", + "UK West", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/regionInfo", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany North", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Qatar Central", + "South Central US", + "South Africa North", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE North", + "UAE Central", + "UK South", + "UK West", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/regionInfos", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2023-05-01", + "2023-03-01-preview", + "2023-03-01", + "2023-01-01-preview", + "2023-01-01", + "2022-11-01-preview", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-03-01", + "2022-01-01", + "2021-10-01", + "2021-08-01", + "2021-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany North", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Qatar Central", + "South Central US", + "South Africa North", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE North", + "UAE Central", + "UK South", + "UK West", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/QuotaLimits", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2023-05-01", + "2023-03-01-preview", + "2023-03-01", + "2023-01-01-preview", + "2023-01-01", + "2022-11-01-preview", + "2022-11-01", + "2022-09-01", + "2022-07-01", + "2022-05-01", + "2022-03-01", + "2022-01-01", + "2021-12-01-preview", + "2021-10-01", + "2021-08-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany North", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Qatar Central", + "South Central US", + "South Africa North", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE North", + "UAE Central", + "UK South", + "UK West", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/CheckInventory", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2023-05-01", + "2023-03-01-preview", + "2023-03-01", + "2023-01-01-preview", + "2023-01-01", + "2022-11-01-preview", + "2022-11-01", + "2022-09-01", + "2022-07-01-preview", + "2022-07-01", + "2022-05-01", + "2022-03-01", + "2022-01-01", + "2021-12-01-preview", + "2021-10-01", + "2021-08-01", + "2021-06-01", + "2021-04-01", + "2021-02-01", + "2020-12-01", + "2020-11-01", + "2020-10-01", + "2020-09-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-03-01", + "2020-02-01", + "2019-11-01", + "2019-10-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-05-01", + "2017-08-15" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany North", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Qatar Central", + "South Central US", + "South Africa North", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE North", + "UAE Central", + "UK South", + "UK West", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/operationResults", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "e28ab71c-110d-4506-b7af-a5fa610e016c", + "roleDefinitionId": "2454cc04-444b-4c7f-94f2-9d896c4e395a" + }, + { + "applicationId": "fd1518e9-beb6-446d-8bd7-d6f651a899d2", + "roleDefinitionId": "2454cc04-444b-4c7f-94f2-9d896c4e395a" + }, + { + "applicationId": "f77c2a8f-8a0a-4776-8e0a-bcb2549610ca", + "managedByAuthorization": { + "additionalAuthorizations": [ + { + "applicationId": "e28ab71c-110d-4506-b7af-a5fa610e016c", + "roleDefinitionId": "1e86f807-6ec0-40b3-8b5f-686b7e43a0a2" + } + ] + }, + "managedByRoleDefinitionId": "1e86f807-6ec0-40b3-8b5f-686b7e43a0a2", + "roleDefinitionId": "8010f77f-bee6-484b-bce2-444be3761632" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.NetworkAnalytics", + "namespace": "Microsoft.NetworkAnalytics", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-11-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-11-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "West Europe", + "East US", + "UK South", + "Australia East", + "North Europe", + "South Central US", + "Canada Central" + ], + "properties": null, + "resourceType": "Locations/OperationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-11-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-31-preview", + "2022-11-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "registeredSubscriptions", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "05cf5e27-931d-47ad-826d-cb9028d8bd7a", + "roleDefinitionId": "a1ed4c58-2888-4d39-9359-a4186a62bba6" + }, + { + "applicationId": "3365d4ea-bb16-4bc9-86dd-f2c8cf6f1f56", + "roleDefinitionId": "a1ed4c58-2888-4d39-9359-a4186a62bba6" + }, + { + "applicationId": "319f651f-7ddb-4fc6-9857-7aef9250bd05", + "roleDefinitionId": "a1ed4c58-2888-4d39-9359-a4186a62bba6" + }, + { + "applicationId": "f77c2a8f-8a0a-4776-8e0a-bcb2549610ca", + "managedByAuthorization": { + "additionalAuthorizations": [ + { + "applicationId": "05cf5e27-931d-47ad-826d-cb9028d8bd7a", + "roleDefinitionId": "1e86f807-6ec0-40b3-8b5f-686b7e43a0a2" + } + ] + }, + "managedByRoleDefinitionId": "1e86f807-6ec0-40b3-8b5f-686b7e43a0a2", + "roleDefinitionId": "8010f77f-bee6-484b-bce2-444be3761632" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.NetworkCloud", + "namespace": "Microsoft.NetworkCloud", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-10-01-preview", + "2023-07-01", + "2023-05-01-preview", + "2022-12-12-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-07-01", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-05-01-preview", + "2022-12-12-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-07-01", + "locationMappings": null, + "locations": [ + "West US 3", + "East US", + "South Central US" + ], + "properties": null, + "resourceType": "locations/operationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-05-01-preview", + "2022-12-12-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-07-01", + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "West US 3" + ], + "properties": null, + "resourceType": "clusterManagers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-05-01-preview", + "2022-12-12-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-07-01", + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "West US 3" + ], + "properties": null, + "resourceType": "racks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-05-01-preview", + "2022-12-12-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-07-01", + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "West US 3" + ], + "properties": null, + "resourceType": "clusters", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-05-01-preview", + "2022-12-12-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-07-01", + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "West US 3" + ], + "properties": null, + "resourceType": "bareMetalMachines", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-05-01-preview", + "2022-12-12-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-07-01", + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "West US 3" + ], + "properties": null, + "resourceType": "virtualMachines", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-10-01-preview", + "2023-07-01", + "2023-05-01-preview", + "2022-12-12-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-07-01", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-12-12-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-12-12-preview", + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "West US 3" + ], + "properties": null, + "resourceType": "hybridAksClusters", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-05-01-preview", + "2022-12-12-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-07-01", + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "West US 3" + ], + "properties": null, + "resourceType": "rackSkus", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-05-01-preview", + "2022-12-12-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-07-01", + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "West US 3" + ], + "properties": null, + "resourceType": "cloudServicesNetworks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-05-01-preview", + "2022-12-12-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-07-01", + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "West US 3" + ], + "properties": null, + "resourceType": "l2Networks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-12-12-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-12-12-preview", + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "West US 3" + ], + "properties": null, + "resourceType": "defaultCniNetworks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-05-01-preview", + "2022-12-12-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-07-01", + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "West US 3" + ], + "properties": null, + "resourceType": "storageAppliances", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-05-01-preview", + "2022-12-12-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-07-01", + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "West US 3" + ], + "properties": null, + "resourceType": "trunkedNetworks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-05-01-preview", + "2022-12-12-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-07-01", + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "West US 3" + ], + "properties": null, + "resourceType": "l3Networks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-30-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2022-09-30-preview", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "clusters/admissions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-05-01-preview", + "2022-12-12-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-07-01", + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "West US 3" + ], + "properties": null, + "resourceType": "clusters/metricsConfigurations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-05-01-preview", + "2022-12-12-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-07-01", + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "West US 3" + ], + "properties": null, + "resourceType": "virtualMachines/consoles", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-05-01-preview", + "2022-12-12-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-07-01", + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "West US 3" + ], + "properties": null, + "resourceType": "clusters/bareMetalMachineKeySets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-05-01-preview", + "2022-12-12-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-07-01", + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "West US 3" + ], + "properties": null, + "resourceType": "clusters/bmcKeySets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-05-01-preview", + "2022-12-12-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-07-01", + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "West US 3" + ], + "properties": null, + "resourceType": "volumes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-10-01-preview", + "2023-07-01", + "2023-05-01-preview", + "2022-12-12-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-07-01", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "registeredSubscriptions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-05-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-07-01", + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "West US 3" + ], + "properties": null, + "resourceType": "kubernetesClusters", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2023-05-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-07-01", + "locationMappings": null, + "locations": [ + "East US", + "South Central US", + "West US 3" + ], + "properties": null, + "resourceType": "kubernetesClusters/agentPools", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "328fd23b-de6e-462c-9433-e207470a5727", + "roleDefinitionId": "79e29e06-4056-41e5-a6b2-959f1f47747e" + }, + { + "applicationId": "2cf9eb86-36b5-49dc-86ae-9a63135dfa8c", + "roleDefinitionId": "13ba9ab4-19f0-4804-adc4-14ece36cc7a1" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.NetworkFunction", + "namespace": "Microsoft.NetworkFunction", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-11-01", + "2022-08-01", + "2022-05-01", + "2021-09-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-11-01", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea South", + "France Central", + "France South", + "Australia Central", + "Australia Central 2", + "South Africa West", + "South Africa North", + "UAE North", + "Switzerland North", + "Switzerland West", + "Germany North", + "Norway East", + "Norway West", + "Brazil Southeast", + "West US 3", + "Sweden Central" + ], + "properties": null, + "resourceType": "azureTrafficCollectors", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-11-01", + "2022-08-01", + "2022-05-01", + "2021-09-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-11-01", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea South", + "France Central", + "France South", + "Australia Central", + "Australia Central 2", + "South Africa West", + "South Africa North", + "UAE North", + "Switzerland North", + "Switzerland West", + "Germany North", + "Norway East", + "Norway West", + "Brazil Southeast", + "West US 3", + "Sweden Central" + ], + "properties": null, + "resourceType": "azureTrafficCollectors/collectorPolicies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-08-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2021-08-01-preview", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "West Central US", + "North Central US", + "North Europe", + "Southeast Asia", + "Korea Central", + "West Europe" + ], + "properties": null, + "resourceType": "meshVpns", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-08-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2021-08-01-preview", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "West Central US", + "North Central US", + "North Europe", + "Southeast Asia", + "Korea Central", + "West Europe" + ], + "properties": null, + "resourceType": "meshVpns/connectionPolicies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-08-01-preview", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "West Central US", + "North Central US", + "North Europe", + "Southeast Asia", + "Korea Central", + "West Europe" + ], + "properties": null, + "resourceType": "meshVpns/privateEndpointConnections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-08-01-preview", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "West Central US", + "North Central US", + "North Europe", + "Southeast Asia", + "Korea Central", + "West Europe" + ], + "properties": null, + "resourceType": "meshVpns/privateEndpointConnectionProxies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-11-01", + "2022-08-01", + "2022-05-01", + "2021-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea South", + "France Central", + "France South", + "Australia Central", + "Australia Central 2", + "South Africa West", + "South Africa North", + "UAE North", + "Switzerland North", + "Switzerland West", + "Germany North", + "Norway East", + "Norway West", + "Brazil Southeast", + "West US 3", + "Sweden Central" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-11-01", + "2022-08-01", + "2022-05-01", + "2021-09-01-preview", + "2021-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-11-01", + "2022-08-01", + "2022-05-01", + "2021-09-01-preview", + "2021-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations/nfvOperations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-11-01", + "2022-08-01", + "2022-05-01", + "2021-09-01-preview", + "2021-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations/nfvOperationResults", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "3caf7e80-c1dc-4cbc-811c-d281c9d5e45c", + "roleDefinitionId": "8cbd263b-bab7-4bc3-a158-19543aabc9eb" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.NotificationHubs", + "namespace": "Microsoft.NotificationHubs", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview", + "2020-01-01-preview", + "2017-04-01", + "2016-03-01", + "2014-09-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "JIO India West", + "Qatar Central", + "UK South", + "West US 2", + "West US", + "UK West", + "Southeast Asia", + "South Central US", + "North Central US", + "Germany West Central", + "East US 2", + "Central US", + "Central India", + "South India", + "West India", + "Canada East", + "Canada Central", + "West Europe", + "Australia Central 2", + "Australia Central", + "Australia East", + "Australia Southeast", + "North Europe", + "East US", + "Japan West", + "Japan East", + "Brazil South", + "West Central US", + "East Asia", + "West US 3", + "South Africa North", + "Sweden Central", + "France Central", + "Norway East", + "Korea Central", + "Poland Central" + ], + "properties": null, + "resourceType": "namespaces", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview", + "2020-01-01-preview", + "2017-04-01", + "2016-03-01", + "2014-09-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "JIO India West", + "Qatar Central", + "UK South", + "West US 2", + "West US", + "UK West", + "Southeast Asia", + "South Central US", + "North Central US", + "Germany West Central", + "East US 2", + "Central US", + "Central India", + "South India", + "West India", + "Canada East", + "Canada Central", + "West Europe", + "Australia Central 2", + "Australia Central", + "Australia East", + "Australia Southeast", + "North Europe", + "East US", + "Japan West", + "Japan East", + "Brazil South", + "West Central US", + "East Asia", + "West US 3", + "South Africa North", + "Sweden Central", + "France Central", + "Norway East", + "Korea Central", + "Poland Central" + ], + "properties": null, + "resourceType": "namespaces/notificationHubs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview", + "2020-01-01-preview", + "2017-04-01", + "2016-03-01", + "2014-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "JIO India West", + "Qatar Central", + "West US 3", + "South Africa North", + "Sweden Central", + "France Central", + "Norway East", + "Korea Central", + "Poland Central", + "UK South", + "West US 2", + "West US", + "UK West", + "Southeast Asia", + "South Central US", + "North Central US", + "Germany West Central", + "East US 2", + "Central US", + "Central India", + "South India", + "West India", + "Canada East", + "Canada Central", + "West Europe", + "Australia Central 2", + "Australia Central", + "Australia East", + "Australia Southeast", + "North Europe", + "East US", + "Japan West", + "Japan East", + "Brazil South", + "West Central US", + "East Asia" + ], + "properties": null, + "resourceType": "checkNamespaceAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-04-01", + "2016-03-01", + "2014-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Australia Southeast", + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "West US 3", + "North Central US", + "South Central US", + "West Central US", + "East Asia", + "Southeast Asia", + "Brazil South", + "Japan East", + "Japan West", + "JIO India West", + "North Europe", + "West Europe", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "UK West", + "UK South", + "Germany West Central", + "Australia Central", + "Australia Central 2", + "South Africa North", + "Sweden Central", + "France Central", + "Norway East", + "Korea Central", + "Poland Central", + "Qatar Central" + ], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview", + "2020-01-01-preview", + "2017-04-01", + "2016-03-01", + "2014-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "JIO India West", + "Qatar Central", + "West US 3", + "South Africa North", + "Sweden Central", + "France Central", + "Norway East", + "Korea Central", + "Poland Central", + "UK South", + "West US 2", + "West US", + "UK West", + "Southeast Asia", + "South Central US", + "North Central US", + "Germany West Central", + "East US 2", + "Central US", + "Central India", + "South India", + "West India", + "Canada East", + "Canada Central", + "West Europe", + "Australia Central 2", + "Australia Central", + "Australia East", + "Australia Southeast", + "North Europe", + "East US", + "Japan West", + "Japan East", + "Brazil South", + "West Central US", + "East Asia" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorization": { + "applicationId": "35c7baeb-cfb0-4f61-8fe7-92a6c6717e4f", + "roleDefinitionId": "98fb253d-e6d2-4599-ae47-56c448825f30" + }, + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Nutanix", + "namespace": "Microsoft.Nutanix", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-06-01-preview", + "2020-06-01" + ], + "capabilities": "None", + "defaultApiVersion": "2020-06-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-06-01-preview", + "2020-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.ObjectStore", + "namespace": "Microsoft.ObjectStore", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-09-01-preview", + "2019-06-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "osNamespaces", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "728a93e3-065d-4678-93b1-3cc281223341", + "roleDefinitionId": "b9967bf7-a345-4af8-95f0-49916f760fc6" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.OffAzure", + "namespace": "Microsoft.OffAzure", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-27", + "2020-09-09-preview", + "2020-08-01-preview", + "2020-07-10", + "2020-01-01-preview", + "2020-01-01", + "2019-06-06", + "2019-05-01-preview", + "2018-05-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "West Europe", + "UK South", + "UK West", + "North Europe", + "West US 2", + "Southeast Asia", + "East Asia", + "Central India", + "South India", + "Canada Central", + "Australia Southeast", + "Japan West", + "Japan East", + "Brazil South", + "Korea Central", + "Korea South", + "France Central", + "Switzerland North", + "Australia East", + "UAE North", + "South Africa North", + "Germany West Central", + "Norway East", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central" + ], + "properties": null, + "resourceType": "VMwareSites", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-27", + "2020-08-01-preview", + "2020-01-01", + "2019-06-06", + "2018-05-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "West Europe", + "UK South", + "UK West", + "North Europe", + "West US 2", + "Southeast Asia", + "East Asia", + "Central India", + "South India", + "Canada Central", + "Australia Southeast", + "Japan West", + "Japan East", + "Brazil South", + "Korea Central", + "Korea South", + "France Central", + "Switzerland North", + "Australia East", + "UAE North", + "South Africa North", + "Germany West Central", + "Norway East", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central" + ], + "properties": null, + "resourceType": "HyperVSites", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-27", + "2020-09-09-preview", + "2020-08-01-preview", + "2020-01-01-preview", + "2019-05-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "West Europe", + "UK South", + "UK West", + "North Europe", + "West US 2", + "Southeast Asia", + "East Asia", + "Central India", + "South India", + "Canada Central", + "Australia Southeast", + "Japan West", + "Japan East", + "Brazil South", + "Korea Central", + "Korea South", + "France Central", + "Switzerland North", + "Australia East", + "UAE North", + "South Africa North", + "Germany West Central", + "Norway East", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central" + ], + "properties": null, + "resourceType": "ServerSites", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-02-01", + "2020-01-01-preview", + "2019-05-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "West Europe", + "UK South", + "UK West", + "North Europe", + "West US 2", + "Southeast Asia", + "East Asia", + "Central India", + "South India", + "Canada Central", + "Australia Southeast", + "Japan West", + "Japan East", + "Brazil South", + "Korea Central", + "Korea South", + "France Central", + "Switzerland North", + "Australia East", + "UAE North", + "South Africa North", + "Germany West Central", + "Norway East", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central" + ], + "properties": null, + "resourceType": "ImportSites", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-27", + "2020-11-11-preview", + "2020-07-07" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "West Europe", + "UK South", + "UK West", + "North Europe", + "West US 2", + "Southeast Asia", + "East Asia", + "Central India", + "South India", + "Canada Central", + "Australia Southeast", + "Japan West", + "Japan East", + "Brazil South", + "Korea Central", + "Korea South", + "France Central", + "Switzerland North", + "Australia East", + "UAE North", + "South Africa North", + "Germany West Central", + "Norway East", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central" + ], + "properties": null, + "resourceType": "MasterSites", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-07-07" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-07-07" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "West Europe", + "UK South", + "UK West", + "North Europe", + "West US 2", + "Southeast Asia", + "East Asia", + "Central India", + "South India", + "Canada Central", + "Australia Southeast", + "Japan West", + "Japan East", + "Brazil South", + "Korea Central", + "Korea South", + "France Central", + "Switzerland North", + "Australia East", + "UAE North", + "South Africa North", + "Germany West Central", + "Norway East", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central" + ], + "properties": null, + "resourceType": "locations/operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-01-01", + "2019-06-06", + "2018-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "North Europe", + "West US 2", + "Southeast Asia" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "319f651f-7ddb-4fc6-9857-7aef9250bd05", + "roleDefinitionId": "855138b1-73b5-4848-b22f-0610df9e905f" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.OffAzureSpringBoot", + "namespace": "Microsoft.OffAzureSpringBoot", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Southeast Asia", + "South Central US", + "Korea Central", + "Japan East", + "Japan West", + "West Europe", + "France Central", + "West US 2", + "UK South", + "Canada Central", + "Central US", + "North Europe", + "Australia East" + ], + "properties": null, + "resourceType": "locations/operationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Southeast Asia", + "Korea Central", + "Japan East", + "Japan West", + "West Europe", + "France Central", + "West US 2", + "UK South", + "Canada Central", + "Central US", + "North Europe", + "Australia East" + ], + "properties": null, + "resourceType": "springbootsites", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Southeast Asia", + "Korea Central", + "Japan East", + "Japan West", + "West Europe", + "France Central", + "West US 2", + "UK South", + "Canada Central", + "Central US", + "North Europe", + "Australia East" + ], + "properties": null, + "resourceType": "springbootsites/springbootservers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Southeast Asia", + "Korea Central", + "Japan East", + "Japan West", + "West Europe", + "France Central", + "West US 2", + "UK South", + "Canada Central", + "Central US", + "North Europe", + "Australia East" + ], + "properties": null, + "resourceType": "springbootsites/springbootapps", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Southeast Asia", + "Korea Central", + "Japan East", + "Japan West", + "West Europe", + "France Central", + "West US 2", + "UK South", + "Canada Central", + "Central US", + "North Europe", + "Australia East" + ], + "properties": null, + "resourceType": "springbootsites/summaries", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Southeast Asia", + "Korea Central", + "Japan East", + "Japan West", + "West Europe", + "France Central", + "West US 2", + "UK South", + "Canada Central", + "Central US", + "North Europe", + "Australia East" + ], + "properties": null, + "resourceType": "springbootsites/errorsummaries", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "5bfdc2bf-507b-4413-8f15-f1fcf1c15475", + "roleDefinitionId": "6417fc9e-da1b-4028-8ca8-4d52db15521b" + }, + { + "applicationId": "dffa82c7-cb2f-4a0a-9e8f-7e86fd7b245e" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.OpenEnergyPlatform", + "namespace": "Microsoft.OpenEnergyPlatform", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-21-preview", + "2022-12-01-preview", + "2022-07-21-preview", + "2022-04-04-preview", + "2021-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-21-preview", + "2022-12-01-preview", + "2022-07-21-preview", + "2022-04-04-preview", + "2021-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "South Central US", + "West Europe", + "North Europe", + "East US", + "Brazil South" + ], + "properties": null, + "resourceType": "Locations/OperationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-21-preview", + "2022-12-01-preview", + "2022-07-21-preview", + "2022-04-04-preview", + "2021-06-01-preview" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-02-21-preview", + "locationMappings": null, + "locations": [ + "South Central US", + "West Europe", + "North Europe", + "East US", + "Brazil South" + ], + "properties": null, + "resourceType": "energyServices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-21-preview", + "2022-12-01-preview", + "2022-07-21-preview", + "2022-04-04-preview", + "2021-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-02-21-preview", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-21-preview", + "2022-12-01-preview", + "2022-07-21-preview", + "2022-04-04-preview", + "2021-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-21-preview", + "2022-12-01-preview", + "2022-07-21-preview", + "2022-04-04-preview", + "2021-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "South Central US", + "West Europe", + "North Europe", + "East US", + "Brazil South" + ], + "properties": null, + "resourceType": "energyServices/privateEndpointConnections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-21-preview", + "2022-12-01-preview", + "2022-07-21-preview", + "2022-04-04-preview", + "2021-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "South Central US", + "West Europe", + "North Europe", + "East US", + "Brazil South" + ], + "properties": null, + "resourceType": "energyServices/privateLinkResources", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-21-preview", + "2022-12-01-preview", + "2022-07-21-preview", + "2022-04-04-preview", + "2021-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "South Central US", + "West Europe", + "North Europe", + "East US", + "Brazil South" + ], + "properties": null, + "resourceType": "energyServices/privateEndpointConnectionProxies", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "3bc3fbf6-023a-4d86-bd09-bac559ccc9cc", + "roleDefinitionId": "38f09e57-663e-42b8-9db9-7d9e5138d5e4" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.OpenLogisticsPlatform", + "namespace": "Microsoft.OpenLogisticsPlatform", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-12-01-preview", + "2021-06-24-preview", + "2020-06-23-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US" + ], + "properties": null, + "resourceType": "Locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-12-01-preview", + "2021-06-24-preview", + "2020-06-23-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US EUAP", + "East US 2 EUAP", + "West Central US", + "East US 2", + "North Central US" + ], + "properties": null, + "resourceType": "locations/OperationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-12-01-preview", + "2021-06-24-preview", + "2020-06-23-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-12-01-preview", + "2021-06-24-preview", + "2020-06-23-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-12-01-preview", + "2021-06-24-preview", + "2020-06-23-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US 2 EUAP", + "Central US EUAP", + "West Central US", + "East US 2", + "North Central US" + ], + "properties": null, + "resourceType": "shareInvites", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-06-24-preview", + "2020-06-23-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US 2 EUAP", + "Central US EUAP", + "West Central US", + "East US 2", + "North Central US" + ], + "properties": null, + "resourceType": "applicationRegistrationInvites", + "zoneMappings": null + } + ] + }, + { + "authorization": { + "applicationId": "d2a0a418-0aac-4541-82b2-b3142c89da77", + "roleDefinitionId": "aa249101-6816-4966-aafa-08175d795f14" + }, + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.OperationsManagement", + "namespace": "Microsoft.OperationsManagement", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2015-11-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Southeast Asia", + "Australia Southeast", + "West Central US", + "Japan East", + "UK South", + "Central India", + "Canada Central", + "West US 2", + "Australia East", + "Australia Central", + "France Central", + "Korea Central", + "North Europe", + "Central Us", + "East Us 2", + "East Asia", + "West Us", + "South Central Us", + "North Central US", + "UK West", + "South Africa North", + "Brazil South", + "Switzerland North", + "Switzerland West", + "UAE Central", + "Australia Central 2", + "Germany West Central", + "Japan West", + "UAE North", + "Brazil Southeast", + "Norway East", + "Norway West", + "France South", + "South India", + "Korea South", + "Jio India Central", + "Jio India West", + "Canada East", + "West US 3", + "Sweden Central", + "Qatar Central", + "South Africa West", + "Germany North", + "Poland Central", + "Israel Central", + "Italy North" + ], + "properties": null, + "resourceType": "solutions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2015-11-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "managementassociations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-08-21-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Southeast Asia", + "Australia Southeast", + "West Central US", + "Japan East", + "UK South", + "Central India", + "Canada Central", + "West US 2", + "Australia East", + "Australia Central", + "France Central", + "Korea Central", + "North Europe", + "Central Us", + "East Us 2", + "East Asia", + "West Us", + "South Central Us", + "North Central US", + "UK West", + "South Africa North", + "Brazil South", + "Switzerland North", + "Switzerland West", + "Qatar Central", + "South Africa West", + "Germany North", + "Poland Central", + "Israel Central", + "Italy North" + ], + "properties": null, + "resourceType": "views", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2015-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.OperatorVoicemail", + "namespace": "Microsoft.OperatorVoicemail", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "Operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "Locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "UK South" + ], + "properties": null, + "resourceType": "Locations/OperationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "Locations/checkNameAvailability", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "319f651f-7ddb-4fc6-9857-7aef9250bd05", + "roleDefinitionId": "ef32d140-5412-48a2-b226-09f4210d6a84" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.OracleDiscovery", + "namespace": "Microsoft.OracleDiscovery", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-11-22-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "4fa46669-56c9-44e7-a69b-182480b952a8", + "managedByRoleDefinitionId": "a286f510-82c4-4bf5-acd1-355d7330a2b4", + "roleDefinitionId": "d4461988-7ffe-4516-b0f1-7301f16152e5" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Orbital", + "namespace": "Microsoft.Orbital", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": [], + "apiVersions": [ + "2022-11-01", + "2022-03-01", + "2021-04-04-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2022-11-01", + "locationMappings": null, + "locations": [ + "West US 2", + "West US 3", + "West US", + "East US", + "South Central US", + "Norway East", + "Australia East", + "Sweden Central", + "Southeast Asia", + "Brazil South", + "South Africa North", + "UK South" + ], + "properties": null, + "resourceType": "availableGroundStations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [], + "apiVersions": [ + "2022-11-01", + "2022-03-01", + "2021-04-04-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-11-01", + "locationMappings": null, + "locations": [ + "West US 2", + "West US 3", + "West US", + "East US", + "South Central US", + "Norway East", + "Australia East", + "Sweden Central", + "Southeast Asia", + "Brazil South", + "South Africa North", + "UK South" + ], + "properties": null, + "resourceType": "contactProfiles", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [], + "apiVersions": [ + "2022-11-01", + "2022-03-01", + "2021-04-04-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-11-01", + "locationMappings": null, + "locations": [ + "West US 2", + "West US 3", + "West US", + "East US", + "South Central US", + "Norway East", + "Australia East", + "Sweden Central", + "Southeast Asia", + "Brazil South", + "South Africa North", + "UK South" + ], + "properties": null, + "resourceType": "spacecrafts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [], + "apiVersions": [ + "2022-11-01", + "2022-03-01", + "2021-04-04-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2022-11-01", + "locationMappings": null, + "locations": [ + "West US 2", + "West US 3", + "West US", + "East US", + "South Central US", + "Norway East", + "Australia East", + "Sweden Central", + "Southeast Asia", + "Brazil South", + "South Africa North", + "UK South" + ], + "properties": null, + "resourceType": "spacecrafts/contacts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [], + "apiVersions": [ + "2022-06-01-preview", + "2021-04-04-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2021-04-04-preview", + "locationMappings": null, + "locations": [ + "Southeast Asia", + "Brazil South", + "South Africa North" + ], + "properties": null, + "resourceType": "groundStations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [], + "apiVersions": [ + "2022-06-01-preview", + "2021-04-04-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-04-04-preview", + "locationMappings": null, + "locations": [ + "Southeast Asia", + "Brazil South", + "South Africa North" + ], + "properties": null, + "resourceType": "globalCommunicationsSites", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [], + "apiVersions": [ + "2021-04-04-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2021-04-04-preview", + "locationMappings": null, + "locations": [ + "Southeast Asia", + "Brazil South", + "South Africa North" + ], + "properties": null, + "resourceType": "orbitalGateways", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [], + "apiVersions": [ + "2022-06-01-preview", + "2021-04-04-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2021-04-04-preview", + "locationMappings": null, + "locations": [ + "Southeast Asia", + "Brazil South", + "South Africa North" + ], + "properties": null, + "resourceType": "l2Connections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [], + "apiVersions": [ + "2021-04-04-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2021-04-04-preview", + "locationMappings": null, + "locations": [ + "Southeast Asia", + "Brazil South", + "South Africa North" + ], + "properties": null, + "resourceType": "l3Connections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [], + "apiVersions": [ + "2022-06-01-preview", + "2021-04-04-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2021-04-04-preview", + "locationMappings": null, + "locations": [ + "Southeast Asia", + "Brazil South", + "South Africa North" + ], + "properties": null, + "resourceType": "edgeSites", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [], + "apiVersions": [ + "2022-11-01" + ], + "capabilities": "None", + "defaultApiVersion": "2022-11-01", + "locationMappings": null, + "locations": [ + "West US 2", + "West US 3", + "West US", + "East US", + "South Central US", + "Norway East", + "Australia East", + "Sweden Central", + "Southeast Asia", + "Brazil South", + "South Africa North", + "UK South" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-11-01" + ], + "capabilities": "None", + "defaultApiVersion": "2022-11-01", + "locationMappings": null, + "locations": [ + "West US 2", + "West US 3", + "West US", + "South Central US", + "Norway East", + "Australia East", + "Sweden Central", + "Southeast Asia", + "Brazil South", + "South Africa North", + "UK South" + ], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-11-01", + "2022-06-01-preview", + "2022-03-01" + ], + "capabilities": "None", + "defaultApiVersion": "2022-11-01", + "locationMappings": null, + "locations": [ + "West US 2", + "West US 3", + "West US", + "East US", + "South Central US", + "Norway East", + "Australia East", + "Sweden Central", + "Southeast Asia", + "Brazil South", + "South Africa North" + ], + "properties": null, + "resourceType": "locations/operationResults", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "48908b05-58c2-4fae-95de-ca2ed8932930", + "roleDefinitionId": "4f37b6b1-4ed2-4aac-a138-98207c8387d4" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.PartnerManagedConsumerRecurrence", + "namespace": "Microsoft.PartnerManagedConsumerRecurrence", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-01-20-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "recurrences", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-01-20-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-01-20-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkEligibility", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-01-20-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operationStatuses", + "zoneMappings": null + } + ] + }, + { + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Peering", + "namespace": "Microsoft.Peering", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01", + "2022-06-01", + "2022-01-01", + "2021-06-01", + "2021-01-01", + "2020-10-01", + "2020-04-01", + "2020-01-01-preview", + "2019-09-01-preview", + "2019-08-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-10-01", + "locationMappings": null, + "locations": [ + "Japan East", + "Japan West", + "Korea Central", + "East Asia", + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Southeast Asia", + "West India", + "South India", + "East US", + "East US 2", + "North Central US", + "South Central US", + "Canada Central", + "West US", + "West US 2", + "West Central US", + "Canada East", + "West Europe", + "UK South", + "UK West", + "North Europe", + "France Central", + "France South", + "South Africa North", + "South Africa West" + ], + "properties": null, + "resourceType": "peerings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01", + "2022-06-01", + "2022-01-01", + "2021-06-01", + "2021-01-01", + "2020-10-01", + "2020-04-01", + "2020-01-01-preview", + "2019-09-01-preview", + "2019-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2022-10-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "peeringLocations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01", + "2022-06-01", + "2022-01-01", + "2021-06-01", + "2021-01-01", + "2020-10-01", + "2020-04-01", + "2020-01-01-preview", + "2019-09-01-preview", + "2019-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2022-10-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "legacyPeerings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01", + "2022-06-01", + "2022-01-01", + "2021-06-01", + "2021-01-01", + "2020-10-01", + "2020-04-01", + "2020-01-01-preview", + "2019-09-01-preview", + "2019-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2022-10-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "peerAsns", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01", + "2022-06-01", + "2022-01-01", + "2021-06-01", + "2021-01-01", + "2020-10-01", + "2020-04-01", + "2020-01-01-preview", + "2019-09-01-preview", + "2019-08-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-10-01", + "locationMappings": null, + "locations": [ + "Japan East", + "Japan West", + "Korea Central", + "East Asia", + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Southeast Asia", + "West India", + "South India", + "East US", + "East US 2", + "North Central US", + "South Central US", + "Canada Central", + "West US", + "West US 2", + "West Central US", + "Canada East", + "West Europe", + "UK South", + "UK West", + "North Europe", + "France Central", + "France South", + "South Africa North", + "South Africa West" + ], + "properties": null, + "resourceType": "peeringServices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01", + "2022-06-01", + "2022-01-01", + "2021-06-01", + "2021-01-01", + "2020-10-01", + "2020-04-01", + "2020-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2022-10-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "peeringServiceCountries", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01", + "2022-06-01", + "2022-01-01", + "2021-06-01", + "2021-01-01", + "2020-10-01", + "2020-04-01", + "2020-01-01-preview", + "2019-09-01-preview", + "2019-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2022-10-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "peeringServiceLocations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01", + "2022-06-01", + "2022-01-01", + "2021-06-01", + "2021-01-01", + "2020-10-01", + "2020-04-01", + "2020-01-01-preview", + "2019-09-01-preview", + "2019-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2022-10-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "peeringServiceProviders", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01", + "2022-06-01", + "2022-01-01", + "2021-06-01", + "2021-01-01", + "2020-10-01", + "2020-04-01", + "2020-01-01-preview", + "2019-09-01-preview", + "2019-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2022-10-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkServiceProviderAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01", + "2022-06-01", + "2022-01-01", + "2021-06-01" + ], + "capabilities": "None", + "defaultApiVersion": "2022-10-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "lookingGlass", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01", + "2022-06-01", + "2022-01-01", + "2021-06-01", + "2021-01-01", + "2020-10-01" + ], + "capabilities": "None", + "defaultApiVersion": "2022-10-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "cdnPeeringPrefixes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01", + "2022-06-01", + "2022-01-01", + "2021-06-01", + "2021-01-01", + "2020-10-01", + "2020-04-01", + "2020-01-01-preview", + "2019-09-01-preview", + "2019-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2022-10-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "c4b30b9c-4322-4c9f-9eb7-2167b85bbf5c", + "roleDefinitionId": "63da54ef-7c52-42ef-beb0-6709aa6eabd2" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Pki", + "namespace": "Microsoft.Pki", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01-preview", + "2021-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "ce52bcbe-f669-4cfd-9866-d64472d3e13e", + "roleDefinitionId": "ad40ac80-8bc8-410f-b1cd-daf37dfe0c8c" + }, + { + "applicationId": "448adbda-b8d8-4f33-a1b0-ac58cf44d4c1" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.PlayFab", + "namespace": "Microsoft.PlayFab", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-07-15-preview", + "2022-05-05-preview", + "2022-04-12-preview", + "2022-03-02-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-07-15-preview", + "2022-05-05-preview", + "2022-04-12-preview", + "2022-03-02-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US 2" + ], + "properties": null, + "resourceType": "locations/operationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-07-15-preview", + "2022-05-05-preview", + "2022-04-12-preview", + "2022-03-02-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Portal", + "namespace": "Microsoft.Portal", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationFree", + "registrationState": "Registered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-09-01-preview", + "2020-09-01-alpha", + "2019-01-01-preview", + "2018-10-01-preview", + "2015-08-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "South Africa North", + "South Africa West", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "dashboards", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-09-01-preview", + "2019-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "South Africa North", + "South Africa West", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "tenantconfigurations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-09-01-preview", + "2019-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "South Africa North", + "South Africa West", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "listTenantConfigurationViolations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2015-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "South Africa North", + "South Africa West", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2020-04-01-preview", + "2018-10-01", + "2017-12-01-preview", + "2017-08-01-preview", + "2017-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2020-04-01-preview", + "2018-10-01", + "2017-12-01-preview", + "2017-08-01-preview", + "2017-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "consoles", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2020-04-01-preview", + "2018-10-01", + "2017-12-01-preview", + "2017-08-01-preview", + "2017-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "Central India", + "North Europe", + "West Europe", + "South Central US", + "Southeast Asia", + "East US 2", + "Central US" + ], + "properties": null, + "resourceType": "locations/consoles", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2020-04-01-preview", + "2018-10-01", + "2017-12-01-preview", + "2017-08-01-preview", + "2017-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "userSettings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2020-04-01-preview", + "2018-10-01", + "2017-12-01-preview", + "2017-08-01-preview", + "2017-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "Central India", + "North Europe", + "West Europe", + "South Central US", + "Southeast Asia", + "East US 2", + "Central US" + ], + "properties": null, + "resourceType": "locations/userSettings", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "00000009-0000-0000-c000-000000000000", + "roleDefinitionId": "d2079c0c-4a98-48b1-b511-eae3fc2003ab" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.PowerBI", + "namespace": "Microsoft.PowerBI", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-01-29" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2016-01-29", + "locationMappings": null, + "locations": [ + "South Central US", + "North Central US", + "East US 2", + "West US", + "West Europe", + "North Europe", + "Brazil South", + "Southeast Asia", + "Australia Southeast", + "Canada Central", + "Japan East", + "UK South", + "West India" + ], + "properties": null, + "resourceType": "workspaceCollections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-01-29" + ], + "capabilities": "None", + "defaultApiVersion": "2016-01-29", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2016-01-29" + ], + "capabilities": "None", + "defaultApiVersion": "2016-01-29", + "locationMappings": null, + "locations": [ + "South Central US", + "North Central US", + "East US 2", + "West US", + "West Europe", + "North Europe", + "Brazil South", + "Southeast Asia", + "Australia Southeast", + "Canada Central", + "Japan East", + "UK South", + "West India" + ], + "properties": null, + "resourceType": "locations/checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-06-01" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-06-01", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "privateLinkServicesForPowerBI", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-06-01" + ], + "capabilities": "None", + "defaultApiVersion": "2020-06-01", + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "privateLinkServicesForPowerBI/operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-06-01", + "2016-01-29" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US 2 EUAP" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "4ac7d521-0382-477b-b0f8-7e1d95f85ca2", + "roleDefinitionId": "490d5987-bcf6-4be6-b6b2-056a78cb693a" + }, + { + "applicationId": "cb4dc29f-0bf4-402a-8b30-7511498ed654", + "roleDefinitionId": "e03b0682-208e-4ddd-841f-66fb49a5c930" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.PowerBIDedicated", + "namespace": "Microsoft.PowerBIDedicated", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-05-01", + "2021-01-01", + "2018-09-01-preview", + "2017-10-01", + "2017-01-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2017-01-01-preview", + "locationMappings": null, + "locations": [ + "Australia Southeast", + "Brazil South", + "Canada Central", + "Norway East", + "Norway West", + "Sweden Central", + "UAE North", + "UAE Central", + "Qatar Central", + "Poland Central", + "Germany West Central", + "Germany North", + "France Central", + "France South", + "Korea Central", + "Korea South", + "Japan West", + "South Africa North", + "Switzerland North", + "Switzerland West", + "Canada East", + "South Africa West", + "UK West", + "Central US", + "Central India", + "South India", + "Australia East", + "East Asia", + "East US", + "East US 2", + "West India", + "Japan East", + "West Central US", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "capacities", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-05-01", + "2021-01-01" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2021-01-01", + "locationMappings": null, + "locations": [ + "Australia Southeast", + "Brazil South", + "Canada Central", + "Norway East", + "Norway West", + "Sweden Central", + "UAE North", + "UAE Central", + "Qatar Central", + "Poland Central", + "Germany West Central", + "Germany North", + "France Central", + "France South", + "Korea Central", + "Korea South", + "Japan West", + "South Africa North", + "Switzerland North", + "Switzerland West", + "Canada East", + "South Africa West", + "UK West", + "Central US", + "Central India", + "South India", + "Australia East", + "East Asia", + "East US", + "East US 2", + "West India", + "Japan East", + "West Central US", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "autoScaleVCores", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2017-01-01-preview", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-05-01", + "2021-01-01", + "2018-09-01-preview", + "2017-10-01", + "2017-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2017-01-01-preview", + "locationMappings": null, + "locations": [ + "Australia Southeast", + "Brazil South", + "Canada Central", + "Norway East", + "Norway West", + "Sweden Central", + "UAE North", + "UAE Central", + "Qatar Central", + "Poland Central", + "Germany West Central", + "Germany North", + "France Central", + "France South", + "Korea Central", + "Korea South", + "Japan West", + "Switzerland North", + "Switzerland West", + "Canada East", + "UK West", + "Central US", + "Central India", + "South India", + "Australia East", + "East Asia", + "East US", + "East US 2", + "West India", + "Japan East", + "West Central US", + "North Central US", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "South Africa West", + "UK South", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-05-01", + "2021-01-01", + "2018-09-01-preview", + "2017-10-01", + "2017-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2017-01-01-preview", + "locationMappings": null, + "locations": [ + "Australia Southeast", + "Brazil South", + "Canada Central", + "Norway East", + "Norway West", + "Sweden Central", + "UAE North", + "UAE Central", + "Qatar Central", + "Poland Central", + "Germany West Central", + "Germany North", + "France Central", + "France South", + "Korea Central", + "Korea South", + "Japan West", + "Switzerland North", + "Switzerland West", + "Canada East", + "UK West", + "Central US", + "Central India", + "South India", + "Australia East", + "East Asia", + "East US", + "East US 2", + "West India", + "Japan East", + "West Central US", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "South Africa North", + "South Africa West", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/operationresults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-05-01", + "2021-01-01", + "2018-09-01-preview", + "2017-10-01", + "2017-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2017-01-01-preview", + "locationMappings": null, + "locations": [ + "Australia Southeast", + "Brazil South", + "Canada Central", + "Norway East", + "Norway West", + "Sweden Central", + "UAE North", + "UAE Central", + "Qatar Central", + "Poland Central", + "Germany West Central", + "Germany North", + "France Central", + "France South", + "Korea Central", + "Korea South", + "Japan West", + "Switzerland North", + "Switzerland West", + "Canada East", + "UK West", + "Central US", + "Central India", + "South India", + "Australia East", + "East Asia", + "East US", + "East US 2", + "West India", + "Japan East", + "West Central US", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2", + "West US 3", + "South Africa North", + "South Africa West" + ], + "properties": null, + "resourceType": "locations/operationstatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-05-01", + "2021-01-01", + "2018-09-01-preview", + "2017-10-01", + "2017-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US 2" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorization": { + "applicationId": "e64bd61e-5424-451f-b666-e02ee2878437", + "roleDefinitionId": "51598b27-f396-476b-b212-90d7da526159" + }, + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.PowerPlatform", + "namespace": "Microsoft.PowerPlatform", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-10-30-preview", + "2020-10-30", + "2020-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US EUAP", + "East US 2 EUAP", + "United States", + "East US", + "West US", + "Central US", + "South Africa", + "UK", + "Japan", + "India", + "France", + "Europe", + "Germany", + "Switzerland", + "Canada", + "Brazil", + "Australia", + "Asia", + "UAE", + "Korea", + "Norway", + "Singapore" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-10-30-preview", + "2020-10-30" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-10-30", + "locationMappings": null, + "locations": [ + "United States", + "South Africa", + "UK", + "Japan", + "India", + "France", + "Europe", + "Germany", + "Switzerland", + "Canada", + "Brazil", + "Australia", + "Asia", + "UAE", + "Korea", + "Norway", + "Singapore" + ], + "properties": null, + "resourceType": "enterprisePolicies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-10-30-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "United States", + "South Africa", + "UK", + "Japan", + "India", + "France", + "Europe", + "Germany", + "Switzerland", + "Canada", + "Brazil", + "Australia", + "Asia", + "UAE", + "Korea", + "Norway", + "Singapore" + ], + "properties": null, + "resourceType": "accounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-10-30-preview", + "2020-10-30" + ], + "capabilities": "None", + "defaultApiVersion": "2020-10-30", + "locationMappings": null, + "locations": [ + "East US", + "West US" + ], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-10-30-preview", + "2020-10-30" + ], + "capabilities": "None", + "defaultApiVersion": "2020-10-30", + "locationMappings": null, + "locations": [ + "East US", + "West US" + ], + "properties": null, + "resourceType": "locations/deleteVirtualNetworkOrSubnets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-10-30-preview", + "2020-10-30" + ], + "capabilities": "None", + "defaultApiVersion": "2020-10-30", + "locationMappings": null, + "locations": [ + "East US", + "West US" + ], + "properties": null, + "resourceType": "locations/validateDeleteVirtualNetworkOrSubnets", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "5b712e99-51a3-41ce-86ff-046e0081c5c0" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.ProfessionalService", + "namespace": "Microsoft.ProfessionalService", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "eligibilityCheck", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "resources", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "8b5a06b3-efd5-4511-b112-5caf390d1b92", + "managedByRoleDefinitionId": "1e86f807-6ec0-40b3-8b5f-686b7e43a0a2", + "roleDefinitionId": "94553153-3875-4545-8c17-9f2d3828c5fd" + }, + { + "applicationId": "f77c2a8f-8a0a-4776-8e0a-bcb2549610ca" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.ProviderHub", + "namespace": "Microsoft.ProviderHub", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-04-01-preview", + "2022-07-01-preview", + "2021-09-01-preview", + "2021-06-01-preview", + "2021-05-01-preview", + "2020-11-20", + "2020-10-01-preview", + "2020-09-01-preview", + "2020-06-01-preview", + "2019-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "providerRegistrations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-04-01-preview", + "2022-07-01-preview", + "2021-09-01-preview", + "2021-06-01-preview", + "2021-05-01-preview", + "2020-11-20", + "2020-10-01-preview", + "2020-09-01-preview", + "2020-06-01-preview", + "2019-10-01", + "2019-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-04-01-preview", + "2022-07-01-preview", + "2021-09-01-preview", + "2021-06-01-preview", + "2021-05-01-preview", + "2020-11-20", + "2020-10-01-preview", + "2020-09-01-preview", + "2020-06-01-preview", + "2019-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "providerRegistrations/resourceTypeRegistrations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-04-01-preview", + "2022-07-01-preview", + "2021-09-01-preview", + "2021-06-01-preview", + "2021-05-01-preview", + "2020-11-20", + "2020-10-01-preview", + "2020-09-01-preview", + "2020-06-01-preview", + "2019-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "providerRegistrations/defaultRollouts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-04-01-preview", + "2022-07-01-preview", + "2021-09-01-preview", + "2021-06-01-preview", + "2021-05-01-preview", + "2020-11-20", + "2020-10-01-preview", + "2020-09-01-preview", + "2020-06-01-preview", + "2019-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "providerRegistrations/customRollouts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-04-01-preview", + "2022-07-01-preview", + "2021-09-01-preview", + "2021-06-01-preview", + "2021-05-01-preview", + "2020-11-20", + "2020-10-01-preview", + "2020-09-01-preview", + "2020-06-01-preview", + "2019-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "providerRegistrations/checkinmanifest", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-04-01-preview", + "2021-09-01-preview", + "2021-06-01-preview", + "2021-05-01-preview", + "2021-01-01", + "2020-11-20", + "2020-10-01-preview", + "2020-09-01-preview", + "2020-06-01-preview", + "2019-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "providerRegistrations/resourceActions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-04-01-preview", + "2021-09-01-preview", + "2021-06-01-preview", + "2021-05-01-preview", + "2020-11-20", + "2020-10-01-preview", + "2020-09-01-preview", + "2020-06-01-preview", + "2019-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "availableAccounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-04-01-preview", + "2023-01-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "providerRegistrations/authorizedApplications", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "73c2949e-da2d-457a-9607-fcc665198967", + "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635", + "roleDefinitionId": "1BC09725-0C9B-4F57-A3D0-FCCF4EB40120" + }, + { + "applicationId": "fd642066-7bfc-4b65-9463-6a08841c12f0", + "roleDefinitionId": "5b3958cb-0439-42e1-80e3-cae077d0d5e8" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Purview", + "namespace": "Microsoft.Purview", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-12-01", + "2021-07-01", + "2020-12-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2021-07-01", + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Southeast Asia", + "Canada Central", + "Canada East", + "South Central US", + "Brazil South", + "Central India", + "UK South", + "France Central", + "Korea Central", + "UAE North", + "Japan East", + "Switzerland North", + "West US", + "South Africa North", + "Germany West Central", + "Qatar Central", + "West US 3", + "Australia East", + "North Europe", + "West Central US", + "West US 2", + "East US 2" + ], + "properties": null, + "resourceType": "accounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Southeast Asia", + "Canada Central", + "Canada East", + "South Central US", + "Brazil South", + "Central India", + "UK South", + "France Central", + "Korea Central", + "UAE North", + "Japan East", + "Switzerland North", + "West US", + "South Africa North", + "Germany West Central", + "Qatar Central", + "West US 3", + "Australia East", + "North Europe", + "West Central US", + "West US 2", + "East US 2" + ], + "properties": null, + "resourceType": "accounts/kafkaConfigurations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2023-05-01-preview", + "2022-11-01-preview", + "2021-12-01", + "2021-07-01", + "2020-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2021-12-01", + "2021-07-01", + "2020-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-07-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "setDefaultAccount", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2021-12-01", + "2021-07-01", + "2020-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-07-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "removeDefaultAccount", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2021-12-01", + "2021-07-01", + "2020-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-07-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "getDefaultAccount", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-12-01", + "2021-07-01", + "2020-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-07-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-12-01", + "2021-07-01", + "2020-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-12-01", + "2021-07-01", + "2020-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Southeast Asia", + "Brazil South", + "Canada Central", + "Canada East", + "South Central US", + "Central India", + "UK South", + "France Central", + "Korea Central", + "UAE North", + "Japan East", + "Switzerland North", + "West US", + "South Africa North", + "Germany West Central", + "Qatar Central", + "West US 3", + "Australia East", + "North Europe", + "West Central US", + "West US 2", + "East US 2" + ], + "properties": null, + "resourceType": "locations/operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Southeast Asia", + "Canada Central", + "Canada East", + "South Central US", + "Brazil South", + "Central India", + "UK South", + "France Central", + "Korea Central", + "UAE North", + "Japan East", + "West US", + "South Africa North", + "Germany West Central", + "Qatar Central", + "West US 3", + "Australia East", + "North Europe", + "West Central US", + "West US 2", + "East US 2" + ], + "properties": null, + "resourceType": "locations/listFeatures", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-12-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Southeast Asia", + "Canada Central", + "Canada East", + "South Central US", + "Brazil South", + "Central India", + "UK South", + "France Central", + "Korea Central", + "UAE North", + "Japan East", + "Switzerland North", + "West US", + "South Africa North", + "Germany West Central", + "Qatar Central", + "West US 3", + "Australia East", + "North Europe", + "West Central US", + "West US 2", + "East US 2" + ], + "properties": null, + "resourceType": "locations/usages", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "Southeast Asia", + "Canada Central", + "Canada East", + "South Central US", + "Brazil South", + "Central India", + "UK South", + "France Central", + "Korea Central", + "Central US", + "UAE North", + "Japan East", + "Switzerland North", + "West US", + "South Africa North", + "Germany West Central", + "Qatar Central", + "West US 3", + "Australia East", + "North Europe", + "West Central US", + "East US 2" + ], + "properties": null, + "resourceType": "policies", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "a77d91dc-971b-4cf7-90c8-f183194249bc", + "roleDefinitionId": "915bd376-2da8-411d-9906-895a54086a66" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Quantum", + "namespace": "Microsoft.Quantum", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-01-10-preview", + "2019-11-04-preview" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2019-11-04-preview", + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "West US 2", + "West Central US", + "Japan East", + "Japan West", + "UK West", + "UK South", + "Germany West Central" + ], + "properties": null, + "resourceType": "Workspaces", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-01-10-preview", + "2019-11-04-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-01-10-preview", + "2019-11-04-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-01-10-preview", + "2019-11-04-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East US 2 EUAP", + "Central US EUAP", + "West US 2", + "West Central US", + "Japan East", + "Japan West", + "UK West", + "UK South", + "Germany West Central" + ], + "properties": null, + "resourceType": "Locations/OperationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-01-10-preview", + "2019-11-04-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "West US 2", + "West Central US", + "Japan East", + "Japan West", + "UK West", + "UK South", + "Germany West Central" + ], + "properties": null, + "resourceType": "locations/offerings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-01-10-preview", + "2019-11-04-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Locations/CheckNameAvailability", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "fbc197b7-9e9c-4f98-823f-93cb1cb554e6", + "roleDefinitionId": "941F67D2-083A-4B78-AF91-9B3B30B9B150" + }, + { + "applicationId": "b4ab78f4-bd0f-47a4-8603-4e556022e31d", + "roleDefinitionId": "941F67D2-083A-4B78-AF91-9B3B30B9B150" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Quota", + "namespace": "Microsoft.Quota", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-03-15-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "usages", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-03-15-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "quotas", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-03-15-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "quotaRequests", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-03-15-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operationsStatus", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01", + "2021-03-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "C5B731DB-1B0A-43F6-BCF6-757667D9CDC6", + "roleDefinitionId": "FA1FE492-0EDB-4A97-A404-DBDF3F915824" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.RecommendationsService", + "namespace": "Microsoft.RecommendationsService", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01-preview", + "2022-03-01-preview", + "2022-02-01", + "2021-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01-preview", + "2022-03-01-preview", + "2022-02-01", + "2021-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West US", + "North Europe", + "West Europe", + "Australia East", + "Canada Central", + "Korea Central", + "Central US EUAP" + ], + "properties": null, + "resourceType": "locations/operationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01-preview", + "2022-03-01-preview", + "2022-02-01", + "2021-02-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West US", + "North Europe", + "West Europe", + "Korea Central" + ], + "properties": null, + "resourceType": "accounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01-preview", + "2022-03-01-preview", + "2022-02-01", + "2021-02-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "West Europe", + "Australia East", + "Canada Central", + "Korea Central" + ], + "properties": null, + "resourceType": "accounts/modeling", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01-preview", + "2022-03-01-preview", + "2022-02-01", + "2021-02-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West US", + "North Europe", + "West Europe", + "Korea Central" + ], + "properties": null, + "resourceType": "accounts/serviceEndpoints", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01-preview", + "2022-03-01-preview", + "2022-02-01", + "2021-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01-preview", + "2022-03-01-preview", + "2022-02-01", + "2021-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "262044b1-e2ce-469f-a196-69ab7ada62d3", + "roleDefinitionId": "21CEC436-F7D0-4ADE-8AD8-FEC5668484CC" + }, + { + "applicationId": "b8340c3b-9267-498f-b21a-15d5547fd85e", + "roleDefinitionId": "8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6" + }, + { + "applicationId": "3b2fa68d-a091-48c9-95be-88d572e08fb7", + "roleDefinitionId": "47d68fae-99c7-4c10-b9db-2316116a061e" + }, + { + "applicationId": "9bdab391-7bbe-42e8-8132-e4491dc29cc0", + "roleDefinitionId": "0383f7f5-023d-4379-b2c7-9ef786459969" + }, + { + "applicationId": "e81c7467-0fc3-4866-b814-c973488361cd", + "roleDefinitionId": "212c936c-5360-4b3b-b2a1-b1eba3849a6f" + }, + { + "applicationId": "c505e273-0ba0-47e7-a0bd-f48042b4524d", + "roleDefinitionId": "a3d1c624-1f2f-41e8-9dc7-53fd55bcd821" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.RecoveryServices", + "namespace": "Microsoft.RecoveryServices", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-01-10", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-06-01", + "2023-04-01", + "2023-02-01", + "2023-01-01", + "2022-10-01", + "2022-09-30-preview", + "2022-09-10", + "2022-09-01-preview", + "2022-08-01", + "2022-06-01-preview", + "2022-05-01", + "2022-04-01", + "2022-03-01", + "2022-02-01", + "2022-01-01", + "2021-12-01", + "2021-11-01-preview", + "2021-11-01", + "2021-10-01", + "2021-08-01", + "2021-07-01", + "2021-06-01", + "2021-04-01", + "2021-03-01", + "2021-02-10", + "2021-02-01-preview", + "2021-02-01", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-07-01-preview", + "2020-07-01", + "2020-02-02-preview", + "2020-02-02", + "2019-06-15", + "2019-05-13-preview", + "2019-05-13", + "2018-07-10-preview", + "2018-07-10", + "2018-01-10", + "2017-07-01-preview", + "2017-07-01", + "2016-12-01", + "2016-08-10", + "2016-06-01", + "2016-05-01", + "2015-12-15", + "2015-12-10", + "2015-11-10", + "2015-08-15", + "2015-08-10", + "2015-06-10", + "2015-03-15" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "Brazil South", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Central US", + "East US 2", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Israel Central", + "Italy North" + ], + "properties": null, + "resourceType": "vaults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-08-10", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-06-01", + "2023-04-01", + "2023-02-01", + "2023-01-01", + "2022-10-01", + "2022-09-30-preview", + "2022-09-10", + "2022-09-01-preview", + "2022-08-01", + "2022-06-01-preview", + "2022-05-01", + "2022-04-01", + "2022-03-01", + "2022-02-01", + "2022-01-01", + "2021-12-01", + "2021-11-01-preview", + "2021-11-01", + "2021-10-01", + "2021-08-01", + "2021-07-01", + "2021-06-01", + "2021-04-01", + "2021-03-01", + "2021-02-10", + "2021-02-01-preview", + "2021-02-01", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-07-01-preview", + "2020-07-01", + "2020-02-02-preview", + "2020-02-02", + "2019-06-15", + "2019-05-13-preview", + "2019-05-13", + "2018-07-10-preview", + "2018-07-10", + "2018-01-10", + "2017-09-01", + "2017-07-01-preview", + "2017-07-01", + "2016-12-01", + "2016-08-10", + "2016-06-01", + "2015-12-15", + "2015-12-10", + "2015-11-10", + "2015-08-15", + "2015-08-10", + "2015-06-10", + "2015-03-15" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-06-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-06-01", + "2023-04-01", + "2023-02-01", + "2023-01-01", + "2022-10-01", + "2022-09-30-preview", + "2022-09-10", + "2022-09-01-preview", + "2022-08-01", + "2022-06-01-preview", + "2022-05-01", + "2022-04-01", + "2022-03-01", + "2022-02-01", + "2022-01-01", + "2021-12-01", + "2021-11-01-preview", + "2021-11-01", + "2021-10-01", + "2021-08-01", + "2021-07-01", + "2021-06-01", + "2021-03-01", + "2017-07-01", + "2016-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-06-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-06-01", + "2023-04-01", + "2023-02-01", + "2023-01-01", + "2022-10-01", + "2022-09-30-preview", + "2022-09-10", + "2022-09-01-preview", + "2022-08-01", + "2022-06-01-preview", + "2022-05-01", + "2022-04-01", + "2022-03-01", + "2022-02-01", + "2022-01-01", + "2021-12-01", + "2021-10-01", + "2021-08-01", + "2021-07-01", + "2021-06-01", + "2021-03-01", + "2017-07-01", + "2016-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "Brazil South", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Central US", + "East US 2", + "Central India", + "South India", + "West India", + "West Central US", + "Canada Central", + "Canada East", + "West US 2", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Israel Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/backupStatus", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-01-10", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2018-01-10" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "Brazil South", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Central US", + "East US 2", + "Central India", + "South India", + "West India", + "West Central US", + "Canada Central", + "Canada East", + "West US 2", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Israel Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-06-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2016-06-01", + "2015-08-15" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "Brazil South", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Central US", + "East US 2", + "Central India", + "South India", + "West India", + "West Central US", + "Canada Central", + "Canada East", + "West US 2", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Israel Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/allocatedStamp", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-06-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2016-06-01", + "2015-08-15" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "Brazil South", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Central US", + "East US 2", + "Central India", + "South India", + "West India", + "West Central US", + "Canada Central", + "Canada East", + "West US 2", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Israel Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/allocateStamp", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-07-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-06-01", + "2023-04-01", + "2023-02-01", + "2023-01-01", + "2022-10-01", + "2022-09-30-preview", + "2022-09-10", + "2022-09-01-preview", + "2022-08-01", + "2022-06-01-preview", + "2022-05-01", + "2022-04-01", + "2022-03-01", + "2022-02-01", + "2022-01-01", + "2021-12-01", + "2021-10-01", + "2021-08-01", + "2021-07-01", + "2021-06-01", + "2021-03-01", + "2017-07-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "Brazil South", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Central US", + "East US 2", + "Central India", + "South India", + "West India", + "West Central US", + "Canada Central", + "Canada East", + "West US 2", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Israel Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/backupValidateFeatures", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-07-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-06-01", + "2023-04-01", + "2023-02-01", + "2023-01-01", + "2022-10-01", + "2022-09-30-preview", + "2022-09-10", + "2022-09-01-preview", + "2022-08-01", + "2022-06-01-preview", + "2022-05-01", + "2022-04-01", + "2022-03-01", + "2022-02-01", + "2022-01-01", + "2021-12-01", + "2021-10-01", + "2021-08-01", + "2021-07-01", + "2021-06-01", + "2021-03-01", + "2017-07-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "Brazil South", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Central US", + "East US 2", + "Central India", + "South India", + "West India", + "West Central US", + "Canada Central", + "Canada East", + "West US 2", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Israel Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/backupPreValidateProtection", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-12-20-preview", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-01-15", + "2021-11-15", + "2018-12-20-preview", + "2018-12-20" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "Brazil South", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Central US", + "East US 2", + "Central India", + "South India", + "West India", + "West Central US", + "Canada Central", + "Canada East", + "West US 2", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central" + ], + "properties": null, + "resourceType": "locations/backupCrrJobs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-12-20-preview", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-01-15", + "2021-11-15", + "2018-12-20-preview", + "2018-12-20" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "Brazil South", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Central US", + "East US 2", + "Central India", + "South India", + "West India", + "West Central US", + "Canada Central", + "Canada East", + "West US 2", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central" + ], + "properties": null, + "resourceType": "locations/backupCrrJob", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-12-20-preview", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-01-15", + "2021-11-15", + "2018-12-20-preview", + "2018-12-20" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "Brazil South", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Central US", + "East US 2", + "Central India", + "South India", + "West India", + "West Central US", + "Canada Central", + "Canada East", + "West US 2", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central" + ], + "properties": null, + "resourceType": "locations/backupAadProperties", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-12-20-preview", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-01-15", + "2021-11-15", + "2018-12-20-preview", + "2018-12-20" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "Brazil South", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Central US", + "East US 2", + "Central India", + "South India", + "West India", + "West Central US", + "Canada Central", + "Canada East", + "West US 2", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central" + ], + "properties": null, + "resourceType": "locations/backupCrossRegionRestore", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-12-20-preview", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-01-15", + "2021-11-15", + "2018-12-20-preview", + "2018-12-20" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "Brazil South", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Central US", + "East US 2", + "Central India", + "South India", + "West India", + "West Central US", + "Canada Central", + "Canada East", + "West US 2", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central" + ], + "properties": null, + "resourceType": "locations/backupCrrOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-12-20-preview", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-01-15", + "2021-11-15", + "2018-12-20-preview", + "2018-12-20" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "Brazil South", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Central US", + "East US 2", + "Central India", + "South India", + "West India", + "West Central US", + "Canada Central", + "Canada East", + "West US 2", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central" + ], + "properties": null, + "resourceType": "locations/backupCrrOperationsStatus", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-07-01-preview", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2017-07-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "Brazil South", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Central US", + "East US 2", + "Central India", + "South India", + "West India", + "West Central US", + "Canada Central", + "Canada East", + "West US 2", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Israel Central", + "Italy North" + ], + "properties": null, + "resourceType": "backupProtectedItems", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2018-07-10", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-06-01", + "2023-04-01", + "2023-02-01", + "2023-01-01", + "2022-10-01", + "2022-09-30-preview", + "2022-09-10", + "2022-09-01-preview", + "2022-08-01", + "2022-06-01-preview", + "2022-05-01", + "2022-04-01", + "2022-03-01", + "2022-02-01", + "2022-01-01", + "2021-12-01", + "2021-10-01", + "2021-08-01", + "2021-07-01", + "2021-06-01", + "2021-02-10", + "2018-07-10" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "Brazil South", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Central US", + "East US 2", + "Central India", + "South India", + "West India", + "West Central US", + "Canada Central", + "Canada East", + "West US 2", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Israel Central", + "Italy North" + ], + "properties": null, + "resourceType": "replicationEligibilityResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2022-01-31-preview", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-06-01", + "2023-04-01", + "2023-02-01", + "2023-01-01", + "2022-10-01", + "2022-09-30-preview", + "2022-01-31-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "Brazil South", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Central US", + "East US 2", + "Central India", + "South India", + "West India", + "West Central US", + "Canada Central", + "Canada East", + "West US 2", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Israel Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations/capabilities", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "f1dd0a37-89c6-4e07-bcd1-ffd3d43d8875", + "managedByAuthorization": { + "allowManagedByInheritance": true + }, + "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635", + "roleDefinitionId": "640c5ac9-6f32-4891-94f4-d20f7aa9a7e6" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.RedHatOpenShift", + "namespace": "Microsoft.RedHatOpenShift", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-04-01", + "2022-09-04", + "2022-04-01", + "2021-09-01-preview", + "2020-04-30", + "2019-12-31-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-04-01", + "2022-09-04", + "2022-04-01", + "2021-09-01-preview", + "2020-04-30" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West US 3", + "West US 2", + "West US" + ], + "properties": null, + "resourceType": "locations/operationresults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-04-01", + "2022-09-04", + "2022-04-01", + "2021-09-01-preview", + "2020-04-30" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West US 3", + "West US 2", + "West US" + ], + "properties": null, + "resourceType": "locations/operationsstatus", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-04-01", + "2022-09-04", + "2022-04-01", + "2021-09-01-preview", + "2020-04-30" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-04-01", + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West US 3", + "West US 2", + "West US" + ], + "properties": null, + "resourceType": "OpenShiftClusters", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-04-01", + "2022-09-04", + "2022-04-01", + "2021-09-01-preview", + "2020-04-30", + "2019-12-31-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-04-01", + "2022-09-04" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West US 3", + "West US 2", + "West US" + ], + "properties": null, + "resourceType": "locations/openshiftversions", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "91bb937c-29c2-4275-982f-9465f0caf03d", + "roleDefinitionId": "6ea9e989-a5f4-4187-8d11-c8db3dd04da1" + }, + { + "applicationId": "80369ed6-5f11-4dd9-bef3-692475845e77" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Relay", + "namespace": "Microsoft.Relay", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2021-11-01", + "2018-01-01-preview", + "2017-04-01", + "2016-07-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "namespaces", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-11-01", + "2018-01-01-preview", + "2017-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "namespaces/authorizationrules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-11-01", + "2018-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "namespaces/privateEndpointConnections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-11-01", + "2018-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "namespaces/privateEndpointConnectionProxies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-11-01", + "2018-01-01-preview", + "2017-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "namespaces/hybridconnections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-11-01", + "2018-01-01-preview", + "2017-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "namespaces/hybridconnections/authorizationrules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-11-01", + "2018-01-01-preview", + "2017-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "namespaces/wcfrelays", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-11-01", + "2018-01-01-preview", + "2017-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "namespaces/wcfrelays/authorizationrules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2021-11-01", + "2018-01-01-preview", + "2017-04-01", + "2016-07-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2021-11-01", + "2018-01-01-preview", + "2017-04-01", + "2016-07-01" + ], + "capabilities": "None", + "defaultApiVersion": "2017-04-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2021-11-01", + "2018-01-01-preview", + "2017-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-11-01", + "2018-01-01-preview", + "2017-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/namespaceOperationResults", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "585fc3c3-9a59-4720-8319-53cce041a605", + "roleDefinitionId": "008e7b93-7712-4d05-83ce-a9fcc80300e9" + }, + { + "applicationId": "d22ea4d1-2678-4a7b-aa5e-f340c2a7d993", + "roleDefinitionId": "7c812eee-67c9-4a05-a1b1-c0ac88fd1067" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.ResourceConnector", + "namespace": "Microsoft.ResourceConnector", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-27", + "2022-04-15-preview", + "2021-10-31-preview", + "2020-09-15-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-27", + "2021-10-31-preview" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2021-10-31-preview", + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "UK South", + "Australia East", + "Southeast Asia", + "Canada Central", + "East US 2", + "West US 2", + "West US 3", + "South Central US", + "North Europe", + "Sweden Central", + "Central US" + ], + "properties": null, + "resourceType": "appliances", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-27", + "2021-10-31-preview", + "2020-07-15-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "UK South", + "Australia East", + "Southeast Asia", + "Canada Central", + "East US 2", + "West US 2", + "West US 3", + "South Central US", + "North Europe", + "Sweden Central", + "Central US" + ], + "properties": null, + "resourceType": "locations/operationsstatus", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-27", + "2021-10-31-preview", + "2020-07-15-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "UK South", + "Australia East", + "Southeast Asia", + "Canada Central", + "East US 2", + "West US 2", + "West US 3", + "South Central US", + "North Europe", + "Sweden Central", + "Central US" + ], + "properties": null, + "resourceType": "locations/operationresults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-27", + "2022-04-15-preview", + "2021-10-31-preview", + "2021-02-01", + "2020-07-15-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorization": { + "applicationId": "509e4652-da8d-478d-a730-e9d4a1996ca4" + }, + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.ResourceGraph", + "namespace": "Microsoft.ResourceGraph", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationFree", + "registrationState": "Registered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01", + "2021-06-01-preview", + "2021-03-01", + "2020-04-01-preview", + "2019-04-01", + "2018-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US" + ], + "properties": null, + "resourceType": "resources", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-06-01-preview", + "2020-09-01-preview", + "2020-04-01-preview", + "2018-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US" + ], + "properties": null, + "resourceType": "resourcesHistory", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-09-01-preview", + "2020-04-01-preview", + "2018-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US" + ], + "properties": null, + "resourceType": "resourceChanges", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-09-01-preview", + "2020-04-01-preview", + "2018-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US" + ], + "properties": null, + "resourceType": "resourceChangeDetails", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01", + "2021-06-01-preview", + "2021-03-01", + "2020-04-01-preview", + "2019-04-01", + "2018-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-04-01", + "2018-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US" + ], + "properties": null, + "resourceType": "subscriptionsStatus", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-09-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "queries", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "8bdebf23-c0fe-4187-a378-717ad86f6a53", + "roleDefinitionId": "cc026344-c8b1-4561-83ba-59eba84b27cc" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.ResourceHealth", + "namespace": "Microsoft.ResourceHealth", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-rc", + "2023-07-01-preview", + "2022-10-01-preview", + "2022-10-01", + "2022-05-01-preview", + "2022-05-01", + "2020-05-01-preview", + "2020-05-01", + "2018-08-01-rc", + "2018-08-01-preview", + "2018-07-01-rc", + "2018-07-01-preview", + "2018-07-01", + "2017-07-01", + "2015-01-01" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "availabilityStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-rc", + "2023-07-01-preview", + "2023-07-01-beta", + "2022-10-01", + "2018-11-06-beta", + "2018-08-01-rc", + "2018-08-01-preview", + "2018-07-01-rc", + "2018-07-01-preview", + "2018-07-01-beta", + "2017-07-01-rc", + "2017-07-01-preview", + "2017-07-01-beta", + "2017-07-01", + "2015-01-01-rc", + "2015-01-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "childAvailabilityStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2022-10-01", + "2018-11-06-beta", + "2018-08-01-rc", + "2018-08-01-preview", + "2018-07-01-rc", + "2018-07-01-preview", + "2018-07-01-beta", + "2017-07-01-rc", + "2017-07-01-preview", + "2017-07-01-beta", + "2017-07-01", + "2015-01-01-rc", + "2015-01-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "childResources", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-rc", + "2022-10-01-rc", + "2022-10-01", + "2022-05-01-rc", + "2022-05-01", + "2020-09-01-rc", + "2018-07-01-rc", + "2018-07-01" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "events", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-rc", + "2023-07-01-preview", + "2023-07-01-beta", + "2023-07-01-alpha", + "2022-10-01-rc", + "2022-10-01-preview", + "2022-10-01-beta", + "2022-10-01-alpha", + "2022-10-01", + "2018-07-01-rc", + "2018-07-01-preview", + "2018-07-01-beta", + "2018-07-01-alpha", + "2018-07-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "metadata", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-rc", + "2023-07-01-preview", + "2023-07-01-beta", + "2023-07-01-alpha", + "2022-10-01-rc", + "2022-10-01-preview", + "2022-10-01-beta", + "2022-10-01-alpha", + "2022-10-01", + "2018-11-06-beta", + "2018-07-01-rc", + "2018-07-01-preview", + "2018-07-01-beta", + "2018-07-01-alpha", + "2018-07-01", + "2017-07-01-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "emergingissues", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-rc", + "2023-07-01-preview", + "2023-07-01-beta", + "2023-07-01-alpha", + "2022-10-01-rc", + "2022-10-01-preview", + "2022-10-01-beta", + "2022-10-01-alpha", + "2022-10-01", + "2022-05-01-rc", + "2022-05-01-preview", + "2022-05-01-beta", + "2022-05-01-alpha", + "2022-05-01", + "2020-05-01-preview", + "2020-05-01", + "2018-07-01-preview", + "2018-07-01", + "2015-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorization": { + "applicationId": "89948392-a1bb-4682-9282-74d17421f4c1" + }, + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.ResourceNotifications", + "namespace": "Microsoft.ResourceNotifications", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationFree", + "registrationState": "Registered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-03-15-privatepreview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US" + ], + "properties": null, + "resourceType": "eventGridFilters", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-03-15-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "3b990c8b-9607-4c2a-8b04-1d41985facca" + }, + { + "applicationId": "94946920-7f9c-4956-93c0-2fcf94608102" + }, + { + "applicationId": "f77c2a8f-8a0a-4776-8e0a-bcb2549610ca" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Resources", + "namespace": "Microsoft.Resources", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationFree", + "registrationState": "Registered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2020-10-01", + "2019-10-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East Asia", + "Southeast Asia", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Switzerland North", + "Germany West Central", + "East US 2", + "East US", + "Central US", + "North Central US", + "France Central", + "UK South", + "UK West", + "Central India", + "South India", + "Jio India West", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "Sweden Central", + "UAE North", + "West Central US", + "West Europe", + "West US 2", + "West US", + "South Central US", + "West US 3", + "South Africa North" + ], + "properties": null, + "resourceType": "deploymentScripts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2020-10-01", + "2019-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East Asia", + "Southeast Asia", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Switzerland North", + "Germany West Central", + "East US 2", + "East US", + "Central US", + "North Central US", + "France Central", + "UK South", + "UK West", + "Central India", + "South India", + "Jio India West", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "Sweden Central", + "UAE North", + "West Central US", + "West Europe", + "West US 2", + "West US", + "South Central US", + "West US 3", + "South Africa North" + ], + "properties": null, + "resourceType": "deploymentScripts/logs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01", + "2020-10-01", + "2019-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East Asia", + "Southeast Asia", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Switzerland North", + "Germany West Central", + "East US 2", + "East US", + "Central US", + "North Central US", + "France Central", + "UK South", + "UK West", + "Central India", + "South India", + "Jio India West", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "Sweden Central", + "UAE North", + "West Central US", + "West Europe", + "West US 2", + "West US", + "South Central US", + "West US 3", + "South Africa North" + ], + "properties": null, + "resourceType": "locations/deploymentScriptOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-02-01", + "2021-05-01", + "2021-03-01-preview", + "2019-06-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East Asia", + "Southeast Asia", + "Australia East", + "Australia Central", + "Australia Central 2", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Switzerland North", + "Germany West Central", + "East US 2", + "East US", + "Central US", + "North Central US", + "France Central", + "UK South", + "UK West", + "Israel Central", + "Central India", + "West India", + "Jio India West", + "South India", + "Italy North", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "Sweden Central", + "UAE North", + "West Central US", + "West Europe", + "West US 2", + "West US", + "West US 3", + "South Central US", + "South Africa North" + ], + "properties": null, + "resourceType": "templateSpecs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-02-01", + "2021-05-01", + "2021-03-01-preview", + "2019-06-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East Asia", + "Southeast Asia", + "Australia East", + "Australia Central", + "Australia Central 2", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Switzerland North", + "Germany West Central", + "East US 2", + "East US", + "Central US", + "North Central US", + "France Central", + "UK South", + "UK West", + "Israel Central", + "Central India", + "West India", + "Jio India West", + "South India", + "Italy North", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "Sweden Central", + "UAE North", + "West Central US", + "West Europe", + "West US 2", + "West US", + "West US 3", + "South Central US", + "South Africa North" + ], + "properties": null, + "resourceType": "templateSpecs/versions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-02-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "builtInTemplateSpecs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-02-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "builtInTemplateSpecs/versions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-08-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East Asia", + "Southeast Asia", + "Australia East", + "Australia Central", + "Australia Central 2", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Switzerland North", + "Germany West Central", + "East US 2", + "East US", + "Central US", + "North Central US", + "France Central", + "UK South", + "UK West", + "Israel Central", + "Central India", + "West India", + "Jio India West", + "South India", + "Italy North", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "Sweden Central", + "UAE North", + "West Central US", + "West Europe", + "West US 2", + "West US", + "West US 3", + "South Central US", + "South Africa North" + ], + "properties": null, + "resourceType": "deploymentStacks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East Asia", + "Southeast Asia", + "Australia East", + "Australia Central", + "Australia Central 2", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Switzerland North", + "Germany West Central", + "East US 2", + "East US", + "Central US", + "North Central US", + "France Central", + "UK South", + "UK West", + "Israel Central", + "Central India", + "West India", + "Jio India West", + "South India", + "Italy North", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "Sweden Central", + "UAE North", + "West Central US", + "West Europe", + "West US 2", + "West US", + "West US 3", + "South Central US", + "South Africa North" + ], + "properties": null, + "resourceType": "locations/deploymentStackOperationStatus", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US EUAP", + "East US 2 EUAP", + "Canada Central", + "Canada East", + "Central US", + "East US", + "East US 2", + "East US STG", + "North Central US", + "South Central US", + "South Central US STG", + "West Central US", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "tagnamespaces", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "tagNamespaceOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-06-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2016-06-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2020-01-01", + "2019-09-01", + "2019-05-01", + "2019-04-01", + "2019-03-01", + "2018-11-01", + "2018-09-01", + "2018-08-01", + "2018-07-01", + "2018-05-01", + "2018-02-01", + "2018-01-01", + "2017-08-01", + "2017-06-01", + "2017-05-10", + "2017-05-01", + "2017-03-01", + "2016-09-01", + "2016-07-01", + "2016-06-01", + "2016-02-01", + "2015-11-01", + "2015-01-01", + "2014-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "tenants", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-06-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2018-05-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2019-09-01", + "2019-05-01", + "2019-04-01", + "2019-03-01", + "2018-11-01", + "2018-09-01", + "2018-08-01", + "2018-07-01", + "2018-05-01", + "2018-02-01", + "2018-01-01", + "2017-08-01", + "2017-06-01", + "2017-05-10", + "2017-05-01", + "2017-03-01", + "2016-09-01", + "2016-07-01", + "2016-06-01", + "2016-02-01", + "2015-11-01", + "2015-01-01", + "2014-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-06-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2019-09-01", + "2019-05-01", + "2019-04-01", + "2019-03-01", + "2018-11-01", + "2018-09-01", + "2018-08-01", + "2018-07-01", + "2018-05-01", + "2018-02-01", + "2018-01-01", + "2017-08-01", + "2017-06-01", + "2017-05-10", + "2017-05-01", + "2017-03-01", + "2016-09-01", + "2016-07-01", + "2016-06-01", + "2016-02-01", + "2015-11-01", + "2015-01-01", + "2014-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operationresults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-09-01", + "2019-05-01", + "2019-04-01", + "2019-03-01", + "2018-11-01", + "2018-09-01", + "2018-08-01", + "2018-07-01", + "2018-05-01", + "2018-02-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "notifyResourceJobs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2022-09-01", + "2019-10-01", + "2019-05-01", + "2019-04-01", + "2019-03-01", + "2018-11-01" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "tags", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-05-01", + "2019-04-01", + "2019-03-01", + "2018-11-01", + "2018-09-01", + "2018-08-01", + "2018-07-01", + "2018-05-01", + "2018-02-01", + "2018-01-01", + "2017-08-01", + "2017-06-01", + "2017-05-10", + "2017-05-01", + "2017-03-01", + "2016-09-01", + "2016-07-01", + "2016-06-01", + "2016-02-01", + "2015-11-01", + "2015-01-01", + "2014-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkPolicyCompliance", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-06-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2018-05-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2019-05-01", + "2019-04-01", + "2019-03-01", + "2018-11-01", + "2018-09-01", + "2018-08-01", + "2018-07-01", + "2018-05-01", + "2018-02-01", + "2018-01-01", + "2017-08-01", + "2017-06-01", + "2017-05-10", + "2017-05-01", + "2017-03-01", + "2016-09-01", + "2016-07-01", + "2016-06-01", + "2016-02-01", + "2015-11-01", + "2015-01-01", + "2014-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "providers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-06-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2019-05-01", + "2019-04-01", + "2019-03-01", + "2018-11-01", + "2018-09-01", + "2018-08-01", + "2018-07-01", + "2018-05-01", + "2018-02-01", + "2018-01-01", + "2017-08-01", + "2017-06-01", + "2017-05-10", + "2017-05-01", + "2017-03-01", + "2016-09-01", + "2016-07-01", + "2016-06-01", + "2016-02-01", + "2015-11-01", + "2015-01-01", + "2014-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkresourcename", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-06-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2023-07-01", + "2022-09-01", + "2019-09-01", + "2019-05-01", + "2019-04-01", + "2019-03-01", + "2018-11-01", + "2018-09-01", + "2018-08-01", + "2018-07-01", + "2018-05-01", + "2018-02-01", + "2018-01-01", + "2017-08-01", + "2017-06-01", + "2017-05-10", + "2017-05-01", + "2017-03-01", + "2016-09-01", + "2016-07-01", + "2016-06-01", + "2016-02-01", + "2015-11-01", + "2015-01-01", + "2014-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "calculateTemplateHash", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-06-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2018-05-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2019-09-01", + "2019-05-01", + "2019-04-01", + "2019-03-01", + "2018-11-01", + "2018-09-01", + "2018-08-01", + "2018-07-01", + "2018-05-01", + "2018-02-01", + "2018-01-01", + "2017-08-01", + "2017-06-01", + "2017-05-10", + "2017-05-01", + "2017-03-01", + "2016-09-01", + "2016-07-01", + "2016-06-01", + "2016-02-01", + "2015-11-01", + "2015-01-01", + "2014-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "resources", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-06-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2016-06-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2019-10-01", + "2019-09-01", + "2019-05-01", + "2019-04-01", + "2019-03-01", + "2018-11-01", + "2018-09-01", + "2018-08-01", + "2018-07-01", + "2018-05-01", + "2018-02-01", + "2018-01-01", + "2017-08-01", + "2017-06-01", + "2017-05-10", + "2017-05-01", + "2017-03-01", + "2016-09-01", + "2016-07-01", + "2016-06-01", + "2016-02-01", + "2015-11-01", + "2015-01-01", + "2014-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "subscriptions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-06-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2018-05-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2019-09-01", + "2019-05-01", + "2019-04-01", + "2019-03-01", + "2018-11-01", + "2018-09-01", + "2018-08-01", + "2018-07-01", + "2018-05-01", + "2018-02-01", + "2018-01-01", + "2017-08-01", + "2017-06-01", + "2017-05-10", + "2017-05-01", + "2017-03-01", + "2016-09-01", + "2016-07-01", + "2016-06-01", + "2016-02-01", + "2015-11-01", + "2015-01-01", + "2014-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "subscriptions/resources", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-06-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2018-05-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2019-05-01", + "2019-04-01", + "2019-03-01", + "2018-11-01", + "2018-09-01", + "2018-08-01", + "2018-07-01", + "2018-05-01", + "2018-02-01", + "2018-01-01", + "2017-08-01", + "2017-06-01", + "2017-05-10", + "2017-05-01", + "2017-03-01", + "2016-09-01", + "2016-07-01", + "2016-06-01", + "2016-02-01", + "2015-11-01", + "2015-01-01", + "2014-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "subscriptions/providers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-06-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2018-05-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2019-05-01", + "2019-04-01", + "2019-03-01", + "2018-11-01", + "2018-09-01", + "2018-08-01", + "2018-07-01", + "2018-05-01", + "2018-02-01", + "2018-01-01", + "2017-08-01", + "2017-06-01", + "2017-05-10", + "2017-05-01", + "2017-03-01", + "2016-09-01", + "2016-07-01", + "2016-06-01", + "2016-02-01", + "2015-11-01", + "2015-01-01", + "2014-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "subscriptions/operationresults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-06-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2018-05-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2019-05-01", + "2019-04-01", + "2019-03-01", + "2018-11-01", + "2018-09-01", + "2018-08-01", + "2018-07-01", + "2018-05-01", + "2018-02-01", + "2018-01-01", + "2017-08-01", + "2017-06-01", + "2017-05-10", + "2017-05-01", + "2017-03-01", + "2016-09-01", + "2016-07-01", + "2016-06-01", + "2016-02-01", + "2015-11-01", + "2015-01-01", + "2014-04-01-preview" + ], + "capabilities": "SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "East Asia", + "Southeast Asia", + "East US", + "East US 2", + "West US", + "West US 2", + "North Central US", + "South Central US", + "West Central US", + "North Europe", + "West Europe", + "Japan East", + "Japan West", + "Brazil South", + "Australia Southeast", + "Australia East", + "West India", + "South India", + "Central India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Qatar Central", + "Sweden Central", + "Israel Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "resourceGroups", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-06-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2018-05-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2019-05-01", + "2019-04-01", + "2019-03-01", + "2018-11-01", + "2018-09-01", + "2018-08-01", + "2018-07-01", + "2018-05-01", + "2018-02-01", + "2018-01-01", + "2017-08-01", + "2017-06-01", + "2017-05-10", + "2017-05-01", + "2017-03-01", + "2016-09-01", + "2016-07-01", + "2016-06-01", + "2016-02-01", + "2015-11-01", + "2015-01-01", + "2014-04-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "East Asia", + "Southeast Asia", + "East US", + "East US 2", + "West US", + "West US 2", + "North Central US", + "South Central US", + "West Central US", + "North Europe", + "West Europe", + "Japan East", + "Japan West", + "Brazil South", + "Australia Southeast", + "Australia East", + "West India", + "South India", + "Central India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3", + "Qatar Central", + "Sweden Central", + "Israel Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "subscriptions/resourceGroups", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-06-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2018-05-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2019-05-01", + "2019-04-01", + "2019-03-01", + "2018-11-01", + "2018-09-01", + "2018-08-01", + "2018-07-01", + "2018-05-01", + "2018-02-01", + "2018-01-01", + "2017-08-01", + "2017-06-01", + "2017-05-10", + "2017-05-01", + "2017-03-01", + "2016-09-01", + "2016-07-01", + "2016-06-01", + "2016-02-01", + "2015-11-01", + "2015-01-01", + "2014-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "subscriptions/resourcegroups/resources", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-06-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2016-06-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2019-05-01", + "2019-04-01", + "2019-03-01", + "2018-11-01", + "2018-09-01", + "2018-08-01", + "2018-07-01", + "2018-05-01", + "2018-02-01", + "2018-01-01", + "2017-08-01", + "2017-06-01", + "2017-05-10", + "2017-05-01", + "2017-03-01", + "2016-09-01", + "2016-07-01", + "2016-06-01", + "2016-02-01", + "2015-11-01", + "2015-01-01", + "2014-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "subscriptions/locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-06-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2018-05-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2023-07-01", + "2022-09-01", + "2019-05-01", + "2019-04-01", + "2019-03-01", + "2018-11-01", + "2018-09-01", + "2018-08-01", + "2018-07-01", + "2018-05-01", + "2018-02-01", + "2018-01-01", + "2017-08-01", + "2017-06-01", + "2017-05-10", + "2017-05-01", + "2017-03-01", + "2016-09-01", + "2016-07-01", + "2016-06-01", + "2016-02-01", + "2015-11-01", + "2015-01-01", + "2014-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "subscriptions/tagnames", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-06-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2018-05-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2023-07-01", + "2022-09-01", + "2019-05-01", + "2019-04-01", + "2019-03-01", + "2018-11-01", + "2018-09-01", + "2018-08-01", + "2018-07-01", + "2018-05-01", + "2018-02-01", + "2018-01-01", + "2017-08-01", + "2017-06-01", + "2017-05-10", + "2017-05-01", + "2017-03-01", + "2016-09-01", + "2016-07-01", + "2016-06-01", + "2016-02-01", + "2015-11-01", + "2015-01-01", + "2014-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "subscriptions/tagNames/tagValues", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-06-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2018-05-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2023-07-01", + "2022-09-01", + "2021-04-01", + "2021-01-01", + "2020-10-01", + "2020-06-01", + "2019-09-01", + "2019-08-01", + "2019-05-01", + "2019-04-01", + "2019-03-01", + "2018-11-01", + "2018-09-01", + "2018-08-01", + "2018-07-01", + "2018-05-01", + "2018-02-01", + "2018-01-01", + "2017-08-01", + "2017-06-01", + "2017-05-10", + "2017-05-01", + "2017-03-01", + "2016-09-01", + "2016-07-01", + "2016-06-01", + "2016-02-01", + "2015-11-01", + "2015-01-01", + "2014-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "deployments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-06-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2018-05-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2023-07-01", + "2022-09-01", + "2021-04-01", + "2021-01-01", + "2020-10-01", + "2020-06-01", + "2019-09-01", + "2019-05-01", + "2019-04-01", + "2019-03-01", + "2018-11-01", + "2018-09-01", + "2018-08-01", + "2018-07-01", + "2018-05-01", + "2018-02-01", + "2018-01-01", + "2017-08-01", + "2017-06-01", + "2017-05-10", + "2017-05-01", + "2017-03-01", + "2016-09-01", + "2016-07-01", + "2016-06-01", + "2016-02-01", + "2015-11-01", + "2015-01-01", + "2014-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "deployments/operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "validateResources", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2016-06-01", + "profileVersion": "2018-06-01-profile" + }, + { + "apiVersion": "2018-05-01", + "profileVersion": "2019-03-01-hybrid" + } + ], + "apiVersions": [ + "2019-05-01", + "2019-04-01", + "2019-03-01", + "2018-11-01", + "2018-09-01", + "2018-08-01", + "2018-07-01", + "2018-05-01", + "2018-02-01", + "2018-01-01", + "2017-08-01", + "2017-06-01", + "2017-05-10", + "2017-05-01", + "2017-03-01", + "2016-09-01", + "2016-07-01", + "2016-06-01", + "2016-02-01", + "2015-11-01", + "2015-01-01", + "2014-04-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "links", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2015-01-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2015-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-05-01", + "2019-04-01", + "2019-03-01", + "2018-11-01", + "2018-09-01", + "2018-08-01", + "2018-07-01", + "2018-05-01", + "2018-02-01", + "2018-01-01", + "2017-08-01", + "2017-06-01", + "2017-05-10", + "2017-05-01", + "2017-03-01", + "2016-09-01", + "2016-07-01", + "2016-06-01", + "2016-02-01", + "2015-11-01", + "2015-01-01", + "2014-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "bulkDelete", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-03-01-preview", + "2022-05-01", + "2022-03-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "changes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-11-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "snapshots", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "f738ef14-47dc-4564-b53b-45069484ccc7", + "roleDefinitionId": "b131dd2d-387a-4cae-bb9b-3d021f80d1e6" + }, + { + "applicationId": "20e940b3-4c77-4b0b-9a53-9e16a1b010a7" + }, + { + "applicationId": "5b712e99-51a3-41ce-86ff-046e0081c5c0" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.SaaS", + "namespace": "Microsoft.SaaS", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-03-01-beta" + ], + "capabilities": "CrossResourceGroupResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "applications", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-03-01-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "checknameavailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-03-01-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "saasresources", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-03-01-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-03-01-beta" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-03-01-beta" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "resources", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "02d2a314-8dbb-47d3-8a77-1677403097de", + "roleDefinitionId": "b0314e60-29a9-43cb-93a8-70cc7d85f4a5" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.SaaSHub", + "namespace": "Microsoft.SaaSHub", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Brazil South", + "Canada East", + "Central US", + "East Asia", + "East US 2", + "North Central US", + "North Europe", + "South Central US", + "UK South", + "West Central US", + "West Europe", + "West US 3" + ], + "properties": null, + "resourceType": "cloudServices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "registeredSubscriptions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "canCreate", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Brazil South", + "Canada East", + "Central US", + "East Asia", + "East US 2", + "North Central US", + "North Europe", + "South Central US", + "UK South", + "West Central US", + "West Europe", + "West US 3" + ], + "properties": null, + "resourceType": "locations/operationStatuses", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "d3315f6c-968a-40bb-94d2-a6a9503b05f5", + "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635", + "roleDefinitionId": "a51caa68-288c-4fb0-87d2-a722d0910d90" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Scom", + "namespace": "Microsoft.Scom", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-07-preview", + "2022-09-13-preview", + "2022-04-30-preview", + "2021-06-30-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US 2 EUAP", + "Central US EUAP", + "West Europe", + "West US" + ], + "properties": null, + "resourceType": "locations/operationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-07-preview", + "2023-06-30", + "2022-09-13-preview", + "2022-04-30-preview", + "2021-06-30-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-07-preview", + "2023-06-30", + "2022-09-13-preview", + "2022-04-30-preview", + "2021-06-30-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-07-preview", + "2022-09-13-preview", + "2022-04-30-preview", + "2021-06-30-preview" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-09-13-preview", + "locationMappings": null, + "locations": [ + "West Europe", + "West US" + ], + "properties": null, + "resourceType": "managedInstances", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-07-preview" + ], + "capabilities": "SystemAssignedResourceIdentity", + "defaultApiVersion": "2023-07-07-preview", + "locationMappings": null, + "locations": [ + "West Europe", + "West US" + ], + "properties": null, + "resourceType": "managedInstances/monitoredResources", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-07-preview" + ], + "capabilities": "SystemAssignedResourceIdentity", + "defaultApiVersion": "2023-07-07-preview", + "locationMappings": null, + "locations": [ + "West Europe", + "West US" + ], + "properties": null, + "resourceType": "managedInstances/managedGateways", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "319f651f-7ddb-4fc6-9857-7aef9250bd05", + "roleDefinitionId": "4fe6d683-8411-4247-8525-b6b5b8a80669" + }, + { + "applicationId": "221b292f-8924-4ac4-9b27-8472d9b38904", + "roleDefinitionId": "d8789544-8dde-4724-801f-71c1ab1274fd" + }, + { + "applicationId": "d2a590e7-6906-4a45-8f41-cecfdca9bca1", + "roleDefinitionId": "d8789544-8dde-4724-801f-71c1ab1274fd" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.ScVmm", + "namespace": "Microsoft.ScVmm", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview", + "2022-05-21-preview", + "2020-06-05-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview", + "2022-05-21-preview", + "2020-06-05-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West US 2", + "East US 2 EUAP", + "West Europe", + "East US 2", + "North Europe" + ], + "properties": null, + "resourceType": "Locations/OperationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview", + "2022-05-21-preview", + "2020-06-05-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview", + "2022-05-21-preview", + "2020-06-05-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West US 2", + "East US 2", + "North Europe" + ], + "properties": null, + "resourceType": "VMMServers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview", + "2022-05-21-preview", + "2020-06-05-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West US 2", + "East US 2", + "North Europe" + ], + "properties": null, + "resourceType": "Clouds", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview", + "2022-05-21-preview", + "2020-06-05-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West US 2", + "East US 2", + "North Europe" + ], + "properties": null, + "resourceType": "VirtualNetworks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview", + "2022-05-21-preview", + "2020-06-05-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West US 2", + "East US 2", + "North Europe" + ], + "properties": null, + "resourceType": "VirtualMachineTemplates", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview", + "2022-05-21-preview", + "2020-06-05-preview" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West US 2", + "East US 2", + "North Europe" + ], + "properties": null, + "resourceType": "VirtualMachines", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview", + "2022-05-21-preview", + "2020-06-05-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West US 2", + "East US 2", + "North Europe" + ], + "properties": null, + "resourceType": "AvailabilitySets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview", + "2022-05-21-preview", + "2020-06-05-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West US 2", + "East US 2", + "North Europe" + ], + "properties": null, + "resourceType": "VMMServers/InventoryItems", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview", + "2022-05-21-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe" + ], + "properties": null, + "resourceType": "VirtualMachines/HybridIdentityMetadata", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview", + "2022-05-21-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe" + ], + "properties": null, + "resourceType": "VirtualMachines/GuestAgents", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview", + "2022-05-21-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe" + ], + "properties": null, + "resourceType": "VirtualMachines/Extensions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe", + "West US 2", + "East US 2", + "North Europe" + ], + "properties": null, + "resourceType": "VirtualMachineInstances", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "29820072-374d-49b8-945a-3941d7e9b468", + "roleDefinitionId": "4ddf1807-30b0-464a-9d16-a8822daf866b" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.SecurityDetonation", + "namespace": "Microsoft.SecurityDetonation", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-07-01", + "2021-07-01", + "2020-07-01-preview", + "2019-08-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-07-01", + "locationMappings": null, + "locations": [ + "Australia East", + "Australia Southeast", + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "West US 3", + "South Central US", + "Southeast Asia", + "Brazil South", + "Japan East", + "Japan West", + "North Europe", + "West Europe", + "Central India", + "West India", + "South India", + "Canada Central", + "Canada East", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE Central", + "Switzerland West", + "Germany North", + "Norway West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "chambers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-07-01", + "2021-07-01", + "2020-07-01-preview", + "2019-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Australia Southeast", + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "West US 3", + "South Central US", + "Southeast Asia", + "Brazil South", + "Japan East", + "Japan West", + "North Europe", + "West Europe", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE Central", + "Switzerland West", + "Germany North", + "Norway West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-07-01", + "2021-07-01", + "2020-07-01-preview", + "2019-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Australia Southeast", + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "West US 3", + "South Central US", + "Southeast Asia", + "Brazil South", + "Japan East", + "Japan West", + "North Europe", + "West Europe", + "Central India", + "West India", + "South India", + "Canada Central", + "Canada East", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE Central", + "Switzerland West", + "Germany North", + "Norway West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-07-01", + "2021-07-01", + "2020-07-01-preview", + "2019-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Australia Southeast", + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "West US 3", + "South Central US", + "Southeast Asia", + "Brazil South", + "Japan East", + "Japan West", + "North Europe", + "West Europe", + "Central India", + "West India", + "South India", + "Canada Central", + "Canada East", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE Central", + "Switzerland West", + "Germany North", + "Norway West", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "7bf610f7-ecaf-43a2-9dbc-33b14314d6fe", + "roleDefinitionId": "c1fd2c8f-ad2b-4c4f-af7f-b7214a7a6e82" + }, + { + "applicationId": "1220eac7-3b19-4572-be70-aa544a2e5f74" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.SecurityDevOps", + "namespace": "Microsoft.SecurityDevOps", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2022-09-01-preview", + "2021-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2022-09-01-preview", + "2021-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Central US", + "West Europe" + ], + "properties": null, + "resourceType": "Locations/OperationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2022-09-01-preview", + "2021-10-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "West Europe", + "Australia East" + ], + "properties": null, + "resourceType": "gitHubConnectors", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2022-09-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "West Europe", + "Australia East" + ], + "properties": null, + "resourceType": "azureDevOpsConnectors", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2022-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "West Europe", + "Australia East" + ], + "properties": null, + "resourceType": "azureDevOpsConnectors/orgs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2022-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "West Europe", + "Australia East" + ], + "properties": null, + "resourceType": "gitHubConnectors/owners", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2022-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "West Europe", + "Australia East" + ], + "properties": null, + "resourceType": "azureDevOpsConnectors/orgs/projects", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2022-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "West Europe", + "Australia East" + ], + "properties": null, + "resourceType": "gitHubConnectors/owners/repos", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2022-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "West Europe", + "Australia East" + ], + "properties": null, + "resourceType": "azureDevOpsConnectors/orgs/projects/repos", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2022-09-01-preview", + "2021-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2022-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "West Europe", + "Australia East" + ], + "properties": null, + "resourceType": "gitHubConnectors/stats", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2022-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "West Europe", + "Australia East" + ], + "properties": null, + "resourceType": "gitHubConnectors/repos", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2022-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "West Europe", + "Australia East" + ], + "properties": null, + "resourceType": "azureDevOpsConnectors/stats", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview", + "2022-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "West Europe", + "Australia East" + ], + "properties": null, + "resourceType": "azureDevOpsConnectors/repos", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "West Europe", + "Australia East" + ], + "properties": null, + "resourceType": "gitLabConnectors", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "West Europe", + "Australia East" + ], + "properties": null, + "resourceType": "gitHubConnectors/gitHubInstallations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "West Europe", + "Australia East" + ], + "properties": null, + "resourceType": "gitHubConnectors/gitHubInstallations/gitHubRepositories", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "West Europe", + "Australia East" + ], + "properties": null, + "resourceType": "gitLabConnectors/groups", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "West Europe", + "Australia East" + ], + "properties": null, + "resourceType": "gitLabConnectors/projects", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "West Europe", + "Australia East" + ], + "properties": null, + "resourceType": "gitLabConnectors/stats", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "West Europe", + "Australia East" + ], + "properties": null, + "resourceType": "gitLabConnectors/groups/projects", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "98785600-1bb7-4fb9-b9fa-19afe2c8a360", + "roleDefinitionId": "ef1c46aa-ae81-4091-ab83-f75f28efb7b8" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.SecurityInsights", + "namespace": "Microsoft.SecurityInsights", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01-preview", + "2023-06-01-preview", + "2023-05-01-preview", + "2023-04-01-preview", + "2023-03-01-preview", + "2023-02-01-preview", + "2023-02-01", + "2022-12-01-preview", + "2022-11-01-preview", + "2022-11-01", + "2022-10-01-preview", + "2022-09-01-preview", + "2022-08-01-preview", + "2022-08-01", + "2022-07-01-preview", + "2022-06-01-preview", + "2022-05-01-preview", + "2022-04-01-preview", + "2022-01-01-preview", + "2021-10-01-preview", + "2021-10-01", + "2021-09-01-preview", + "2021-04-01", + "2021-03-01-preview", + "2020-01-01", + "2019-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01-preview", + "2023-06-01-preview", + "2023-05-01-preview", + "2023-04-01-preview", + "2023-03-01-preview", + "2023-02-01-preview", + "2023-02-01", + "2022-12-01-preview", + "2022-11-01-preview", + "2022-11-01", + "2022-10-01-preview", + "2022-09-01-preview", + "2022-08-01-preview", + "2022-08-01", + "2022-07-01-preview", + "2022-06-01-preview", + "2022-05-01-preview", + "2022-04-01-preview", + "2022-01-01-preview", + "2021-10-01-preview", + "2021-10-01", + "2021-09-01-preview", + "2021-03-01-preview", + "2020-01-01", + "2019-01-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Israel Central", + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany West Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "alertRules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01-preview", + "2023-06-01-preview", + "2023-05-01-preview", + "2023-04-01-preview", + "2023-03-01-preview", + "2023-02-01-preview", + "2023-02-01", + "2022-12-01-preview", + "2022-11-01-preview", + "2022-11-01", + "2022-10-01-preview", + "2022-09-01-preview", + "2022-08-01-preview", + "2022-08-01", + "2022-07-01-preview", + "2022-06-01-preview", + "2022-05-01-preview", + "2022-04-01-preview", + "2022-01-01-preview", + "2021-10-01-preview", + "2021-10-01", + "2021-09-01-preview", + "2021-03-01-preview", + "2020-01-01", + "2019-01-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Israel Central", + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany West Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "alertRuleTemplates", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01-preview", + "2023-06-01-preview", + "2023-05-01-preview", + "2023-04-01-preview", + "2023-03-01-preview", + "2023-02-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Israel Central", + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany West Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "triggeredAnalyticsRuleRuns", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-01-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Israel Central", + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany West Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "cases", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01-preview", + "2023-06-01-preview", + "2023-05-01-preview", + "2023-04-01-preview", + "2023-03-01-preview", + "2023-02-01-preview", + "2023-02-01", + "2022-12-01-preview", + "2022-11-01-preview", + "2022-11-01", + "2022-10-01-preview", + "2022-09-01-preview", + "2022-08-01-preview", + "2022-08-01", + "2022-07-01-preview", + "2022-06-01-preview", + "2022-05-01-preview", + "2022-04-01-preview", + "2022-01-01-preview", + "2021-10-01-preview", + "2021-10-01", + "2021-09-01-preview", + "2020-01-01", + "2019-01-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Israel Central", + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany West Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "bookmarks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01-preview", + "2023-06-01-preview", + "2023-05-01-preview", + "2023-04-01-preview", + "2023-03-01-preview", + "2023-02-01-preview", + "2023-02-01", + "2022-12-01-preview", + "2022-11-01-preview", + "2022-11-01", + "2022-10-01-preview", + "2022-09-01-preview", + "2022-08-01-preview", + "2022-08-01", + "2022-07-01-preview", + "2022-06-01-preview", + "2022-05-01-preview", + "2022-04-01-preview", + "2022-01-01-preview", + "2021-10-01-preview", + "2021-10-01", + "2021-09-01-preview", + "2021-03-01-preview", + "2020-01-01", + "2019-01-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Israel Central", + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany West Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "dataConnectors", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01-preview", + "2023-06-01-preview", + "2023-05-01-preview", + "2023-04-01-preview", + "2023-03-01-preview", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-11-01-preview", + "2022-10-01-preview", + "2022-09-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Israel Central", + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany West Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "dataConnectorDefinitions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01-preview", + "2023-06-01-preview", + "2023-05-01-preview", + "2023-04-01-preview", + "2023-03-01-preview", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-11-01-preview", + "2022-10-01-preview", + "2022-09-01-preview", + "2022-08-01-preview", + "2022-07-01-preview", + "2022-06-01-preview", + "2022-05-01-preview", + "2022-04-01-preview", + "2022-01-01-preview", + "2021-10-01-preview", + "2021-09-01-preview", + "2019-01-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Israel Central", + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany West Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "dataConnectorsCheckRequirements", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01-preview", + "2023-06-01-preview", + "2023-05-01-preview", + "2023-04-01-preview", + "2023-03-01-preview", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-11-01-preview", + "2022-10-01-preview", + "2022-09-01-preview", + "2022-08-01-preview", + "2022-07-01-preview", + "2022-06-01-preview", + "2022-05-01-preview", + "2022-04-01-preview", + "2022-01-01-preview", + "2021-10-01-preview", + "2021-09-01-preview", + "2019-01-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Israel Central", + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany West Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "enrichment", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01-preview", + "2023-06-01-preview", + "2023-05-01-preview", + "2023-04-01-preview", + "2023-03-01-preview", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-11-01-preview", + "2022-10-01-preview", + "2022-09-01-preview", + "2022-08-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Israel Central", + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany West Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "fileImports", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01-preview", + "2023-06-01-preview", + "2023-05-01-preview", + "2023-04-01-preview", + "2023-03-01-preview", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-11-01-preview", + "2022-10-01-preview", + "2022-09-01-preview", + "2022-08-01-preview", + "2022-07-01-preview", + "2022-06-01-preview", + "2022-05-01-preview", + "2022-04-01-preview", + "2022-01-01-preview", + "2021-10-01-preview", + "2021-09-01-preview", + "2019-01-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Israel Central", + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany West Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "entities", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01-preview", + "2023-06-01-preview", + "2023-05-01-preview", + "2023-04-01-preview", + "2023-03-01-preview", + "2023-02-01-preview", + "2023-02-01", + "2022-12-01-preview", + "2022-11-01-preview", + "2022-11-01", + "2022-10-01-preview", + "2022-09-01-preview", + "2022-08-01-preview", + "2022-08-01", + "2022-07-01-preview", + "2022-06-01-preview", + "2022-05-01-preview", + "2022-04-01-preview", + "2022-01-01-preview", + "2021-10-01-preview", + "2021-10-01", + "2021-09-01-preview", + "2021-04-01", + "2021-03-01-preview", + "2020-01-01", + "2019-01-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Israel Central", + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany West Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "incidents", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01-preview", + "2023-06-01-preview", + "2023-05-01-preview", + "2023-04-01-preview", + "2023-03-01-preview", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-11-01-preview", + "2022-10-01-preview", + "2022-09-01-preview", + "2022-08-01-preview", + "2022-07-01-preview", + "2022-06-01-preview", + "2022-05-01-preview", + "2022-04-01-preview", + "2022-01-01-preview", + "2021-10-01-preview", + "2021-09-01-preview", + "2019-01-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Israel Central", + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany West Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "officeConsents", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01-preview", + "2023-06-01-preview", + "2023-05-01-preview", + "2023-04-01-preview", + "2023-03-01-preview", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-11-01-preview", + "2022-10-01-preview", + "2022-09-01-preview", + "2022-08-01-preview", + "2022-07-01-preview", + "2022-06-01-preview", + "2022-05-01-preview", + "2022-04-01-preview", + "2022-01-01-preview", + "2021-10-01-preview", + "2021-09-01-preview", + "2021-03-01-preview", + "2019-01-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Israel Central", + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany West Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "settings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-01-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Israel Central", + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany West Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "aggregations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01-preview", + "2023-06-01-preview", + "2023-05-01-preview", + "2023-04-01-preview", + "2023-03-01-preview", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-11-01-preview", + "2022-10-01-preview", + "2022-09-01-preview", + "2022-08-01-preview", + "2022-07-01-preview", + "2022-06-01-preview", + "2022-05-01-preview", + "2022-04-01-preview", + "2022-01-01-preview", + "2021-10-01-preview", + "2021-09-01-preview", + "2021-03-01-preview", + "2019-01-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Israel Central", + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany West Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "entityQueries", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01-preview", + "2023-06-01-preview", + "2023-05-01-preview", + "2023-04-01-preview", + "2023-03-01-preview", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-11-01-preview", + "2022-10-01-preview", + "2022-09-01-preview", + "2022-08-01-preview", + "2022-07-01-preview", + "2022-06-01-preview", + "2022-05-01-preview", + "2022-04-01-preview", + "2022-01-01-preview", + "2021-10-01-preview", + "2021-09-01-preview", + "2021-03-01-preview", + "2019-01-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Israel Central", + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany West Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "entityQueryTemplates", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01-preview", + "2023-06-01-preview", + "2023-05-01-preview", + "2023-04-01-preview", + "2023-03-01-preview", + "2023-02-01-preview", + "2023-02-01", + "2022-12-01-preview", + "2022-11-01-preview", + "2022-11-01", + "2022-10-01-preview", + "2022-09-01-preview", + "2022-08-01-preview", + "2022-08-01", + "2022-07-01-preview", + "2022-06-01-preview", + "2022-05-01-preview", + "2022-04-01-preview", + "2022-01-01-preview", + "2021-10-01-preview", + "2021-10-01", + "2021-09-01-preview", + "2021-04-01", + "2019-01-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Israel Central", + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany West Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "threatIntelligence", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01-preview", + "2023-06-01-preview", + "2023-05-01-preview", + "2023-04-01-preview", + "2023-03-01-preview", + "2023-02-01-preview", + "2023-02-01", + "2022-12-01-preview", + "2022-11-01-preview", + "2022-11-01", + "2022-10-01-preview", + "2022-09-01-preview", + "2022-08-01-preview", + "2022-08-01", + "2022-07-01-preview", + "2022-06-01-preview", + "2022-05-01-preview", + "2022-04-01-preview", + "2022-01-01-preview", + "2021-10-01-preview", + "2021-10-01", + "2021-09-01-preview", + "2019-01-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Israel Central", + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany West Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "automationRules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01-preview", + "2023-06-01-preview", + "2023-05-01-preview", + "2023-04-01-preview", + "2023-03-01-preview", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-11-01-preview", + "2022-10-01-preview", + "2022-09-01-preview", + "2022-08-01-preview", + "2022-07-01-preview", + "2022-06-01-preview", + "2022-05-01-preview", + "2022-04-01-preview", + "2022-01-01-preview", + "2021-10-01-preview", + "2021-09-01-preview", + "2021-03-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Israel Central", + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany West Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "sourceControls", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01-preview", + "2023-06-01-preview", + "2023-05-01-preview", + "2023-04-01-preview", + "2023-03-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Israel Central", + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany West Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "exportConnections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01-preview", + "2023-06-01-preview", + "2023-05-01-preview", + "2023-04-01-preview", + "2023-03-01-preview", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-11-01-preview", + "2022-10-01-preview", + "2022-09-01-preview", + "2022-08-01-preview", + "2022-07-01-preview", + "2022-06-01-preview", + "2022-05-01-preview", + "2022-04-01-preview", + "2022-01-01-preview", + "2021-10-01-preview", + "2021-09-01-preview", + "2021-03-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Israel Central", + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany West Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "listrepositories", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01-preview", + "2023-06-01-preview", + "2023-05-01-preview", + "2023-04-01-preview", + "2023-03-01-preview", + "2023-02-01-preview", + "2023-02-01", + "2022-12-01-preview", + "2022-11-01-preview", + "2022-11-01", + "2022-10-01-preview", + "2022-09-01-preview", + "2022-08-01-preview", + "2022-08-01", + "2022-07-01-preview", + "2022-06-01-preview", + "2022-05-01-preview", + "2022-04-01-preview", + "2022-01-01-preview", + "2021-10-01-preview", + "2021-10-01", + "2021-09-01-preview", + "2021-04-01", + "2021-03-01-preview", + "2019-01-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Israel Central", + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany West Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "watchlists", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01-preview", + "2023-06-01-preview", + "2023-05-01-preview", + "2023-04-01-preview", + "2023-03-01-preview", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-11-01-preview", + "2022-10-01-preview", + "2022-09-01-preview", + "2022-08-01-preview", + "2022-07-01-preview", + "2022-06-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Israel Central", + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany West Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "confidentialWatchlists", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01-preview", + "2023-06-01-preview", + "2023-05-01-preview", + "2023-04-01-preview", + "2023-03-01-preview", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-11-01-preview", + "2022-10-01-preview", + "2022-09-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Israel Central", + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany West Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "huntsessions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01-preview", + "2023-06-01-preview", + "2023-05-01-preview", + "2023-04-01-preview", + "2023-03-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Israel Central", + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany West Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "dynamicSummaries", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01-preview", + "2023-06-01-preview", + "2023-05-01-preview", + "2023-04-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Israel Central", + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany West Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "hunts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01-preview", + "2023-06-01-preview", + "2023-05-01-preview", + "2023-04-01-preview", + "2023-03-01-preview", + "2023-02-01-preview", + "2023-02-01", + "2022-12-01-preview", + "2022-11-01-preview", + "2022-11-01", + "2022-10-01-preview", + "2022-09-01-preview", + "2022-08-01-preview", + "2022-08-01", + "2022-07-01-preview", + "2022-06-01-preview", + "2022-05-01-preview", + "2022-04-01-preview", + "2022-01-01-preview", + "2021-10-01-preview", + "2021-10-01", + "2021-09-01-preview", + "2021-03-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Israel Central", + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany West Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "onboardingStates", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01-preview", + "2023-06-01-preview", + "2023-05-01-preview", + "2023-04-01-preview", + "2023-03-01-preview", + "2023-02-01-preview", + "2023-02-01", + "2022-12-01-preview", + "2022-11-01-preview", + "2022-10-01-preview", + "2022-09-01-preview", + "2022-08-01-preview", + "2022-07-01-preview", + "2022-06-01-preview", + "2022-05-01-preview", + "2022-04-01-preview", + "2022-01-01-preview", + "2021-10-01-preview", + "2021-09-01-preview", + "2021-03-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Israel Central", + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany West Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "metadata", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01-preview", + "2023-06-01-preview", + "2023-05-01-preview", + "2023-04-01-preview", + "2023-03-01-preview", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-11-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Israel Central", + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany West Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "contentPackages", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01-preview", + "2023-06-01-preview", + "2023-05-01-preview", + "2023-04-01-preview", + "2023-03-01-preview", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-11-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Israel Central", + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany West Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "contentTemplates", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01-preview", + "2023-06-01-preview", + "2023-05-01-preview", + "2023-04-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Israel Central", + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany West Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "contentProductPackages", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01-preview", + "2023-06-01-preview", + "2023-05-01-preview", + "2023-04-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Israel Central", + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany West Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "contentProductTemplates", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01-preview", + "2023-06-01-preview", + "2023-05-01-preview", + "2023-04-01-preview", + "2023-03-01-preview", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-11-01-preview", + "2022-10-01-preview", + "2022-09-01-preview", + "2022-08-01-preview", + "2022-07-01-preview", + "2022-06-01-preview", + "2022-05-01-preview", + "2022-04-01-preview", + "2022-01-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Israel Central", + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany West Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "MitreCoverageRecords", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01-preview", + "2023-06-01-preview", + "2023-05-01-preview", + "2023-04-01-preview", + "2023-03-01-preview", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-11-01-preview", + "2022-10-01-preview", + "2022-09-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Israel Central", + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany West Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "overview", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01-preview", + "2023-06-01-preview", + "2023-05-01-preview", + "2023-04-01-preview", + "2023-03-01-preview", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-11-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Israel Central", + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany West Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "recommendations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01-preview", + "2023-06-01-preview", + "2023-05-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Israel Central", + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany West Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "billingStatistics", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01-preview", + "2023-06-01-preview", + "2023-05-01-preview", + "2023-04-01-preview", + "2023-03-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Israel Central", + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany West Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "workspaceManagerConfigurations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01-preview", + "2023-06-01-preview", + "2023-05-01-preview", + "2023-04-01-preview", + "2023-03-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Israel Central", + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany West Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "workspaceManagerMembers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01-preview", + "2023-06-01-preview", + "2023-05-01-preview", + "2023-04-01-preview", + "2023-03-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Israel Central", + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany West Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "workspaceManagerGroups", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01-preview", + "2023-06-01-preview", + "2023-05-01-preview", + "2023-04-01-preview", + "2023-03-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Israel Central", + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany West Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "workspaceManagerAssignments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-07-01-preview", + "2023-06-01-preview", + "2023-05-01-preview", + "2023-04-01-preview", + "2023-03-01-preview", + "2023-02-01-preview", + "2023-02-01", + "2022-12-01-preview", + "2022-11-01-preview", + "2022-11-01", + "2022-10-01-preview", + "2022-09-01-preview", + "2022-08-01-preview", + "2022-07-01-preview", + "2022-06-01-preview", + "2022-05-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Israel Central", + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany West Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "securityMLAnalyticsSettings", + "zoneMappings": null + } + ] + }, + { + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.SerialConsole", + "namespace": "Microsoft.SerialConsole", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationFree", + "registrationState": "Registered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-05-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "consoleServices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-05-01" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3", + "Qatar Central", + "Italy North", + "Poland Central" + ], + "properties": null, + "resourceType": "serialPorts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-05-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-05-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "East US 2" + ], + "properties": null, + "resourceType": "locations/consoleServices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-05-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "80a10ef9-8168-493d-abf9-3297c4ef6e3c", + "roleDefinitionId": "2b7763f7-bbe2-4e19-befe-28c79f1cf7f7" + }, + { + "applicationId": "eb070ea5-bd17-41f1-ad68-5851f6e71774" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.ServiceBus", + "namespace": "Microsoft.ServiceBus", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2022-10-01-preview", + "2022-01-01-preview", + "2021-11-01", + "2021-06-01-preview", + "2021-01-01-preview", + "2018-01-01-preview", + "2017-04-01", + "2015-08-01", + "2014-09-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2017-04-01", + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "namespaces", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2022-10-01-preview", + "2022-01-01-preview", + "2021-11-01", + "2021-06-01-preview", + "2021-01-01-preview", + "2018-01-01-preview", + "2017-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "namespaces/authorizationrules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2022-10-01-preview", + "2022-01-01-preview", + "2021-11-01", + "2021-06-01-preview", + "2021-01-01-preview", + "2018-01-01-preview", + "2017-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "namespaces/networkrulesets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-preview", + "2022-01-01-preview", + "2021-11-01", + "2021-06-01-preview", + "2021-01-01-preview", + "2018-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "namespaces/privateEndpointConnections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-preview", + "2022-01-01-preview", + "2021-11-01", + "2021-06-01-preview", + "2021-01-01-preview", + "2018-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "namespaces/privateEndpointConnectionProxies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2022-10-01-preview", + "2022-01-01-preview", + "2021-11-01", + "2021-06-01-preview", + "2021-01-01-preview", + "2018-01-01-preview", + "2017-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "namespaces/queues", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2022-10-01-preview", + "2022-01-01-preview", + "2021-11-01", + "2021-06-01-preview", + "2021-01-01-preview", + "2018-01-01-preview", + "2017-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "namespaces/queues/authorizationrules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2022-10-01-preview", + "2022-01-01-preview", + "2021-11-01", + "2021-06-01-preview", + "2021-01-01-preview", + "2018-01-01-preview", + "2017-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "namespaces/topics", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2022-10-01-preview", + "2022-01-01-preview", + "2021-11-01", + "2021-06-01-preview", + "2021-01-01-preview", + "2018-01-01-preview", + "2017-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "namespaces/topics/authorizationrules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2022-10-01-preview", + "2022-01-01-preview", + "2021-11-01", + "2021-06-01-preview", + "2021-01-01-preview", + "2018-01-01-preview", + "2017-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "namespaces/topics/subscriptions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2022-10-01-preview", + "2022-01-01-preview", + "2021-11-01", + "2021-06-01-preview", + "2021-01-01-preview", + "2018-01-01-preview", + "2017-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "namespaces/topics/subscriptions/rules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2015-08-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2015-08-01", + "2014-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkNamespaceAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2022-10-01-preview", + "2022-01-01-preview", + "2021-11-01", + "2021-06-01-preview", + "2021-01-01-preview", + "2018-01-01-preview", + "2017-04-01", + "2015-08-01", + "2014-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2022-01-01-preview", + "2021-11-01", + "2021-06-01-preview", + "2021-01-01-preview", + "2018-01-01-preview", + "2017-04-01", + "2015-08-01", + "2014-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "sku", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2022-01-01-preview", + "2021-11-01", + "2021-06-01-preview", + "2021-01-01-preview", + "2018-01-01-preview", + "2017-04-01", + "2015-08-01", + "2014-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "premiumMessagingRegions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2022-10-01-preview", + "2022-01-01-preview", + "2021-11-01", + "2021-06-01-preview", + "2021-01-01-preview", + "2017-04-01", + "2015-08-01", + "2014-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2017-04-01", + "2015-08-01", + "2014-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "namespaces/eventgridfilters", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2022-10-01-preview", + "2022-01-01-preview", + "2021-11-01", + "2021-06-01-preview", + "2021-01-01-preview", + "2018-01-01-preview", + "2017-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "namespaces/disasterrecoveryconfigs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2022-10-01-preview", + "2022-01-01-preview", + "2021-11-01", + "2021-06-01-preview", + "2021-01-01-preview", + "2018-01-01-preview", + "2017-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "namespaces/migrationConfigurations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2022-10-01-preview", + "2022-01-01-preview", + "2021-11-01", + "2021-06-01-preview", + "2021-01-01-preview", + "2018-01-01-preview", + "2017-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "namespaces/disasterrecoveryconfigs/checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2022-10-01-preview", + "2022-01-01-preview", + "2021-11-01", + "2021-06-01-preview", + "2021-01-01-preview", + "2018-01-01-preview", + "2017-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-preview", + "2022-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations/operationStatus", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-01-preview", + "2022-01-01-preview", + "2021-11-01", + "2021-06-01-preview", + "2021-01-01-preview", + "2018-01-01-preview", + "2017-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/namespaceOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2017-04-01", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2022-10-01-preview", + "2022-01-01-preview", + "2021-11-01", + "2021-06-01-preview", + "2021-01-01-preview", + "2018-01-01-preview", + "2017-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/deleteVirtualNetworkOrSubnets", + "zoneMappings": null + } + ] + }, + { + "authorization": { + "applicationId": "74cb6831-0dbb-4be1-8206-fd4df301cdc2", + "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635", + "roleDefinitionId": "e55cc65f-6903-4917-b4ef-f8d4640b57f5" + }, + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.ServiceFabric", + "namespace": "Microsoft.ServiceFabric", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-06-01", + "2020-12-01-privatepreview", + "2020-12-01-preview", + "2020-03-01", + "2019-11-01-privatepreview", + "2019-11-01-preview", + "2019-06-01-preview", + "2019-03-01-privatepreview", + "2019-03-01-preview", + "2019-03-01", + "2018-02-01-privatepreview", + "2018-02-01", + "2017-07-01-privatepreview", + "2017-07-01-preview", + "2016-09-01", + "2016-03-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "West US 2", + "West Central US", + "East US", + "East US 2", + "Central US", + "West Europe", + "North Europe", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "North Central US", + "East Asia", + "Southeast Asia", + "Japan West", + "Japan East", + "South India", + "West India", + "Central India", + "Brazil South", + "South Central US", + "Korea Central", + "Korea South", + "Canada Central", + "Canada East", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Italy North", + "Israel Central", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central" + ], + "properties": null, + "resourceType": "clusters", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-06-01", + "2020-12-01-privatepreview", + "2020-12-01-preview", + "2020-03-01", + "2019-11-01-privatepreview", + "2019-11-01-preview", + "2019-06-01-preview", + "2019-03-01-privatepreview", + "2019-03-01-preview", + "2019-03-01", + "2017-07-01-preview", + "2016-09-01", + "2016-03-01" + ], + "capabilities": "SystemAssignedResourceIdentity", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "West US 2", + "West Central US", + "East US", + "East US 2", + "Central US", + "West Europe", + "North Europe", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "North Central US", + "East Asia", + "Southeast Asia", + "Japan West", + "Japan East", + "South India", + "West India", + "Central India", + "Brazil South", + "South Central US", + "Korea Central", + "Korea South", + "Canada Central", + "Canada East", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Italy North", + "Israel Central", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central" + ], + "properties": null, + "resourceType": "clusters/applications", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-06-01", + "2020-12-01-privatepreview", + "2020-12-01-preview", + "2020-03-01", + "2019-11-01-privatepreview", + "2019-11-01-preview", + "2019-06-01-preview", + "2019-03-01-privatepreview", + "2019-03-01-preview", + "2019-03-01", + "2017-07-01-preview", + "2016-09-01", + "2016-03-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "West US 2", + "West Central US", + "East US", + "East US 2", + "Central US", + "West Europe", + "North Europe", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "North Central US", + "East Asia", + "Southeast Asia", + "Japan West", + "Japan East", + "South India", + "West India", + "Central India", + "Brazil South", + "South Central US", + "Korea Central", + "Korea South", + "Canada Central", + "Canada East", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Italy North", + "Israel Central", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central" + ], + "properties": null, + "resourceType": "clusters/applicationTypes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-06-01", + "2020-12-01-privatepreview", + "2020-12-01-preview", + "2020-03-01", + "2019-11-01-privatepreview", + "2019-11-01-preview", + "2019-06-01-preview", + "2019-03-01-privatepreview", + "2019-03-01-preview", + "2019-03-01", + "2017-07-01-preview", + "2016-09-01", + "2016-03-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "West US 2", + "West Central US", + "East US", + "East US 2", + "Central US", + "West Europe", + "North Europe", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "North Central US", + "East Asia", + "Southeast Asia", + "Japan West", + "Japan East", + "South India", + "West India", + "Central India", + "Brazil South", + "South Central US", + "Korea Central", + "Korea South", + "Canada Central", + "Canada East", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Italy North", + "Israel Central", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central" + ], + "properties": null, + "resourceType": "clusters/applicationTypes/versions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-06-01", + "2020-12-01-privatepreview", + "2020-12-01-preview", + "2020-03-01", + "2019-11-01-privatepreview", + "2019-11-01-preview", + "2019-06-01-preview", + "2019-03-01-privatepreview", + "2019-03-01-preview", + "2019-03-01", + "2017-07-01-preview", + "2016-09-01", + "2016-03-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "West US 2", + "West Central US", + "East US", + "East US 2", + "Central US", + "West Europe", + "North Europe", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "North Central US", + "East Asia", + "Southeast Asia", + "Japan West", + "Japan East", + "South India", + "West India", + "Central India", + "Brazil South", + "South Central US", + "Korea Central", + "Korea South", + "Canada Central", + "Canada East", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Italy North", + "Israel Central", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central" + ], + "properties": null, + "resourceType": "clusters/applications/services", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-06-01", + "2020-12-15-privatepreview", + "2020-12-15-preview", + "2020-12-01-privatepreview", + "2020-12-01-preview", + "2020-03-01", + "2020-02-01-privatepreview", + "2020-02-01-preview", + "2019-11-01-privatepreview", + "2019-11-01-preview", + "2019-06-01-preview", + "2019-03-01-privatepreview", + "2019-03-01-preview", + "2019-03-01", + "2018-02-01-privatepreview", + "2018-02-01", + "2017-07-01-privatepreview", + "2017-07-01-preview", + "2016-09-01", + "2016-03-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-06-01", + "2020-12-15-privatepreview", + "2020-12-15-preview", + "2020-12-01-privatepreview", + "2020-12-01-preview", + "2020-03-01", + "2020-02-01-privatepreview", + "2020-02-01-preview", + "2019-11-01-privatepreview", + "2019-11-01-preview", + "2019-06-01-preview", + "2019-03-01-privatepreview", + "2019-03-01-preview", + "2019-03-01", + "2018-02-01-privatepreview", + "2018-02-01", + "2017-07-01-privatepreview", + "2017-07-01-preview", + "2016-09-01", + "2016-03-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "West US 2", + "West Central US", + "East US", + "East US 2", + "Central US", + "West Europe", + "North Europe", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "North Central US", + "East Asia", + "Southeast Asia", + "Japan West", + "Japan East", + "South India", + "West India", + "Central India", + "Brazil South", + "South Central US", + "Korea Central", + "Korea South", + "Canada Central", + "Canada East", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Italy North", + "Israel Central", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central" + ], + "properties": null, + "resourceType": "locations/clusterVersions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-06-01", + "2020-12-15-privatepreview", + "2020-12-15-preview", + "2020-12-01-privatepreview", + "2020-12-01-preview", + "2020-03-01", + "2020-02-01-privatepreview", + "2020-02-01-preview", + "2019-11-01-privatepreview", + "2019-11-01-preview", + "2019-06-01-preview", + "2019-03-01-privatepreview", + "2019-03-01-preview", + "2019-03-01", + "2018-02-01-privatepreview", + "2018-02-01", + "2017-07-01-privatepreview", + "2017-07-01-preview", + "2016-09-01", + "2016-03-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "West US 2", + "West Central US", + "East US", + "East US 2", + "Central US", + "West Europe", + "North Europe", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "North Central US", + "East Asia", + "Southeast Asia", + "Japan West", + "Japan East", + "South India", + "West India", + "Central India", + "Brazil South", + "South Central US", + "Korea Central", + "Korea South", + "Canada Central", + "Canada East", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Italy North", + "Israel Central", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central" + ], + "properties": null, + "resourceType": "locations/environments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-06-01", + "2020-12-15-privatepreview", + "2020-12-15-preview", + "2020-12-01-privatepreview", + "2020-12-01-preview", + "2020-03-01", + "2020-02-01-privatepreview", + "2020-02-01-preview", + "2019-11-01-privatepreview", + "2019-11-01-preview", + "2019-06-01-preview", + "2019-03-01-privatepreview", + "2019-03-01-preview", + "2019-03-01", + "2018-02-01-privatepreview", + "2018-02-01", + "2017-07-01-privatepreview", + "2017-07-01-preview", + "2016-09-01", + "2016-03-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "West US 2", + "West Central US", + "East US", + "East US 2", + "Central US", + "West Europe", + "North Europe", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "North Central US", + "East Asia", + "Southeast Asia", + "Japan West", + "Japan East", + "South India", + "West India", + "Central India", + "Brazil South", + "South Central US", + "Korea Central", + "Korea South", + "Canada Central", + "Canada East", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Italy North", + "Israel Central", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central" + ], + "properties": null, + "resourceType": "locations/operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-06-01", + "2020-12-15-privatepreview", + "2020-12-15-preview", + "2020-12-01-privatepreview", + "2020-12-01-preview", + "2020-03-01", + "2020-02-01-privatepreview", + "2020-02-01-preview", + "2019-11-01-privatepreview", + "2019-11-01-preview", + "2019-06-01-preview", + "2019-03-01-privatepreview", + "2019-03-01-preview", + "2019-03-01", + "2018-02-01-privatepreview", + "2018-02-01", + "2017-07-01-privatepreview", + "2017-07-01-preview", + "2016-09-01", + "2016-03-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "West US 2", + "West Central US", + "East US", + "East US 2", + "Central US", + "West Europe", + "North Europe", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "North Central US", + "East Asia", + "Southeast Asia", + "Japan West", + "Japan East", + "South India", + "West India", + "Central India", + "Brazil South", + "South Central US", + "Korea Central", + "Korea South", + "Canada Central", + "Canada East", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Italy North", + "Israel Central", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central" + ], + "properties": null, + "resourceType": "locations/operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-06-01", + "2020-12-15-privatepreview", + "2020-12-15-preview", + "2020-12-01-privatepreview", + "2020-12-01-preview", + "2020-03-01", + "2020-02-01-privatepreview", + "2020-02-01-preview", + "2019-11-01-privatepreview", + "2019-11-01-preview", + "2019-06-01-preview", + "2019-03-01-privatepreview", + "2019-03-01-preview", + "2019-03-01", + "2018-02-01-privatepreview", + "2018-02-01", + "2017-07-01-privatepreview", + "2017-07-01-preview", + "2016-09-01", + "2016-03-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "West US 2", + "West Central US", + "East US", + "East US 2", + "Central US", + "West Europe", + "North Europe", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "North Central US", + "East Asia", + "Southeast Asia", + "Japan West", + "Japan East", + "South India", + "West India", + "Central India", + "Brazil South", + "South Central US", + "Korea Central", + "Korea South", + "Canada Central", + "Canada East", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Italy North", + "Israel Central", + "Jio India West", + "Sweden Central", + "Qatar Central", + "Poland Central" + ], + "properties": null, + "resourceType": "locations/unsupportedVMSizes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-10-01-preview", + "2022-08-01-preview", + "2022-06-01-preview", + "2022-02-01-preview", + "2022-01-01", + "2021-11-01-preview", + "2021-07-01-preview", + "2021-06-01", + "2021-05-01", + "2021-01-01-preview", + "2020-12-15-privatepreview", + "2020-12-15-preview", + "2020-12-01-privatepreview", + "2020-12-01-preview", + "2020-03-01", + "2020-02-01-privatepreview", + "2020-02-01-preview", + "2020-01-01-preview", + "2019-11-01-privatepreview", + "2019-11-01-preview", + "2019-06-01-preview", + "2019-03-01-privatepreview", + "2019-03-01-preview", + "2019-03-01", + "2018-02-01-privatepreview", + "2018-02-01", + "2017-07-01-privatepreview", + "2017-07-01-preview", + "2016-09-01", + "2016-03-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-03-01-preview", + "2023-02-01-preview", + "2022-10-01-preview", + "2022-08-01-preview", + "2022-06-01-preview", + "2022-02-01-preview", + "2022-01-01", + "2021-11-01-preview", + "2021-07-01-preview", + "2021-05-01", + "2021-01-01-preview", + "2020-01-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "West US 2", + "West Central US", + "East US", + "East US 2", + "Central US", + "West Europe", + "North Europe", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "North Central US", + "East Asia", + "Southeast Asia", + "Japan West", + "Japan East", + "South India", + "West India", + "Central India", + "Brazil South", + "South Central US", + "Korea Central", + "Korea South", + "Canada Central", + "Canada East", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Sweden Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Italy North", + "Israel Central", + "Jio India West", + "Qatar Central", + "Poland Central" + ], + "properties": null, + "resourceType": "managedclusters", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-03-01-preview", + "2023-02-01-preview", + "2022-10-01-preview", + "2022-08-01-preview", + "2022-06-01-preview", + "2022-02-01-preview", + "2022-01-01", + "2021-11-01-preview", + "2021-07-01-preview", + "2021-05-01", + "2021-01-01-preview", + "2020-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "West US 2", + "West Central US", + "East US", + "East US 2", + "Central US", + "West Europe", + "North Europe", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "North Central US", + "East Asia", + "Southeast Asia", + "Japan West", + "Japan East", + "South India", + "West India", + "Central India", + "Brazil South", + "South Central US", + "Korea Central", + "Korea South", + "Canada Central", + "Canada East", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Sweden Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Italy North", + "Israel Central", + "Jio India West", + "Qatar Central", + "Poland Central" + ], + "properties": null, + "resourceType": "managedclusters/nodetypes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-03-01-preview", + "2023-02-01-preview", + "2022-10-01-preview", + "2022-08-01-preview", + "2022-06-01-preview", + "2022-02-01-preview", + "2022-01-01", + "2021-11-01-preview", + "2021-07-01-preview", + "2021-05-01", + "2021-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "West US 2", + "West Central US", + "East US", + "East US 2", + "Central US", + "West Europe", + "North Europe", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "North Central US", + "East Asia", + "Southeast Asia", + "Japan West", + "Japan East", + "South India", + "West India", + "Central India", + "Brazil South", + "South Central US", + "Korea Central", + "Korea South", + "Canada Central", + "Canada East", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Sweden Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Italy North", + "Israel Central", + "Jio India West", + "Qatar Central", + "Poland Central" + ], + "properties": null, + "resourceType": "managedclusters/applicationTypes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-03-01-preview", + "2023-02-01-preview", + "2022-10-01-preview", + "2022-08-01-preview", + "2022-06-01-preview", + "2022-02-01-preview", + "2022-01-01", + "2021-11-01-preview", + "2021-07-01-preview", + "2021-05-01", + "2021-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "West US 2", + "West Central US", + "East US", + "East US 2", + "Central US", + "West Europe", + "North Europe", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "North Central US", + "East Asia", + "Southeast Asia", + "Japan West", + "Japan East", + "South India", + "West India", + "Central India", + "Brazil South", + "South Central US", + "Korea Central", + "Korea South", + "Canada Central", + "Canada East", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Sweden Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Italy North", + "Israel Central", + "Jio India West", + "Qatar Central", + "Poland Central" + ], + "properties": null, + "resourceType": "managedclusters/applicationTypes/versions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-03-01-preview", + "2023-02-01-preview", + "2022-10-01-preview", + "2022-08-01-preview", + "2022-06-01-preview", + "2022-02-01-preview", + "2022-01-01", + "2021-11-01-preview", + "2021-07-01-preview", + "2021-05-01", + "2021-01-01-preview" + ], + "capabilities": "SystemAssignedResourceIdentity", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "West US 2", + "West Central US", + "East US", + "East US 2", + "Central US", + "West Europe", + "North Europe", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "North Central US", + "East Asia", + "Southeast Asia", + "Japan West", + "Japan East", + "South India", + "West India", + "Central India", + "Brazil South", + "South Central US", + "Korea Central", + "Korea South", + "Canada Central", + "Canada East", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Sweden Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Italy North", + "Israel Central", + "Jio India West", + "Qatar Central", + "Poland Central" + ], + "properties": null, + "resourceType": "managedclusters/applications", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-03-01-preview", + "2023-02-01-preview", + "2022-10-01-preview", + "2022-08-01-preview", + "2022-06-01-preview", + "2022-02-01-preview", + "2022-01-01", + "2021-11-01-preview", + "2021-07-01-preview", + "2021-05-01", + "2021-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "West US 2", + "West Central US", + "East US", + "East US 2", + "Central US", + "West Europe", + "North Europe", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "North Central US", + "East Asia", + "Southeast Asia", + "Japan West", + "Japan East", + "South India", + "West India", + "Central India", + "Brazil South", + "South Central US", + "Korea Central", + "Korea South", + "Canada Central", + "Canada East", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Sweden Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Italy North", + "Israel Central", + "Jio India West", + "Qatar Central", + "Poland Central" + ], + "properties": null, + "resourceType": "managedclusters/applications/services", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-03-01-preview", + "2023-02-01-preview", + "2022-10-01-preview", + "2022-08-01-preview", + "2022-06-01-preview", + "2022-02-01-preview", + "2022-01-01", + "2021-11-01-preview", + "2021-07-01-preview", + "2021-05-01", + "2021-01-01-preview", + "2020-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "West US 2", + "West Central US", + "East US", + "East US 2", + "Central US", + "West Europe", + "North Europe", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "North Central US", + "East Asia", + "Southeast Asia", + "Japan West", + "Japan East", + "South India", + "West India", + "Central India", + "Brazil South", + "South Central US", + "Korea Central", + "Korea South", + "Canada Central", + "Canada East", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Sweden Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Italy North", + "Israel Central", + "Jio India West", + "Qatar Central", + "Poland Central" + ], + "properties": null, + "resourceType": "locations/managedClusterOperations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-03-01-preview", + "2023-02-01-preview", + "2022-10-01-preview", + "2022-08-01-preview", + "2022-06-01-preview", + "2022-02-01-preview", + "2022-01-01", + "2021-11-01-preview", + "2021-07-01-preview", + "2021-05-01", + "2021-01-01-preview", + "2020-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "West US 2", + "West Central US", + "East US", + "East US 2", + "Central US", + "West Europe", + "North Europe", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "North Central US", + "East Asia", + "Southeast Asia", + "Japan West", + "Japan East", + "South India", + "West India", + "Central India", + "Brazil South", + "South Central US", + "Korea Central", + "Korea South", + "Canada Central", + "Canada East", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Sweden Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Italy North", + "Israel Central", + "Jio India West", + "Qatar Central", + "Poland Central" + ], + "properties": null, + "resourceType": "locations/managedClusterOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-03-01-preview", + "2023-02-01-preview", + "2022-10-01-preview", + "2022-08-01-preview", + "2022-06-01-preview", + "2022-02-01-preview", + "2022-01-01", + "2021-11-01-preview", + "2021-07-01-preview", + "2021-05-01", + "2021-01-01-preview", + "2020-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "West US 2", + "West Central US", + "East US", + "East US 2", + "Central US", + "West Europe", + "North Europe", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "North Central US", + "East Asia", + "Southeast Asia", + "Japan West", + "Japan East", + "South India", + "West India", + "Central India", + "Brazil South", + "South Central US", + "Korea Central", + "Korea South", + "Canada Central", + "Canada East", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Sweden Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Italy North", + "Israel Central", + "Jio India West", + "Qatar Central", + "Poland Central" + ], + "properties": null, + "resourceType": "locations/managedClusterVersions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-03-01-preview", + "2023-02-01-preview", + "2022-10-01-preview", + "2022-08-01-preview", + "2022-06-01-preview", + "2022-02-01-preview", + "2022-01-01", + "2021-11-01-preview", + "2021-07-01-preview", + "2021-05-01", + "2021-01-01-preview", + "2020-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "West US 2", + "West Central US", + "East US", + "East US 2", + "Central US", + "West Europe", + "North Europe", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "North Central US", + "East Asia", + "Southeast Asia", + "Japan West", + "Japan East", + "South India", + "West India", + "Central India", + "Brazil South", + "South Central US", + "Korea Central", + "Korea South", + "Canada Central", + "Canada East", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Sweden Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Italy North", + "Israel Central", + "Jio India West", + "Qatar Central", + "Poland Central" + ], + "properties": null, + "resourceType": "locations/environments/managedClusterVersions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-03-01-preview", + "2023-02-01-preview", + "2022-10-01-preview", + "2022-08-01-preview", + "2022-06-01-preview", + "2022-02-01-preview", + "2022-01-01", + "2021-11-01-preview", + "2021-07-01-preview", + "2021-05-01", + "2021-01-01-preview", + "2020-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "West US 2", + "West Central US", + "East US", + "East US 2", + "Central US", + "West Europe", + "North Europe", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "North Central US", + "East Asia", + "Southeast Asia", + "Japan West", + "Japan East", + "South India", + "West India", + "Central India", + "Brazil South", + "South Central US", + "Korea Central", + "Korea South", + "Canada Central", + "Canada East", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Sweden Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Italy North", + "Israel Central", + "Jio India West", + "Qatar Central", + "Poland Central" + ], + "properties": null, + "resourceType": "locations/managedUnsupportedVMSizes", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "d10de03d-5ba3-497a-90e6-7ff8c9736059", + "roleDefinitionId": "BC13595A-E262-4621-929E-56FF90E6BF18" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.ServiceFabricMesh", + "namespace": "Microsoft.ServiceFabricMesh", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-09-01-preview", + "2018-07-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "West US 2", + "South Central US", + "Central US", + "France Central", + "West Europe", + "North Europe", + "UK South", + "UK West", + "Australia East", + "East Asia", + "Southeast Asia", + "Korea Central", + "West India", + "Brazil South", + "Japan East", + "Germany West Central", + "South Africa North", + "Switzerland North", + "North Central US", + "Switzerland West", + "Canada East", + "Australia Southeast", + "Central India", + "Norway East", + "UAE North", + "Japan West", + "West US 3", + "Jio India West", + "South India", + "West Central US", + "Sweden Central", + "Norway West", + "Canada Central", + "Qatar Central" + ], + "properties": null, + "resourceType": "applications", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-09-01-preview", + "2018-07-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "West US 2", + "South Central US", + "Central US", + "France Central", + "West Europe", + "North Europe", + "UK South", + "UK West", + "Australia East", + "East Asia", + "Southeast Asia", + "Korea Central", + "West India", + "Brazil South", + "Japan East", + "Germany West Central", + "South Africa North", + "Switzerland North", + "North Central US", + "Switzerland West", + "Canada East", + "Australia Southeast", + "Central India", + "Norway East", + "UAE North", + "Japan West", + "West US 3", + "Jio India West", + "South India", + "West Central US", + "Sweden Central", + "Norway West", + "Canada Central", + "Qatar Central" + ], + "properties": null, + "resourceType": "networks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-09-01-preview", + "2018-07-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "West US 2", + "South Central US", + "Central US", + "France Central", + "West Europe", + "North Europe", + "UK South", + "UK West", + "Australia East", + "East Asia", + "Southeast Asia", + "Korea Central", + "West India", + "Brazil South", + "Japan East", + "Germany West Central", + "South Africa North", + "Switzerland North", + "North Central US", + "Switzerland West", + "Canada East", + "Australia Southeast", + "Central India", + "Norway East", + "UAE North", + "Japan West", + "West US 3", + "Jio India West", + "South India", + "West Central US", + "Sweden Central", + "Norway West", + "Canada Central", + "Qatar Central" + ], + "properties": null, + "resourceType": "volumes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-09-01-preview", + "2018-07-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "West US 2", + "South Central US", + "Central US", + "France Central", + "West Europe", + "North Europe", + "UK South", + "UK West", + "Australia East", + "East Asia", + "Southeast Asia", + "Korea Central", + "West India", + "Brazil South", + "Japan East", + "Germany West Central", + "South Africa North", + "Switzerland North", + "North Central US", + "Switzerland West", + "Canada East", + "Australia Southeast", + "Central India", + "Norway East", + "UAE North", + "Japan West", + "West US 3", + "Jio India West", + "South India", + "West Central US", + "Sweden Central", + "Norway West", + "Canada Central", + "Qatar Central" + ], + "properties": null, + "resourceType": "secrets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-09-01-preview", + "2018-07-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "West US 2", + "South Central US", + "Central US", + "France Central", + "West Europe", + "North Europe", + "UK South", + "UK West", + "Australia East", + "East Asia", + "Southeast Asia", + "Korea Central", + "West India", + "Brazil South", + "Japan East", + "Germany West Central", + "South Africa North", + "Switzerland North", + "North Central US", + "Switzerland West", + "Canada East", + "Australia Southeast", + "Central India", + "Norway East", + "UAE North", + "Japan West", + "West US 3", + "Jio India West", + "South India", + "West Central US", + "Sweden Central", + "Norway West", + "Canada Central", + "Qatar Central" + ], + "properties": null, + "resourceType": "gateways", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-09-01-preview", + "2018-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-09-01-preview", + "2018-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "West US 2", + "South Central US", + "Central US", + "France Central", + "West Europe", + "North Europe", + "UK South", + "UK West", + "Australia East", + "East Asia", + "Southeast Asia", + "Korea Central", + "West India", + "Brazil South", + "Japan East", + "Germany West Central", + "South Africa North", + "Switzerland North", + "North Central US", + "Switzerland West", + "Canada East", + "Australia Southeast", + "Central India", + "Norway East", + "UAE North", + "Japan West", + "West US 3", + "Jio India West", + "South India", + "West Central US", + "Sweden Central", + "Norway West", + "Canada Central", + "Qatar Central" + ], + "properties": null, + "resourceType": "locations/applicationOperations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-09-01-preview", + "2018-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "West US 2", + "South Central US", + "Central US", + "France Central", + "West Europe", + "North Europe", + "UK South", + "UK West", + "Australia East", + "East Asia", + "Southeast Asia", + "Korea Central", + "West India", + "Brazil South", + "Japan East", + "Germany West Central", + "South Africa North", + "Switzerland North", + "North Central US", + "Switzerland West", + "Canada East", + "Australia Southeast", + "Central India", + "Norway East", + "UAE North", + "Japan West", + "West US 3", + "Jio India West", + "South India", + "West Central US", + "Sweden Central", + "Norway West", + "Canada Central", + "Qatar Central" + ], + "properties": null, + "resourceType": "locations/networkOperations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-09-01-preview", + "2018-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "West US 2", + "South Central US", + "Central US", + "France Central", + "West Europe", + "North Europe", + "UK South", + "UK West", + "Australia East", + "East Asia", + "Southeast Asia", + "Korea Central", + "West India", + "Brazil South", + "Japan East", + "Germany West Central", + "South Africa North", + "Switzerland North", + "North Central US", + "Switzerland West", + "Canada East", + "Australia Southeast", + "Central India", + "Norway East", + "UAE North", + "Japan West", + "West US 3", + "Jio India West", + "South India", + "West Central US", + "Sweden Central", + "Norway West", + "Canada Central", + "Qatar Central" + ], + "properties": null, + "resourceType": "locations/volumeOperations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-09-01-preview", + "2018-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "West US 2", + "South Central US", + "Central US", + "France Central", + "West Europe", + "North Europe", + "UK South", + "UK West", + "Australia East", + "East Asia", + "Southeast Asia", + "Korea Central", + "West India", + "Brazil South", + "Japan East", + "Germany West Central", + "South Africa North", + "Switzerland North", + "North Central US", + "Switzerland West", + "Canada East", + "Australia Southeast", + "Central India", + "Norway East", + "UAE North", + "Japan West", + "West US 3", + "Jio India West", + "South India", + "West Central US", + "Sweden Central", + "Norway West", + "Canada Central", + "Qatar Central" + ], + "properties": null, + "resourceType": "locations/gatewayOperations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-09-01-preview", + "2018-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US", + "West US 2", + "South Central US", + "Central US", + "France Central", + "West Europe", + "North Europe", + "UK South", + "UK West", + "Australia East", + "East Asia", + "Southeast Asia", + "Korea Central", + "West India", + "Brazil South", + "Japan East", + "Germany West Central", + "South Africa North", + "Switzerland North", + "North Central US", + "Switzerland West", + "Canada East", + "Australia Southeast", + "Central India", + "Norway East", + "UAE North", + "Japan West", + "West US 3", + "Jio India West", + "South India", + "West Central US", + "Sweden Central", + "Norway West", + "Canada Central", + "Qatar Central" + ], + "properties": null, + "resourceType": "locations/secretOperations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2018-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "c4288165-6698-45ba-98a5-48ea7791fed3", + "roleDefinitionId": "57197417-7922-48fd-b5ed-7b142db155ea" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.ServiceLinker", + "namespace": "Microsoft.ServiceLinker", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview", + "2022-11-01-preview", + "2022-07-01-privatepreview", + "2022-05-01", + "2021-11-01-preview", + "2021-01-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-05-01", + "2021-11-01-preview", + "2021-01-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Central US", + "West US 2", + "West Europe", + "East US 2", + "West US 3", + "North Europe", + "South Central US", + "Central US", + "Australia East", + "Australia Central", + "Australia Southeast", + "UK South", + "UK West", + "Japan East", + "Japan West", + "West US", + "North Central US", + "East Asia", + "Canada Central", + "Germany West Central", + "Korea Central", + "Central India", + "Brazil South", + "France Central", + "Norway East", + "South Africa North", + "South India", + "UAE North", + "Canada East", + "Sweden Central", + "Southeast Asia", + "Switzerland North", + "Jio India West", + "Qatar Central", + "Korea South", + "Switzerland West", + "Norway West", + "Germany North", + "Brazil Southeast" + ], + "properties": null, + "resourceType": "locations/operationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-05-01", + "2021-11-01-preview", + "2021-01-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview", + "2022-11-01-preview", + "2022-05-01", + "2022-01-01-preview", + "2021-11-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Central US", + "West US 2", + "West Europe", + "East US 2", + "West US 3", + "North Europe", + "South Central US", + "Central US", + "Australia East", + "Australia Central", + "Australia Southeast", + "UK South", + "UK West", + "Japan East", + "Japan West", + "West US", + "North Central US", + "East Asia", + "Canada Central", + "Germany West Central", + "Korea Central", + "Central India", + "Brazil South", + "France Central", + "Norway East", + "South Africa North", + "South India", + "UAE North", + "Canada East", + "Sweden Central", + "Southeast Asia", + "Switzerland North", + "Jio India West", + "Qatar Central", + "Korea South", + "Switzerland West", + "Norway West", + "Germany North", + "Brazil Southeast" + ], + "properties": null, + "resourceType": "linkers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview", + "2022-11-01-preview", + "2021-12-01-privatepreview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Central US", + "West US 2", + "West Europe", + "East US 2", + "West US 3", + "North Europe", + "South Central US", + "Central US", + "Australia East", + "Australia Central", + "Australia Southeast", + "UK South", + "UK West", + "Japan East", + "Japan West", + "West US", + "North Central US", + "East Asia", + "Canada Central", + "Germany West Central", + "Korea Central", + "Central India", + "Brazil South", + "France Central", + "Norway East", + "South Africa North", + "South India", + "UAE North", + "Canada East", + "Sweden Central", + "Southeast Asia", + "Switzerland North", + "Jio India West", + "Qatar Central", + "Korea South", + "Switzerland West", + "Norway West", + "Germany North", + "Brazil Southeast" + ], + "properties": null, + "resourceType": "dryruns", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview", + "2022-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Central US", + "West US 2", + "West Europe", + "East US 2", + "West US 3", + "North Europe", + "South Central US", + "Central US", + "Australia East", + "Australia Central", + "Australia Southeast", + "UK South", + "UK West", + "Japan East", + "Japan West", + "West US", + "North Central US", + "East Asia", + "Canada Central", + "Germany West Central", + "Korea Central", + "Central India", + "Brazil South", + "France Central", + "Norway East", + "South Africa North", + "South India", + "UAE North", + "Canada East", + "Sweden Central", + "Southeast Asia", + "Switzerland North", + "Jio India West", + "Qatar Central", + "Korea South", + "Switzerland West", + "Norway West", + "Germany North", + "Brazil Southeast" + ], + "properties": null, + "resourceType": "locations/connectors", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview", + "2022-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Central US", + "West US 2", + "West Europe", + "East US 2", + "West US 3", + "North Europe", + "South Central US", + "Central US", + "Australia East", + "Australia Central", + "Australia Southeast", + "UK South", + "UK West", + "Japan East", + "Japan West", + "West US", + "North Central US", + "East Asia", + "Canada Central", + "Germany West Central", + "Korea Central", + "Central India", + "Brazil South", + "France Central", + "Norway East", + "South Africa North", + "South India", + "UAE North", + "Canada East", + "Sweden Central", + "Southeast Asia", + "Switzerland North", + "Jio India West", + "Qatar Central", + "Korea South", + "Switzerland West", + "Norway West", + "Germany North", + "Brazil Southeast" + ], + "properties": null, + "resourceType": "locations/dryruns", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview", + "2022-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "configurationNames", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Central US", + "West US 2", + "West Europe", + "East US 2", + "West US 3", + "North Europe", + "South Central US", + "Central US", + "Australia East", + "Australia Central", + "Australia Southeast", + "UK South", + "UK West", + "Japan East", + "Japan West", + "West US", + "North Central US", + "East Asia", + "Canada Central", + "Germany West Central", + "Korea Central", + "Central India", + "Brazil South", + "France Central", + "Norway East", + "South Africa North", + "South India", + "UAE North", + "Canada East", + "Sweden Central", + "Southeast Asia", + "Switzerland North", + "Jio India West", + "Qatar Central", + "Korea South", + "Switzerland West", + "Norway West", + "Germany North", + "Brazil Southeast" + ], + "properties": null, + "resourceType": "daprConfigurations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "328fd23b-de6e-462c-9433-e207470a5727", + "roleDefinitionId": "79e29e06-4056-41e5-a6b2-959f1f47747e" + }, + { + "applicationId": "b8832d98-ee6e-4783-b4e5-31186a5def45", + "roleDefinitionId": "824a4014-c6de-4ec8-9633-f09876b73418" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.ServiceNetworking", + "namespace": "Microsoft.ServiceNetworking", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2022-10-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-05-01-preview", + "locationMappings": null, + "locations": [ + "Australia East", + "Central US", + "East Asia", + "East US", + "East US 2", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "UK South", + "West US", + "West Europe" + ], + "properties": null, + "resourceType": "trafficControllers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2022-10-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-05-01-preview", + "locationMappings": null, + "locations": [ + "Australia East", + "Central US", + "East Asia", + "East US", + "East US 2", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "UK South", + "West US", + "West Europe" + ], + "properties": null, + "resourceType": "trafficControllers/frontends", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2022-10-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-05-01-preview", + "locationMappings": null, + "locations": [ + "Australia East", + "Central US", + "East Asia", + "East US", + "East US 2", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "UK South", + "West US", + "West Europe" + ], + "properties": null, + "resourceType": "trafficControllers/associations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2022-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Central US", + "East Asia", + "East US", + "East US 2", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "UK South", + "West US", + "West Europe" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2022-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2022-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations/operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2022-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations/operationResults", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "9ed4cd8c-9a98-405f-966b-38ab1b0c24a3" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.ServicesHub", + "namespace": "Microsoft.ServicesHub", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-17-preview", + "2019-08-15-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Australia Southeast", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Japan East", + "Korea Central", + "North Europe", + "Southeast Asia", + "South Central US", + "UK South", + "West Central US", + "West Europe", + "West US", + "West US 2" + ], + "properties": null, + "resourceType": "connectors", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-08-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "workspaces", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-08-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "supportOfferingEntitlement", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-08-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-03-24-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "getRecommendationsContent", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "cdad765c-f191-43ba-b9f5-7aef392f811d", + "roleDefinitionId": "346b504e-4aec-45d1-be25-a6e10f3cb4fe" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.SignalRService", + "namespace": "Microsoft.SignalRService", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-03-01-preview", + "2023-02-01", + "2022-08-01-preview", + "2022-02-01", + "2021-10-01", + "2021-09-01-preview", + "2021-06-01-preview", + "2021-04-01-preview", + "2020-07-01-preview", + "2020-05-01", + "2018-10-01", + "2018-03-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-06-01-preview", + "locationMappings": null, + "locations": [ + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "North Central US", + "North Europe", + "Norway East", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West US", + "West US 2", + "West US 3", + "UAE North" + ], + "properties": null, + "resourceType": "SignalR", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-03-01-preview", + "2023-02-01", + "2022-08-01-preview", + "2021-10-01", + "2021-09-01-preview", + "2021-06-01-preview", + "2021-04-01-preview", + "2020-05-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-06-01-preview", + "locationMappings": null, + "locations": [ + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "North Central US", + "North Europe", + "Norway East", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West US", + "West US 2", + "West US 3", + "UAE North" + ], + "properties": null, + "resourceType": "WebPubSub", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-03-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-06-01-preview", + "locationMappings": null, + "locations": [ + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "North Central US", + "North Europe", + "Norway East", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West US", + "West US 2", + "West US 3", + "UAE North" + ], + "properties": null, + "resourceType": "SignalR/replicas", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-03-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-06-01-preview", + "locationMappings": null, + "locations": [ + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "North Central US", + "North Europe", + "Norway East", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West US", + "West US 2", + "West US 3", + "UAE North" + ], + "properties": null, + "resourceType": "WebPubSub/replicas", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-03-01-preview", + "2023-02-01", + "2022-08-01-preview", + "2022-02-01", + "2021-10-01", + "2021-09-01-preview", + "2021-06-01-preview", + "2021-04-01-preview", + "2020-07-01-preview", + "2020-05-01", + "2018-10-01", + "2018-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-06-01-preview", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-03-01-preview", + "2023-02-01", + "2022-08-01-preview", + "2022-02-01", + "2021-10-01", + "2021-09-01-preview", + "2021-06-01-preview", + "2021-04-01-preview", + "2020-07-01-preview", + "2020-05-01", + "2018-10-01", + "2018-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-06-01-preview", + "locationMappings": null, + "locations": [ + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "North Central US", + "North Europe", + "Norway East", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West US", + "West US 2", + "West US 3", + "UAE North" + ], + "properties": null, + "resourceType": "locations/operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-03-01-preview", + "2023-02-01", + "2022-08-01-preview", + "2022-02-01", + "2021-10-01", + "2021-09-01-preview", + "2021-06-01-preview", + "2021-04-01-preview", + "2020-07-01-preview", + "2020-05-01", + "2018-10-01", + "2018-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-06-01-preview", + "locationMappings": null, + "locations": [ + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "North Central US", + "North Europe", + "Norway East", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West US", + "West US 2", + "West US 3", + "UAE North" + ], + "properties": null, + "resourceType": "locations/operationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-03-01-preview", + "2023-02-01", + "2022-08-01-preview", + "2022-02-01", + "2021-10-01", + "2021-09-01-preview", + "2021-06-01-preview", + "2021-04-01-preview", + "2020-07-01-preview", + "2020-05-01", + "2018-10-01", + "2018-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-06-01-preview", + "locationMappings": null, + "locations": [ + "West Central US", + "West US 2", + "East US", + "East US 2", + "West US", + "Central US" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-03-01-preview", + "2023-02-01", + "2022-08-01-preview", + "2022-02-01", + "2021-10-01", + "2021-09-01-preview", + "2021-06-01-preview", + "2021-04-01-preview", + "2020-07-01-preview", + "2020-05-01", + "2018-10-01", + "2018-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-06-01-preview", + "locationMappings": null, + "locations": [ + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "North Central US", + "North Europe", + "Norway East", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West US", + "West US 2", + "West US 3", + "UAE North" + ], + "properties": null, + "resourceType": "locations/checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-03-01-preview", + "2023-02-01", + "2022-08-01-preview", + "2022-02-01", + "2021-10-01", + "2021-09-01-preview", + "2021-06-01-preview", + "2021-04-01-preview", + "2020-07-01-preview", + "2020-05-01", + "2018-10-01", + "2018-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-06-01-preview", + "locationMappings": null, + "locations": [ + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "North Central US", + "North Europe", + "Norway East", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West US", + "West US 2", + "West US 3", + "UAE North" + ], + "properties": null, + "resourceType": "locations/usages", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-03-01-preview", + "2023-02-01", + "2022-08-01-preview", + "2022-02-01", + "2021-10-01", + "2021-09-01-preview", + "2021-06-01-preview", + "2021-04-01-preview", + "2020-07-01-preview", + "2020-05-01", + "2018-10-01", + "2018-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-06-01-preview", + "locationMappings": null, + "locations": [ + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "North Central US", + "North Europe", + "Norway East", + "Qatar Central", + "South Africa North", + "South Central US", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West US", + "West US 2", + "West US 3", + "UAE North" + ], + "properties": null, + "resourceType": "SignalR/eventGridFilters", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "349e15d0-1c96-4829-95e5-7fc8fb358ff3", + "roleDefinitionId": "da5c10f8-3b94-4076-bb95-1421b4518aee" + }, + { + "applicationId": "9581bc0e-c952-4fd3-8d99-e777877718b1", + "roleDefinitionId": "da5c10f8-3b94-4076-bb95-1421b4518aee" + }, + { + "applicationId": "17724442-aa9a-46cc-bf09-c47bb1a98518", + "roleDefinitionId": "da5c10f8-3b94-4076-bb95-1421b4518aee" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Singularity", + "namespace": "Microsoft.Singularity", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "Germany West Central", + "Italy North", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US 2", + "West US 3", + "West US" + ], + "properties": null, + "resourceType": "accounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "Germany West Central", + "Italy North", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US 2", + "West US 3", + "West US" + ], + "properties": null, + "resourceType": "accounts/storageContainers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "Germany West Central", + "Italy North", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US 2", + "West US 3", + "West US" + ], + "properties": null, + "resourceType": "accounts/networks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "Germany West Central", + "Italy North", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US 2", + "West US 3", + "West US" + ], + "properties": null, + "resourceType": "accounts/secrets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "Germany West Central", + "Italy North", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US 2", + "West US 3", + "West US" + ], + "properties": null, + "resourceType": "accounts/accountQuotaPolicies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "Germany West Central", + "Italy North", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US 2", + "West US 3", + "West US" + ], + "properties": null, + "resourceType": "accounts/groupPolicies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "SystemAssignedResourceIdentity", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "Germany West Central", + "Italy North", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US 2", + "West US 3", + "West US" + ], + "properties": null, + "resourceType": "accounts/jobs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "SystemAssignedResourceIdentity", + "defaultApiVersion": "2020-12-01-preview", + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "Germany West Central", + "Italy North", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US 2", + "West US 3", + "West US" + ], + "properties": null, + "resourceType": "accounts/models", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "Germany West Central", + "Italy North", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US 2", + "West US 3", + "West US" + ], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "Germany West Central", + "Italy North", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US 2", + "West US 3", + "West US" + ], + "properties": null, + "resourceType": "locations/instanceTypeSeries", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "Germany West Central", + "Italy North", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US 2", + "West US 3", + "West US" + ], + "properties": null, + "resourceType": "locations/instanceTypeSeries/instanceTypes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "Germany West Central", + "Italy North", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US 2", + "West US 3", + "West US" + ], + "properties": null, + "resourceType": "locations/operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "Germany West Central", + "Italy North", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US 2", + "West US 3", + "West US" + ], + "properties": null, + "resourceType": "locations/operationStatus", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "Germany West Central", + "Italy North", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US 2", + "West US 3", + "West US" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "Germany West Central", + "Italy North", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US 2", + "West US 3", + "West US" + ], + "properties": null, + "resourceType": "images", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "Germany West Central", + "Italy North", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US 2", + "West US 3", + "West US" + ], + "properties": null, + "resourceType": "quotas", + "zoneMappings": null + } + ] + }, + { + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.SoftwarePlan", + "namespace": "Microsoft.SoftwarePlan", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": [ + { + "apiVersion": "2019-06-01-preview", + "profileVersion": "2018-06-01-profile" + } + ], + "apiVersions": [ + "2019-06-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "hybridUseBenefits", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "ba4bc2bd-843f-4d61-9d33-199178eae34e", + "managedByAuthorization": { + "additionalAuthorizations": [ + { + "applicationId": "35cbcc06-defd-44d2-ace4-bc2bf2466970", + "roleDefinitionId": "78f2c82a-9084-4d11-a732-073700cea854" + } + ], + "managedByResourceRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635" + }, + "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635", + "roleDefinitionId": "6cb99a0b-29a8-49bc-b57b-057acc68cd9a" + }, + { + "applicationId": "35cbcc06-defd-44d2-ace4-bc2bf2466970", + "roleDefinitionId": "d84ffd02-c031-4d17-8c1f-619edb7c8e83" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Solutions", + "namespace": "Microsoft.Solutions", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-07-01", + "2021-02-01-preview", + "2020-08-21-preview", + "2019-07-01", + "2018-09-01-preview", + "2018-06-01", + "2018-03-01", + "2018-02-01", + "2017-12-01", + "2017-09-01" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Australia Southeast", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West US", + "West US 2", + "West US 3", + "Norway East", + "Switzerland North", + "Korea South", + "South Africa North", + "Canada East", + "Brazil South", + "Australia Central", + "South India", + "UAE North", + "West India", + "Sweden Central", + "Jio India West", + "Qatar Central" + ], + "properties": null, + "resourceType": "applications", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-07-01", + "2021-02-01-preview", + "2020-08-21-preview", + "2019-07-01", + "2018-09-01-preview", + "2018-06-01", + "2018-03-01", + "2018-02-01", + "2017-12-01", + "2017-09-01" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Australia Southeast", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West US", + "West US 2", + "West US 3", + "Norway East", + "Switzerland North", + "Korea South", + "South Africa North", + "Canada East", + "Brazil South", + "Australia Central", + "South India", + "UAE North", + "West India", + "Sweden Central", + "Jio India West", + "Qatar Central" + ], + "properties": null, + "resourceType": "applicationDefinitions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-07-01", + "2021-02-01-preview", + "2020-08-21-preview", + "2019-07-01", + "2018-09-01-preview", + "2018-06-01", + "2018-03-01", + "2018-02-01", + "2017-12-01", + "2017-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-07-01", + "2021-02-01-preview", + "2020-08-21-preview", + "2019-07-01", + "2018-09-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Australia Southeast", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West US", + "West US 2", + "West US 3", + "Norway East", + "Switzerland North", + "Korea South", + "South Africa North", + "Canada East", + "Brazil South", + "Australia Central", + "South India", + "UAE North", + "West India", + "Sweden Central", + "Jio India West", + "Qatar Central" + ], + "properties": null, + "resourceType": "jitRequests", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-07-01", + "2021-02-01-preview", + "2020-08-21-preview", + "2019-07-01", + "2018-09-01-preview", + "2018-06-01", + "2018-03-01", + "2018-02-01", + "2017-12-01", + "2017-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "South Central US", + "North Central US", + "West Central US", + "West US", + "West US 2", + "East US", + "East US 2", + "Central US", + "West Europe", + "North Europe", + "East Asia", + "Southeast Asia", + "Brazil South", + "Japan West", + "Japan East", + "Australia East", + "Australia Southeast", + "South India", + "West India", + "Central India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "UAE North", + "South Africa North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West", + "Sweden Central", + "Qatar Central" + ], + "properties": null, + "resourceType": "locations/operationstatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-07-01", + "2021-02-01-preview", + "2020-08-21-preview", + "2019-07-01", + "2018-09-01-preview", + "2018-06-01", + "2018-03-01", + "2018-02-01", + "2017-12-01", + "2017-09-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "e4ab13ed-33cb-41b4-9140-6e264582cf85", + "roleDefinitionId": "ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec" + }, + { + "applicationId": "0130cc9f-7ac5-4026-bd5f-80a08a54e6d9", + "roleDefinitionId": "45e8abf8-0ec4-44f3-9c37-cff4f7779302" + }, + { + "applicationId": "76cd24bf-a9fc-4344-b1dc-908275de6d6d", + "roleDefinitionId": "c13b7b9c-2ed1-4901-b8a8-16f35468da29" + }, + { + "applicationId": "76c7f279-7959-468f-8943-3954880e0d8c", + "managedByRoleDefinitionId": "f2f79976-90be-4501-89c6-7caf12474683", + "roleDefinitionId": "7f7513a8-73f9-4c5f-97a2-c41f0ea783ef" + }, + { + "applicationId": "022907d3-0f1b-48f7-badc-1ba6abab6d66" + }, + { + "applicationId": "9c8b80bc-6887-42d0-b1af-d0c40f9bf1fa" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Sql", + "namespace": "Microsoft.Sql", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview", + "2015-05-01", + "2014-04-01-preview", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2014-04-01-preview", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview", + "2015-05-01", + "2014-04-01-preview", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/capabilities", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/databaseAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/databaseOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/databaseEncryptionProtectorRevalidateAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/databaseEncryptionProtectorRevalidateOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/databaseEncryptionProtectorRevertAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/databaseEncryptionProtectorRevertOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/serverKeyAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/serverKeyOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/keys", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/encryptionProtector", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/encryptionProtectorOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/encryptionProtectorAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/externalPolicyBasedAuthorizationsAzureAsycOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/externalPolicyBasedAuthorizationsOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/refreshExternalGovernanceStatusOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/refreshExternalGovernanceStatusAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/refreshExternalGovernanceStatusMIOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/refreshExternalGovernanceStatusMIAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/managedInstanceKeyAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/managedInstanceKeyOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/managedInstanceEncryptionProtectorOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/managedInstanceEncryptionProtectorAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/transparentDataEncryptionAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/transparentDataEncryptionOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/managedtransparentDataEncryptionAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/managedtransparentDataEncryptionOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/tdeCertificates", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/tdeCertAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/tdeCertOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/serverAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/serverOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview", + "2015-05-01", + "2014-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/usages", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview", + "2014-04-01-preview", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview", + "2014-04-01-preview", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview", + "2015-01-01", + "2014-04-01-preview", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/databases", + "zoneMappings": [ + { + "location": "Australia East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Central India", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East Asia", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Korea Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Norway East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Poland Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Qatar Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "South Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Sweden Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Switzerland North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "UAE North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 3", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Israel Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Italy North", + "zones": [ + "1", + "2", + "3" + ] + } + ] + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2014-04-01-preview", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/serviceObjectives", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2014-04-01-preview", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/communicationLinks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2014-04-01-preview", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/administrators", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2014-04-01-preview", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/administratorOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/serverAdministratorAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/serverAdministratorOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2014-04-01-preview", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/restorableDroppedDatabases", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview", + "2014-04-01-preview", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/recoverableDatabases", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview", + "2014-04-01-preview", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/databases/geoBackupPolicies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2014-04-01-preview", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/import", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2014-04-01-preview", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/importExportOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2014-04-01-preview", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/databases/backupLongTermRetentionPolicies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/databases/backupShortTermRetentionPolicies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2014-04-01-preview", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/databaseSecurityPolicies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/automaticTuning", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/databases/automaticTuning", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2017-03-01-preview", + "2015-05-01-preview", + "2014-04-01-preview", + "2014-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/databases/transparentDataEncryption", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/databases/ledgerDigestUploads", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/ledgerDigestUploadsAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/ledgerDigestUploadsOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2014-04-01-preview", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/recommendedElasticPools", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview", + "2014-04-01-preview", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/databases/dataMaskingPolicies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview", + "2014-04-01-preview", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/databases/dataMaskingPolicies/rules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2014-04-01-preview", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/databases/securityAlertPolicies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/securityAlertPolicies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/databases/advancedThreatProtectionSettings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/advancedThreatProtectionSettings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "managedInstances/databases/advancedThreatProtectionSettings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "managedInstances/advancedThreatProtectionSettings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/databases/auditingSettings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/auditingSettings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/extendedAuditingSettings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/devOpsAuditingSettings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/auditingSettingsAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/auditingSettingsOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/extendedAuditingSettingsAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/extendedAuditingSettingsOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/devOpsAuditingSettingsOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/devOpsAuditingSettingsAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview", + "2015-05-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/elasticPoolAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview", + "2015-05-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/elasticPoolOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-09-01-preview", + "2015-05-01-preview", + "2015-05-01", + "2014-04-01-preview", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/elasticpools", + "zoneMappings": [ + { + "location": "Australia East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Central India", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East Asia", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Korea Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Norway East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Poland Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Qatar Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "South Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Sweden Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Switzerland North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "UAE North", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 3", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Israel Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Italy North", + "zones": [ + "1", + "2", + "3" + ] + } + ] + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2015-05-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/jobAccounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/jobAgents", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/jobAgentOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/jobAgentAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/jobAgents/privateEndpoints", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/jobAgentPrivateEndpointOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/jobAgentPrivateEndpointAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/jobAgents/jobs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/jobAgents/jobs/steps", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01-preview", + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/jobAgents/jobs/executions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2014-04-01-preview", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/disasterRecoveryConfiguration", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/dnsAliases", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/dnsAliasAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/dnsAliasOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/failoverGroups", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/failoverGroupAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/failoverGroupOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/firewallRulesOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/firewallRulesAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/ipv6FirewallRulesOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/ipv6FirewallRulesAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview", + "2015-05-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/deleteVirtualNetworkOrSubnets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/virtualNetworkRules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview", + "2015-05-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/virtualNetworkRulesOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview", + "2015-05-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/virtualNetworkRulesAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview", + "2015-05-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/deleteVirtualNetworkOrSubnetsOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview", + "2015-05-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/databaseRestoreAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview", + "2014-04-01-preview", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/usages", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2014-04-01-preview", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/databases/metricDefinitions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2014-04-01-preview", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/databases/metrics", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2014-04-01-preview", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/aggregatedDatabaseMetrics", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2014-04-01-preview", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/elasticpools/metrics", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2014-04-01-preview", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/elasticpools/metricdefinitions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2014-04-01-preview", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/databases/topQueries", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2014-04-01-preview", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/databases/topQueries/queryText", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview", + "2014-04-01-preview", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/advisors", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/elasticPools/advisors", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview", + "2014-04-01-preview", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/databases/advisors", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2014-04-01-preview", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/databases/extensions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/elasticPoolEstimates", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/databases/auditRecords", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/databases/VulnerabilityAssessmentScans", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/databases/workloadGroups", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/databases/vulnerabilityAssessments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/vulnerabilityAssessments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "managedInstances/databases/vulnerabilityAssessments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "managedInstances/vulnerabilityAssessments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/databases/VulnerabilityAssessmentSettings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/databases/VulnerabilityAssessment", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/vulnerabilityAssessmentScanAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/vulnerabilityAssessmentScanOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/databases/sqlvulnerabilityassessments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/sqlvulnerabilityassessments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/sqlVulnerabilityAssessmentAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/sqlVulnerabilityAssessmentOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/databases/recommendedSensitivityLabels", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/databases/syncGroups", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/databases/syncGroups/syncMembers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/syncAgents", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "instancePools", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-08-01", + "2020-02-02-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/importExportOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-08-01", + "2020-02-02-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/importExportAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/instancePoolOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/instancePoolAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "managedInstances", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "managedInstances/administrators", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "managedInstances/databases", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "managedInstances/recoverableDatabases", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "managedInstances/metrics", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "managedInstances/metricDefinitions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "managedInstances/databases/backupLongTermRetentionPolicies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "managedInstances/sqlAgent", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "managedInstances/startStopSchedules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/managedInstancePrivateEndpointConnectionProxyOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/managedInstancePrivateEndpointConnectionProxyAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/managedInstancePrivateEndpointConnectionOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/managedInstancePrivateEndpointConnectionAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/longTermRetentionManagedInstances", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/longTermRetentionManagedInstanceBackups", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/managedInstanceLongTermRetentionPolicyOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/managedInstanceLongTermRetentionPolicyAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/longTermRetentionManagedInstanceBackupOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/longTermRetentionManagedInstanceBackupAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/managedDatabaseAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/managedDatabaseOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/managedDatabaseRestoreAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/managedDatabaseRestoreOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/managedDatabaseCompleteRestoreAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/managedDatabaseCompleteRestoreOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/managedServerSecurityAlertPoliciesAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/stopManagedInstanceAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/stopManagedInstanceOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/startManagedInstanceAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/startManagedInstanceOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "managedInstances/tdeCertificates", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/managedInstanceTdeCertAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/managedInstanceTdeCertOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/managedServerSecurityAlertPoliciesOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/securityAlertPoliciesAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/securityAlertPoliciesOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/advancedThreatProtectionAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/advancedThreatProtectionOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/managedInstanceAdvancedThreatProtectionAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/managedInstanceAdvancedThreatProtectionOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "managedInstances/dnsAliases", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/managedDnsAliasAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/managedDnsAliasOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "virtualClusters", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/virtualClusterAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/virtualClusterOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/updateManagedInstanceDnsServersAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/updateManagedInstanceDnsServersOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/managedInstanceAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/managedInstanceOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/distributedAvailabilityGroupsOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/distributedAvailabilityGroupsAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/serverTrustCertificatesOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/serverTrustCertificatesAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/administratorAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/administratorOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/syncGroupOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/syncGroupAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/syncMemberOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/syncAgentOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/syncDatabaseIds", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/longTermRetentionServers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/longTermRetentionBackups", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/longTermRetentionPolicyOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/longTermRetentionPolicyAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/longTermRetentionBackupOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/longTermRetentionBackupAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/shortTermRetentionPolicyOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/shortTermRetentionPolicyAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/managedShortTermRetentionPolicyOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/managedShortTermRetentionPolicyAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/instanceFailoverGroups", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/instanceFailoverGroupAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/instanceFailoverGroupOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/privateEndpointConnectionProxyOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/privateEndpointConnectionProxyAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/privateEndpointConnectionOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/outboundFirewallRulesAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/outboundFirewallRulesOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/privateEndpointConnectionAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/notifyAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/serverTrustGroups", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/serverTrustGroupOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/serverTrustGroupAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/managedDatabaseMoveOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/managedDatabaseMoveAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview", + "2014-04-01-preview", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/connectionPolicies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/connectionPoliciesAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/connectionPoliciesOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "Central US EUAP", + "East Asia", + "East US", + "East US 2", + "East US 2 EUAP", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/notifyNetworkSecurityPerimeterUpdatesAvailable", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/replicationLinksAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview", + "2021-11-01-preview", + "2021-11-01", + "2021-08-01-preview", + "2021-05-01-preview", + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/replicationLinksOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-02-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/managedInstanceDtcAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "managedInstances/databases/ledgerDigestUploads", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/managedLedgerDigestUploadsOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/managedLedgerDigestUploadsAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview", + "2022-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/serverConfigurationOptionAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "servers/failoverGroups/tryPlannedBeforeForcedFailover", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "bd93b475-f9e2-476e-963d-b2daf143ffb9", + "roleDefinitionId": "f96bd990-ffdf-4c17-8ee3-77454d9c3f5d" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.SqlVirtualMachine", + "namespace": "Microsoft.SqlVirtualMachine", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview", + "2022-08-01-preview", + "2022-07-01-preview", + "2022-02-01-preview", + "2022-02-01", + "2021-11-01-preview", + "2017-03-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2021-11-01-preview", + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "SqlVirtualMachineGroups", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview", + "2022-08-01-preview", + "2022-07-01-preview", + "2022-02-01-preview", + "2022-02-01", + "2021-11-01-preview", + "2017-03-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2021-11-01-preview", + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "SqlVirtualMachines", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview", + "2022-08-01-preview", + "2022-07-01-preview", + "2022-02-01-preview", + "2022-02-01", + "2021-11-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-11-01-preview", + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "SqlVirtualMachineGroups/AvailabilityGroupListeners", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview", + "2022-08-01-preview", + "2022-07-01-preview", + "2022-02-01-preview", + "2022-02-01", + "2021-11-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-11-01-preview", + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview", + "2022-08-01-preview", + "2022-07-01-preview", + "2022-02-01-preview", + "2022-02-01", + "2021-11-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-11-01-preview", + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "Locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview", + "2022-08-01-preview", + "2022-07-01-preview", + "2022-02-01-preview", + "2022-02-01", + "2021-11-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-11-01-preview", + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "Locations/OperationTypes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview", + "2022-08-01-preview", + "2022-07-01-preview", + "2022-02-01-preview", + "2022-02-01", + "2021-11-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-11-01-preview", + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "Locations/sqlVirtualMachineOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview", + "2022-08-01-preview", + "2022-07-01-preview", + "2022-02-01-preview", + "2022-02-01", + "2021-11-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-11-01-preview", + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "Locations/sqlVirtualMachineGroupOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview", + "2022-08-01-preview", + "2022-07-01-preview", + "2022-02-01-preview", + "2022-02-01", + "2021-11-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-11-01-preview", + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "Locations/availabilityGroupListenerOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview", + "2022-08-01-preview", + "2022-07-01-preview", + "2022-02-01-preview", + "2022-02-01", + "2021-11-01-preview", + "2017-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-11-01-preview", + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "Locations/registerSqlVmCandidate", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "d4398a72-b879-49e5-9f3a-ff22c32efb42", + "roleDefinitionId": "60736cc1-8801-4416-96da-fd1874e3f31b" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.StandbyPool", + "namespace": "Microsoft.StandbyPool", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Canada Central", + "Central US", + "East Asia", + "East US", + "East US 2", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "UK West", + "West Central US", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "Locations/OperationStatuses", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "d4cc0c0d-dd71-4562-97fd-fc96d8c90263" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.StorageActions", + "namespace": "Microsoft.StorageActions", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-01-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "4392ab71-2ce2-4b0d-8770-b352745c73f5", + "roleDefinitionId": "e27430df-bd6b-4f3a-bd6d-d52ad1a7d075" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.StorageCache", + "namespace": "Microsoft.StorageCache", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2023-03-01-preview", + "2023-01-01", + "2022-09-01-preview", + "2022-05-01", + "2022-01-01", + "2021-10-01-preview", + "2021-09-01", + "2021-05-01", + "2021-03-01", + "2020-10-01", + "2020-03-01", + "2019-11-01", + "2019-08-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "Australia East", + "Brazil South", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Germany West Central", + "Korea Central", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "Sweden Central", + "UK South", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "caches", + "zoneMappings": [ + { + "location": "Australia East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Central India", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East Asia", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Korea Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "South Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Sweden Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 3", + "zones": [ + "1", + "2", + "3" + ] + } + ] + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2023-03-01-preview", + "2023-01-01", + "2022-09-01-preview", + "2022-05-01", + "2022-01-01", + "2021-10-01-preview", + "2021-09-01", + "2021-05-01", + "2021-03-01", + "2020-10-01", + "2020-03-01", + "2019-11-01", + "2019-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "Australia East", + "Brazil South", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Germany West Central", + "Korea Central", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "Sweden Central", + "UK South", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "caches/storageTargets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2023-03-01-preview", + "2021-11-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "Australia East", + "Brazil South", + "Canada Central", + "Central India", + "Central US", + "East US", + "East US 2", + "North Europe", + "South Central US", + "Southeast Asia", + "Sweden Central", + "UK South", + "West Europe", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "amlFilesystems", + "zoneMappings": [ + { + "location": "Australia East", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Central India", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "East US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "South Central US", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "Sweden Central", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "1", + "2", + "3" + ] + }, + { + "location": "West US 3", + "zones": [ + "1", + "2", + "3" + ] + } + ] + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2023-03-01-preview", + "2023-01-01", + "2022-09-01-preview", + "2022-05-01", + "2022-01-01", + "2021-11-01-preview", + "2021-10-01-preview", + "2021-09-01", + "2021-05-01", + "2021-03-01", + "2020-10-01", + "2020-03-01", + "2019-11-01", + "2019-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "Australia East", + "Brazil South", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Germany West Central", + "Korea Central", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "Sweden Central", + "UK South", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2023-03-01-preview", + "2023-01-01", + "2022-09-01-preview", + "2022-05-01", + "2022-01-01", + "2021-10-01-preview", + "2021-09-01", + "2021-05-01", + "2021-03-01", + "2020-10-01", + "2020-03-01", + "2019-11-01", + "2019-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "Australia East", + "Brazil South", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Germany West Central", + "Korea Central", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "Sweden Central", + "UK South", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "usageModels", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2023-03-01-preview", + "2021-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "Australia East", + "Brazil South", + "Canada Central", + "Central India", + "Central US", + "East US", + "East US 2", + "North Europe", + "South Central US", + "Southeast Asia", + "Sweden Central", + "UK South", + "West Europe", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "checkAmlFSSubnets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2023-03-01-preview", + "2021-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "Australia East", + "Brazil South", + "Canada Central", + "Central India", + "Central US", + "East US", + "East US 2", + "North Europe", + "South Central US", + "Southeast Asia", + "Sweden Central", + "UK South", + "West Europe", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "getRequiredAmlFSSubnetsSize", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2023-03-01-preview", + "2023-01-01", + "2022-09-01-preview", + "2022-05-01", + "2022-01-01", + "2021-11-01-preview", + "2021-10-01-preview", + "2021-09-01", + "2021-05-01", + "2021-03-01", + "2020-10-01", + "2020-03-01", + "2019-11-01", + "2019-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2023-03-01-preview", + "2023-01-01", + "2022-09-01-preview", + "2022-05-01", + "2022-01-01", + "2021-11-01-preview", + "2021-10-01-preview", + "2021-09-01", + "2021-05-01", + "2021-03-01", + "2020-10-01", + "2020-03-01", + "2019-11-01", + "2019-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "Australia East", + "Brazil South", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Germany West Central", + "Korea Central", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "Sweden Central", + "UK South", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/ascoperations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2023-03-01-preview", + "2023-01-01", + "2022-09-01-preview", + "2022-05-01", + "2022-01-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-05-01", + "locationMappings": null, + "locations": [ + "Australia East", + "Brazil South", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Germany West Central", + "Korea Central", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "Sweden Central", + "UK South", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/usages", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "aed824f0-6446-4ef9-9e17-98b0157c09dc", + "roleDefinitionId": "c40931d4-5a67-4100-bc10-0b35bc854ff4" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.StorageMover", + "namespace": "Microsoft.StorageMover", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-03-01", + "2022-07-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US 3", + "Sweden Central" + ], + "properties": null, + "resourceType": "storageMovers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-03-01", + "2022-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US 3", + "Sweden Central" + ], + "properties": null, + "resourceType": "storageMovers/projects", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-03-01", + "2022-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US 3", + "Sweden Central" + ], + "properties": null, + "resourceType": "storageMovers/agents", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-03-01", + "2022-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US 3", + "Sweden Central" + ], + "properties": null, + "resourceType": "storageMovers/endpoints", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-03-01", + "2022-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US 3", + "Sweden Central" + ], + "properties": null, + "resourceType": "storageMovers/projects/jobDefinitions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-03-01", + "2022-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-03-01", + "2022-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US 3", + "Sweden Central" + ], + "properties": null, + "resourceType": "storageMovers/projects/jobDefinitions/jobRuns", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-03-01", + "2022-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01-preview", + "2023-03-01", + "2022-07-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US 3", + "Sweden Central" + ], + "properties": null, + "resourceType": "locations/operationStatuses", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "9469b9f5-6722-4481-a2b2-14ed560b706f", + "roleDefinitionId": "4cd49d82-1f4d-43fc-af0c-1c1203668e5a" + }, + { + "applicationId": "1fcdfafe-959b-4b32-afff-84f850974e84", + "roleDefinitionId": "4cd49d82-1f4d-43fc-af0c-1c1203668e5a" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.StorageSync", + "namespace": "Microsoft.StorageSync", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-06-01", + "2020-09-01", + "2020-03-01", + "2019-10-01", + "2019-06-01", + "2019-03-01", + "2019-02-01", + "2018-10-01", + "2018-07-01", + "2018-04-02" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-06-01", + "locationMappings": null, + "locations": [ + "West Central US", + "West US", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "Australia East", + "Australia Southeast", + "East US", + "West US 3", + "Canada Central", + "Canada East", + "Central US", + "East US 2", + "UK South", + "UK West", + "Central India", + "South India", + "North Central US", + "South Central US", + "Brazil South", + "Japan East", + "Japan West", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West", + "UAE North", + "UAE Central", + "Germany West Central", + "Germany North", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Jio India West", + "Jio India Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "storageSyncServices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-06-01", + "2020-09-01", + "2020-03-01", + "2019-10-01", + "2019-06-01", + "2019-03-01", + "2019-02-01", + "2018-10-01", + "2018-07-01", + "2018-04-02" + ], + "capabilities": "None", + "defaultApiVersion": "2022-06-01", + "locationMappings": null, + "locations": [ + "West Central US", + "West US", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "Australia East", + "Australia Southeast", + "East US", + "West US 3", + "Canada Central", + "Canada East", + "Central US", + "East US 2", + "UK South", + "UK West", + "Central India", + "South India", + "North Central US", + "South Central US", + "Brazil South", + "Japan East", + "Japan West", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West", + "UAE North", + "UAE Central", + "Germany West Central", + "Germany North", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Jio India West", + "Jio India Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "storageSyncServices/syncGroups", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-06-01", + "2020-09-01", + "2020-03-01", + "2019-10-01", + "2019-06-01", + "2019-03-01", + "2019-02-01", + "2018-10-01", + "2018-07-01", + "2018-04-02" + ], + "capabilities": "None", + "defaultApiVersion": "2022-06-01", + "locationMappings": null, + "locations": [ + "West Central US", + "West US", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "Australia East", + "Australia Southeast", + "East US", + "West US 3", + "Canada Central", + "Canada East", + "Central US", + "East US 2", + "UK South", + "UK West", + "Central India", + "South India", + "North Central US", + "South Central US", + "Brazil South", + "Japan East", + "Japan West", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West", + "UAE North", + "UAE Central", + "Germany West Central", + "Germany North", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Jio India West", + "Jio India Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "storageSyncServices/syncGroups/cloudEndpoints", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-06-01", + "2020-09-01", + "2020-03-01", + "2019-10-01", + "2019-06-01", + "2019-03-01", + "2019-02-01", + "2018-10-01", + "2018-07-01", + "2018-04-02" + ], + "capabilities": "None", + "defaultApiVersion": "2022-06-01", + "locationMappings": null, + "locations": [ + "West Central US", + "West US", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "Australia East", + "Australia Southeast", + "East US", + "West US 3", + "Canada Central", + "Canada East", + "Central US", + "East US 2", + "UK South", + "UK West", + "Central India", + "South India", + "North Central US", + "South Central US", + "Brazil South", + "Japan East", + "Japan West", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West", + "UAE North", + "UAE Central", + "Germany West Central", + "Germany North", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Jio India West", + "Jio India Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "storageSyncServices/syncGroups/serverEndpoints", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-06-01", + "2020-09-01", + "2020-03-01", + "2019-10-01", + "2019-06-01", + "2019-03-01", + "2019-02-01", + "2018-10-01", + "2018-07-01", + "2018-04-02" + ], + "capabilities": "None", + "defaultApiVersion": "2022-06-01", + "locationMappings": null, + "locations": [ + "West Central US", + "West US", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "Australia East", + "Australia Southeast", + "East US", + "West US 3", + "Canada Central", + "Canada East", + "Central US", + "East US 2", + "UK South", + "UK West", + "Central India", + "South India", + "North Central US", + "South Central US", + "Brazil South", + "Japan East", + "Japan West", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West", + "UAE North", + "UAE Central", + "Germany West Central", + "Germany North", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Jio India West", + "Jio India Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "storageSyncServices/registeredServers", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-06-01", + "2020-09-01", + "2020-03-01", + "2019-10-01", + "2019-06-01", + "2019-03-01", + "2019-02-01", + "2018-10-01", + "2018-07-01", + "2018-04-02" + ], + "capabilities": "None", + "defaultApiVersion": "2022-06-01", + "locationMappings": null, + "locations": [ + "West Central US", + "West US", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "Australia East", + "Australia Southeast", + "East US", + "West US 3", + "Canada Central", + "Canada East", + "Central US", + "East US 2", + "UK South", + "UK West", + "Central India", + "South India", + "North Central US", + "South Central US", + "Brazil South", + "Japan East", + "Japan West", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West", + "UAE North", + "UAE Central", + "Germany West Central", + "Germany North", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Jio India West", + "Jio India Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "storageSyncServices/workflows", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-06-01", + "2020-09-01", + "2020-03-01", + "2019-10-01", + "2019-06-01", + "2019-03-01", + "2019-02-01", + "2018-10-01", + "2018-07-01", + "2018-04-02" + ], + "capabilities": "None", + "defaultApiVersion": "2022-06-01", + "locationMappings": null, + "locations": [ + "West Central US", + "West US", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "Australia East", + "Australia Southeast", + "East US", + "West US 3", + "Canada Central", + "Canada East", + "Central US", + "East US 2", + "UK South", + "UK West", + "Central India", + "South India", + "North Central US", + "South Central US", + "Brazil South", + "Japan East", + "Japan West", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West", + "UAE North", + "UAE Central", + "Germany West Central", + "Germany North", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Jio India West", + "Jio India Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-06-01", + "2020-09-01", + "2020-03-01", + "2019-10-01", + "2019-06-01", + "2019-03-01", + "2019-02-01", + "2018-10-01", + "2018-07-01", + "2018-04-02" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-06-01", + "2020-09-01", + "2020-03-01", + "2019-10-01", + "2019-06-01", + "2019-03-01", + "2019-02-01", + "2018-10-01", + "2018-07-01", + "2018-04-02" + ], + "capabilities": "None", + "defaultApiVersion": "2022-06-01", + "locationMappings": null, + "locations": [ + "West US", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "Australia East", + "Australia Southeast", + "East US", + "West US 3", + "Canada Central", + "Canada East", + "Central US", + "East US 2", + "UK South", + "UK West", + "Central India", + "South India", + "North Central US", + "South Central US", + "Brazil South", + "Japan East", + "Japan West", + "West Central US", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West", + "UAE North", + "UAE Central", + "Germany West Central", + "Germany North", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Jio India West", + "Jio India Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "locations/checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-06-01", + "2020-09-01", + "2020-03-01", + "2019-10-01", + "2019-06-01", + "2019-03-01", + "2019-02-01", + "2018-10-01", + "2018-07-01", + "2018-04-02" + ], + "capabilities": "None", + "defaultApiVersion": "2022-06-01", + "locationMappings": null, + "locations": [ + "West US", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "Australia East", + "Australia Southeast", + "East US", + "West US 3", + "Canada Central", + "Canada East", + "Central US", + "East US 2", + "UK South", + "UK West", + "Central India", + "South India", + "North Central US", + "South Central US", + "Brazil South", + "Japan East", + "Japan West", + "West Central US", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West", + "UAE North", + "UAE Central", + "Germany West Central", + "Germany North", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Jio India West", + "Jio India Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "locations/workflows", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-06-01", + "2020-09-01", + "2020-03-01" + ], + "capabilities": "None", + "defaultApiVersion": "2022-06-01", + "locationMappings": null, + "locations": [ + "West Central US", + "West US", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "Australia East", + "Australia Southeast", + "East US", + "West US 3", + "Canada Central", + "Canada East", + "Central US", + "East US 2", + "UK South", + "UK West", + "Central India", + "South India", + "North Central US", + "South Central US", + "Brazil South", + "Japan East", + "Japan West", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West", + "UAE North", + "UAE Central", + "Germany West Central", + "Germany North", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Jio India West", + "Jio India Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "locations/operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-06-01", + "2020-09-01", + "2020-03-01" + ], + "capabilities": "None", + "defaultApiVersion": "2022-06-01", + "locationMappings": null, + "locations": [ + "West Central US", + "West US", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "Australia East", + "Australia Southeast", + "East US", + "West US 3", + "Canada Central", + "Canada East", + "Central US", + "East US 2", + "UK South", + "UK West", + "Central India", + "South India", + "North Central US", + "South Central US", + "Brazil South", + "Japan East", + "Japan West", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West", + "UAE North", + "UAE Central", + "Germany West Central", + "Germany North", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Jio India West", + "Jio India Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "locations/operationResults", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "d4cc0c0d-dd71-4562-97fd-fc96d8c90263" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.StorageTasks", + "namespace": "Microsoft.StorageTasks", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01" + ], + "capabilities": "None", + "defaultApiVersion": "2023-01-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "66f1e791-7bfb-4e18-aed8-1720056421c7", + "roleDefinitionId": "15f6e7b0-eec0-4f18-a552-c97e000cbc61" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.StreamAnalytics", + "namespace": "Microsoft.StreamAnalytics", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-10-01-preview", + "2020-03-01", + "2019-06-01", + "2018-11-01", + "2017-04-01-preview", + "2016-03-01", + "2015-11-01", + "2015-10-01", + "2015-09-01", + "2015-08-01-preview", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-03-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "West Europe", + "East US 2", + "North Europe", + "Japan East", + "West US", + "Southeast Asia", + "South Central US", + "East Asia", + "Japan West", + "North Central US", + "East US", + "Australia East", + "Australia Southeast", + "Brazil South", + "Central India", + "West Central US", + "UK South", + "UK West", + "Canada Central", + "Canada East", + "West US 2", + "Korea Central", + "France Central", + "South India", + "Norway East", + "Germany West Central", + "Uae North", + "Australia Central", + "Switzerland North", + "South Africa North", + "West US 3", + "Jio India West", + "Switzerland West", + "West India", + "Australia Central 2", + "Korea South", + "Norway West", + "Jio India Central", + "Germany North", + "Brazil Southeast", + "France South", + "Sweden Central", + "Poland Central", + "Italy North", + "Qatar Central" + ], + "properties": null, + "resourceType": "streamingjobs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-03-01-preview", + "2020-03-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "West Europe", + "East US 2", + "North Europe", + "Japan East", + "West US", + "Southeast Asia", + "South Central US", + "East Asia", + "Japan West", + "North Central US", + "East US", + "Australia East", + "Australia Southeast", + "Brazil South", + "Central India", + "West Central US", + "UK South", + "UK West", + "Canada Central", + "Canada East", + "West US 2", + "Korea Central", + "France Central", + "South India", + "Norway East", + "Germany West Central", + "Uae North", + "Australia Central", + "Switzerland North", + "South Africa North", + "West US 3", + "Jio India West", + "Switzerland West", + "West India", + "Australia Central 2", + "Korea South", + "Norway West", + "Jio India Central", + "Germany North", + "Brazil Southeast", + "France South", + "Sweden Central", + "Poland Central", + "Italy North", + "Qatar Central" + ], + "properties": null, + "resourceType": "clusters", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-03-01-preview", + "2020-03-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US", + "West Europe", + "East US 2", + "North Europe", + "Japan East", + "West US", + "Southeast Asia", + "South Central US", + "East Asia", + "Japan West", + "North Central US", + "East US", + "Australia East", + "Australia Southeast", + "Brazil South", + "Central India", + "West Central US", + "UK South", + "UK West", + "Canada Central", + "Canada East", + "West US 2", + "Korea Central", + "France Central", + "South India", + "Norway East", + "Germany West Central", + "Uae North", + "Australia Central", + "Switzerland North", + "South Africa North", + "West US 3", + "Jio India West", + "Switzerland West", + "West India", + "Australia Central 2", + "Korea South", + "Norway West", + "Jio India Central", + "Germany North", + "Brazil Southeast", + "France South", + "Sweden Central", + "Poland Central", + "Italy North", + "Qatar Central" + ], + "properties": null, + "resourceType": "clusters/privateEndpoints", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-10-01-preview", + "2020-03-01", + "2019-06-01", + "2018-11-01", + "2017-04-01-preview", + "2016-03-01", + "2015-11-01", + "2015-10-01", + "2015-09-01", + "2015-08-01-preview", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Europe", + "Central US", + "East US 2", + "North Europe", + "Japan East", + "West US", + "Southeast Asia", + "South Central US", + "East Asia", + "Japan West", + "North Central US", + "East US", + "Australia East", + "Australia Southeast", + "Brazil South", + "Central India", + "West Central US", + "UK South", + "West US 2", + "UK West", + "Canada Central", + "Canada East", + "Korea Central", + "France Central", + "South India", + "Norway East", + "Germany West Central", + "UAE North", + "Australia Central", + "Switzerland North", + "South Africa North", + "West US 3", + "Jio India West", + "Switzerland West", + "Australia Central 2", + "Korea South", + "Norway West", + "Jio India Central", + "Germany North", + "Brazil Southeast", + "West India", + "France South", + "Sweden Central", + "Qatar Central", + "Poland Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-10-01-preview", + "2020-03-01", + "2019-06-01", + "2018-11-01", + "2017-04-01-preview", + "2016-03-01", + "2015-11-01", + "2015-10-01", + "2015-09-01", + "2015-08-01-preview", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations/quotas", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-10-01-preview", + "2017-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations/testQuery", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-10-01-preview", + "2017-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations/compileQuery", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-10-01-preview", + "2017-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations/sampleInput", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-10-01-preview", + "2017-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations/testInput", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-10-01-preview", + "2017-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations/testOutput", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-10-01-preview", + "2017-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations/operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-10-01-preview", + "2020-03-01", + "2019-06-01", + "2018-11-01", + "2017-04-01-preview", + "2016-03-01", + "2015-11-01", + "2015-10-01", + "2015-09-01", + "2015-08-01-preview", + "2015-06-01", + "2015-05-01", + "2015-04-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Europe", + "West US", + "Central US", + "East US 2", + "North Europe", + "Japan East", + "Southeast Asia", + "South Central US", + "East Asia", + "Japan West", + "North Central US", + "East US", + "Australia East", + "Australia Southeast", + "Brazil South", + "Central India", + "West Central US", + "UK South", + "Germany West Central", + "UK West", + "Canada Central", + "Canada East", + "West US 2", + "Korea Central", + "France Central", + "South India", + "Norway East", + "Uae North", + "Australia Central", + "Switzerland North", + "South Africa North", + "West US 3", + "Jio India West", + "Switzerland West", + "West India", + "Australia Central 2", + "Korea South", + "Norway West", + "Jio India Central", + "Germany North", + "Brazil Southeast", + "France South", + "Sweden Central", + "Poland Central", + "Italy North", + "Qatar Central" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "e3335adb-5ca0-40dc-b8d3-bedc094e523b" + }, + { + "applicationId": "5da7367f-09c8-493e-8fd4-638089cddec3" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Subscription", + "namespace": "Microsoft.Subscription", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2017-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US" + ], + "properties": null, + "resourceType": "SubscriptionDefinitions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-10-01", + "2021-01-01-privatepreview", + "2019-10-01-preview", + "2018-11-01-preview", + "2018-03-01-preview", + "2017-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US" + ], + "properties": null, + "resourceType": "SubscriptionOperations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-10-01-preview", + "2018-11-01-preview", + "2018-03-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US" + ], + "properties": null, + "resourceType": "CreateSubscription", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-10-01", + "2017-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-10-01", + "2020-09-01", + "2019-10-01-preview", + "2019-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US" + ], + "properties": null, + "resourceType": "cancel", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-01-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "validateCancel", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-10-01", + "2020-09-01", + "2019-10-01-preview", + "2019-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US" + ], + "properties": null, + "resourceType": "rename", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-10-01", + "2020-09-01", + "2019-10-01-preview", + "2019-03-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US" + ], + "properties": null, + "resourceType": "enable", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-10-01", + "2021-01-01-privatepreview", + "2019-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "subscriptions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-10-01", + "2021-01-01-privatepreview", + "2020-09-01", + "2019-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "aliases", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US" + ], + "properties": null, + "resourceType": "operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-01-01-privatepreview", + "2019-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "acceptChangeTenant", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-01-01-privatepreview", + "2019-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "changeTenantStatus", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-01-01-privatepreview", + "2019-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "changeTenantRequest", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-10-01", + "2021-01-01-privatepreview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "policies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-10-01", + "2021-01-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "acceptOwnership", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-10-01", + "2021-01-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "acceptOwnershipStatus", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "959678cf-d004-4c22-82a6-d2ce549a58b8", + "roleDefinitionId": "81a3dd11-5123-4ec3-9485-772b0a27d1bd" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/microsoft.support", + "namespace": "microsoft.support", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationFree", + "registrationState": "Registered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01-preview", + "2021-06-01-preview", + "2020-04-01", + "2019-05-01-preview", + "2015-07-01-Preview", + "2015-03-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "South Central US", + "Central US", + "West Europe", + "North Europe", + "West US", + "East US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Southeast Asia", + "East Asia", + "Australia East", + "Australia Southeast" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01-preview", + "2020-04-01", + "2019-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01-preview", + "2020-04-01", + "2019-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "South Central US", + "Central US", + "West Europe", + "North Europe", + "West US", + "East US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Southeast Asia", + "East Asia", + "Australia East", + "Australia Southeast" + ], + "properties": null, + "resourceType": "services", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01-preview", + "2020-04-01", + "2019-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "South Central US", + "Central US", + "West Europe", + "North Europe", + "West US", + "East US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Southeast Asia", + "East Asia", + "Australia East", + "Australia Southeast" + ], + "properties": null, + "resourceType": "services/problemclassifications", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01-preview", + "2020-04-01", + "2019-05-01-preview" + ], + "capabilities": "SupportsExtension", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "South Central US", + "Central US", + "West Europe", + "North Europe", + "West US", + "East US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Southeast Asia", + "East Asia", + "Australia East", + "Australia Southeast" + ], + "properties": null, + "resourceType": "supporttickets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01-preview", + "2020-04-01", + "2019-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "South Central US", + "Central US", + "West Europe", + "North Europe", + "West US", + "East US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Southeast Asia", + "East Asia", + "Australia East", + "Australia Southeast" + ], + "properties": null, + "resourceType": "supporttickets/communications", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01-preview", + "2020-04-01", + "2019-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "South Central US", + "Central US", + "West Europe", + "North Europe", + "West US", + "East US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Southeast Asia", + "East Asia", + "Australia East", + "Australia Southeast" + ], + "properties": null, + "resourceType": "operationresults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01-preview", + "2020-04-01", + "2019-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "South Central US", + "Central US", + "West Europe", + "North Europe", + "West US", + "East US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Southeast Asia", + "East Asia", + "Australia East", + "Australia Southeast" + ], + "properties": null, + "resourceType": "operationsstatus", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01-preview", + "2021-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "lookUpResourceId", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "South Central US", + "Central US", + "West Europe", + "North Europe", + "West US", + "East US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Southeast Asia", + "East Asia", + "Australia East", + "Australia Southeast" + ], + "properties": null, + "resourceType": "fileWorkspaces", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "South Central US", + "Central US", + "West Europe", + "North Europe", + "West US", + "East US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Southeast Asia", + "East Asia", + "Australia East", + "Australia Southeast" + ], + "properties": null, + "resourceType": "fileWorkspaces/files", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "9e09aefc-b2e5-4d19-9f74-3e3e8b11a57b", + "managedByRoleDefinitionId": "ede175bc-31e5-4074-ba98-e62b895797aa", + "roleDefinitionId": "a53b114a-452b-4d20-bcd6-c51c3c8c5878" + }, + { + "applicationId": "1ac05c7e-12d2-4605-bf9d-549d7041c6b3", + "roleDefinitionId": "48e77487-c9fa-4abe-8484-71ebdebdbbc2" + }, + { + "applicationId": "ec52d13d-2e85-410e-a89a-8c79fb6a32ac", + "roleDefinitionId": "c3a447c3-a63a-4905-a125-c6856f9d0e17" + }, + { + "applicationId": "2e458d69-0892-4655-b713-4f7b182315dd", + "roleDefinitionId": "45EA3B16-D4DD-48CA-BF0D-BBE644C0C0AF" + }, + { + "applicationId": "2746ea77-4702-4b45-80ca-3c97e680e8b7", + "roleDefinitionId": "253ad606-39c5-4232-9765-fab08d8375e9" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Synapse", + "namespace": "Microsoft.Synapse", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2021-06-01-preview", + "2021-06-01", + "2021-05-01", + "2021-04-01-preview", + "2021-03-01", + "2020-12-01", + "2019-06-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "East US", + "North Europe", + "West Europe", + "Southeast Asia", + "Australia East", + "West Central US", + "South Central US", + "East US 2", + "UK South", + "West US", + "Australia Southeast", + "East Asia", + "Brazil South", + "Central US", + "Central India", + "Japan East", + "North Central US", + "Canada Central", + "Canada East", + "Korea Central", + "South Africa North", + "UK West", + "Japan West", + "France Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North", + "West US 3", + "Jio India West", + "South India", + "Sweden Central", + "Poland Central", + "Switzerland West", + "Qatar Central" + ], + "properties": null, + "resourceType": "workspaces", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2021-06-01-preview", + "2021-06-01", + "2021-05-01", + "2021-04-01-preview", + "2021-03-01", + "2020-12-01", + "2019-06-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "East US", + "North Europe", + "West Europe", + "Southeast Asia", + "Australia East", + "West Central US", + "South Central US", + "East US 2", + "UK South", + "West US", + "Australia Southeast", + "East Asia", + "Brazil South", + "Central US", + "Central India", + "Japan East", + "North Central US", + "Canada Central", + "Canada East", + "Korea Central", + "South Africa North", + "UK West", + "Japan West", + "France Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North", + "West US 3", + "Jio India West", + "South India", + "Sweden Central", + "Poland Central", + "Switzerland West", + "Qatar Central" + ], + "properties": null, + "resourceType": "workspaces/bigDataPools", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2021-06-01-preview", + "2021-06-01", + "2021-05-01", + "2021-04-01-preview", + "2021-03-01", + "2020-12-01", + "2020-04-01-preview", + "2019-06-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "East US", + "North Europe", + "West Europe", + "Southeast Asia", + "Australia East", + "West Central US", + "South Central US", + "East US 2", + "UK South", + "West US", + "Australia Southeast", + "East Asia", + "Brazil South", + "Central US", + "Central India", + "Japan East", + "North Central US", + "Canada Central", + "Canada East", + "Korea Central", + "South Africa North", + "UK West", + "Japan West", + "France Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North", + "West US 3", + "Jio India West", + "South India", + "Sweden Central", + "Poland Central", + "Switzerland West", + "Qatar Central" + ], + "properties": null, + "resourceType": "workspaces/sqlPools", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-04-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "East US", + "North Europe", + "West Europe", + "Southeast Asia", + "Australia East", + "West Central US", + "South Central US", + "East US 2", + "UK South", + "West US", + "Australia Southeast", + "East Asia", + "Brazil South", + "Central US", + "Central India", + "Japan East", + "North Central US", + "Canada Central", + "Canada East", + "Korea Central", + "South Africa North", + "UK West", + "Japan West", + "France Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North", + "West US 3", + "Jio India West", + "South India", + "Sweden Central", + "Poland Central", + "Switzerland West", + "Qatar Central" + ], + "properties": null, + "resourceType": "workspaces/sqlDatabases", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "East US", + "North Europe", + "West Europe", + "Southeast Asia", + "Australia East", + "West Central US", + "South Central US", + "East US 2", + "UK South", + "West US", + "Australia Southeast", + "East Asia", + "Brazil South", + "Central US", + "Central India", + "Japan East", + "North Central US", + "Canada Central", + "Canada East", + "Korea Central", + "South Africa North", + "UK West", + "Japan West", + "France Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North", + "West US 3", + "Jio India West", + "South India", + "Sweden Central", + "Poland Central", + "Switzerland West", + "Qatar Central" + ], + "properties": null, + "resourceType": "locations/sqlDatabaseAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "East US", + "North Europe", + "West Europe", + "Southeast Asia", + "Australia East", + "West Central US", + "South Central US", + "East US 2", + "UK South", + "West US", + "Australia Southeast", + "East Asia", + "Brazil South", + "Central US", + "Central India", + "Japan East", + "North Central US", + "Canada Central", + "Canada East", + "Korea Central", + "South Africa North", + "UK West", + "Japan West", + "France Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North", + "West US 3", + "Jio India West", + "South India", + "Sweden Central", + "Poland Central", + "Switzerland West", + "Qatar Central" + ], + "properties": null, + "resourceType": "locations/sqlDatabaseOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-06-01-preview", + "2021-04-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2021-06-01-preview", + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Poland Central", + "South Africa North", + "South Africa West", + "Qatar Central", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "workspaces/kustoPools", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-06-01-preview", + "2021-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-06-01-preview", + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Poland Central", + "South Africa North", + "South Africa West", + "Qatar Central", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/kustoPoolOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-06-01-preview", + "2021-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-06-01-preview", + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Poland Central", + "South Africa North", + "South Africa West", + "Qatar Central", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "locations/kustoPoolCheckNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-06-01-preview", + "2021-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-06-01-preview", + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Poland Central", + "South Africa North", + "South Africa West", + "Qatar Central", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "workspaces/kustoPools/databases", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-06-01-preview", + "2021-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-06-01-preview", + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Poland Central", + "South Africa North", + "South Africa West", + "Qatar Central", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "workspaces/kustoPools/attacheddatabaseconfigurations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-06-01-preview", + "2021-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2021-06-01-preview", + "locationMappings": null, + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Poland Central", + "South Africa North", + "South Africa West", + "Qatar Central", + "South Central US", + "South India", + "Southeast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "workspaces/kustoPools/databases/dataconnections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "East US", + "North Europe", + "West Europe", + "Southeast Asia", + "Australia East", + "West Central US", + "South Central US", + "East US 2", + "UK South", + "West US", + "Australia Southeast", + "East Asia", + "Brazil South", + "Central US", + "Central India", + "Japan East", + "North Central US", + "Canada Central", + "Canada East", + "Korea Central", + "South Africa North", + "UK West", + "Japan West", + "France Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North", + "West US 3", + "Jio India West", + "South India", + "Sweden Central", + "Poland Central", + "Switzerland West", + "Qatar Central" + ], + "properties": null, + "resourceType": "locations/sqlPoolAzureAsyncOperation", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "East US", + "North Europe", + "West Europe", + "Southeast Asia", + "Australia East", + "West Central US", + "South Central US", + "East US 2", + "UK South", + "West US", + "Australia Southeast", + "East Asia", + "Brazil South", + "Central US", + "Central India", + "Japan East", + "North Central US", + "Canada Central", + "Canada East", + "Korea Central", + "South Africa North", + "UK West", + "Japan West", + "France Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North", + "West US 3", + "Jio India West", + "South India", + "Sweden Central", + "Poland Central", + "Switzerland West", + "Qatar Central" + ], + "properties": null, + "resourceType": "locations/sqlPoolOperationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2021-06-01-preview", + "2021-06-01", + "2021-05-01", + "2021-04-01-preview", + "2021-03-01", + "2020-12-01", + "2019-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "East US", + "North Europe", + "West Europe", + "Southeast Asia", + "Australia East", + "West Central US", + "South Central US", + "East US 2", + "UK South", + "West US", + "Australia Southeast", + "East Asia", + "Brazil South", + "Central US", + "Central India", + "Japan East", + "North Central US", + "Canada Central", + "Canada East", + "Korea Central", + "South Africa North", + "UK West", + "Japan West", + "France Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North", + "West US 3", + "Jio India West", + "South India", + "Sweden Central", + "Poland Central", + "Switzerland West", + "Qatar Central" + ], + "properties": null, + "resourceType": "workspaces/operationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2021-06-01-preview", + "2021-06-01", + "2021-05-01", + "2021-04-01-preview", + "2021-03-01", + "2020-12-01", + "2019-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "East US", + "North Europe", + "West Europe", + "Southeast Asia", + "Australia East", + "West Central US", + "South Central US", + "East US 2", + "UK South", + "West US", + "Australia Southeast", + "East Asia", + "Brazil South", + "Central US", + "Central India", + "Japan East", + "North Central US", + "Canada Central", + "Canada East", + "Korea Central", + "South Africa North", + "UK West", + "Japan West", + "France Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North", + "West US 3", + "Jio India West", + "South India", + "Sweden Central", + "Poland Central", + "Switzerland West", + "Qatar Central" + ], + "properties": null, + "resourceType": "workspaces/operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2021-06-01-preview", + "2021-06-01", + "2021-05-01", + "2021-04-01-preview", + "2021-03-01", + "2020-12-01", + "2019-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2021-06-01-preview", + "2021-06-01", + "2021-05-01", + "2021-04-01-preview", + "2021-03-01", + "2020-12-01", + "2019-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "East US", + "North Europe", + "West Europe", + "Southeast Asia", + "Australia East", + "West Central US", + "South Central US", + "East US 2", + "UK South", + "West US", + "Australia Southeast", + "East Asia", + "Brazil South", + "Central US", + "Central India", + "Japan East", + "North Central US", + "Canada Central", + "Canada East", + "Korea Central", + "South Africa North", + "UK West", + "Japan West", + "France Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North", + "West US 3", + "Jio India West", + "South India", + "Qatar Central", + "Sweden Central", + "Poland Central", + "Switzerland West" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-06-01-preview", + "2021-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "kustoOperations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2021-06-01-preview", + "2021-06-01", + "2021-05-01", + "2021-04-01-preview", + "2021-03-01", + "2020-12-01", + "2019-06-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "East US", + "North Europe", + "West Europe", + "Southeast Asia", + "Australia East", + "West Central US", + "South Central US", + "East US 2", + "UK South", + "West US", + "Australia Southeast", + "East Asia", + "Brazil South", + "Central US", + "Central India", + "Japan East", + "North Central US", + "Canada Central", + "Canada East", + "Korea Central", + "South Africa North", + "UK West", + "Japan West", + "France Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North", + "West US 3", + "Jio India West", + "South India", + "Sweden Central", + "Poland Central", + "Switzerland West", + "Qatar Central" + ], + "properties": null, + "resourceType": "privateLinkHubs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2021-06-01-preview", + "2021-06-01", + "2021-05-01", + "2021-04-01-preview", + "2021-03-01", + "2020-12-01", + "2019-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2021-06-01-preview", + "2021-06-01", + "2021-05-01", + "2021-04-01-preview", + "2021-03-01", + "2020-12-01", + "2019-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "East US", + "North Europe", + "West Europe", + "Southeast Asia", + "Australia East", + "West Central US", + "South Central US", + "East US 2", + "UK South", + "West US", + "Australia Southeast", + "East Asia", + "Brazil South", + "Central US", + "Central India", + "Japan East", + "North Central US", + "Canada Central", + "Canada East", + "Korea Central", + "South Africa North", + "UK West", + "Japan West", + "France Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North", + "West US 3", + "Jio India West", + "South India", + "Sweden Central", + "Poland Central", + "Switzerland West", + "Qatar Central" + ], + "properties": null, + "resourceType": "locations/operationResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01", + "2021-06-01-preview", + "2021-06-01", + "2021-05-01", + "2021-04-01-preview", + "2021-03-01", + "2020-12-01", + "2019-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "East US", + "North Europe", + "West Europe", + "Southeast Asia", + "Australia East", + "West Central US", + "South Central US", + "East US 2", + "UK South", + "West US", + "Australia Southeast", + "East Asia", + "Brazil South", + "Central US", + "Central India", + "Japan East", + "North Central US", + "Canada Central", + "Canada East", + "Korea Central", + "South Africa North", + "UK West", + "Japan West", + "France Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North", + "West US 3", + "Jio India West", + "South India", + "Sweden Central", + "Poland Central", + "Switzerland West", + "Qatar Central" + ], + "properties": null, + "resourceType": "locations/operationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "East US", + "North Europe", + "West Europe", + "Southeast Asia", + "Australia East", + "West Central US", + "South Central US", + "East US 2", + "UK South", + "West US", + "Australia Southeast", + "East Asia", + "Brazil South", + "Central US", + "Central India", + "Japan East", + "North Central US", + "Canada Central", + "Canada East", + "Korea Central", + "South Africa North", + "UK West", + "Japan West", + "France Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North", + "West US 3", + "Jio India West", + "South India", + "Sweden Central", + "Poland Central", + "Switzerland West", + "Qatar Central" + ], + "properties": null, + "resourceType": "locations/usages", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-05-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US 2", + "East US", + "North Europe", + "West Europe", + "Southeast Asia", + "Australia East", + "West Central US", + "South Central US", + "East US 2", + "UK South", + "West US", + "Australia Southeast", + "East Asia", + "Brazil South", + "Central US", + "Central India", + "Japan East", + "North Central US", + "Canada Central", + "Canada East", + "Korea Central", + "South Africa North", + "UK West", + "Japan West", + "France Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North", + "West US 3", + "Jio India West", + "South India", + "Sweden Central", + "Poland Central", + "Switzerland West", + "Qatar Central" + ], + "properties": null, + "resourceType": "workspaces/usages", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "886b3ae5-8ee1-4bb4-a312-b35341a95909", + "roleDefinitionId": "97d36772-c3ad-4b18-a2e3-f61009b62a50" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Syntex", + "namespace": "Microsoft.Syntex", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-15-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "Central US", + "West US", + "West Central US", + "South Central US", + "North Central US", + "East US 2", + "Canada Central", + "Canada East", + "Brazil South", + "North Europe", + "Norway East", + "Norway West", + "France Central", + "France South", + "Switzerland North", + "Switzerland West", + "UK South", + "UK West", + "Germany North", + "West Europe", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "East Asia", + "Southeast Asia", + "Japan East", + "Korea Central", + "UAE North", + "South Africa North", + "South Africa West" + ], + "properties": null, + "resourceType": "documentProcessors", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-04-preview", + "2022-09-15-preview", + "2022-06-15-preview", + "2021-10-20-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-15-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany North", + "Japan East", + "Korea Central", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "Switzerland West", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US" + ], + "properties": null, + "resourceType": "Locations/OperationStatuses", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "f3625a3e-6360-4580-968d-fae4cabc75a0", + "roleDefinitionId": "97af1d96-7c92-442d-8117-11e604996ca4" + }, + { + "applicationId": "b27370f0-c0ee-4463-a997-d93fd814aa35" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.TestBase", + "namespace": "Microsoft.TestBase", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-15-preview", + "2023-08-01-preview", + "2023-06-01-preview", + "2023-05-15-preview", + "2023-01-15-preview", + "2023-01-01-preview", + "2022-12-15-preview", + "2022-12-01-preview", + "2022-11-15-preview", + "2022-11-01-preview", + "2022-09-15-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-04-01-preview", + "2022-03-01-preview", + "2021-12-01", + "2021-09-01", + "2020-12-16-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-15-preview", + "2023-08-01-preview", + "2023-06-01-preview", + "2023-05-15-preview", + "2023-01-15-preview", + "2023-01-01-preview", + "2022-12-15-preview", + "2022-12-01-preview", + "2022-11-15-preview", + "2022-11-01-preview", + "2022-09-15-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-04-01-preview", + "2022-03-01-preview", + "2021-12-01", + "2021-09-01", + "2020-12-16-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US 2 EUAP" + ], + "properties": null, + "resourceType": "locations/operationstatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-15-preview", + "2023-08-01-preview", + "2023-06-01-preview", + "2023-05-15-preview", + "2023-01-15-preview", + "2023-01-01-preview", + "2022-12-15-preview", + "2022-12-01-preview", + "2022-11-15-preview", + "2022-11-01-preview", + "2022-09-15-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-04-01-preview", + "2022-03-01-preview", + "2021-12-01", + "2021-09-01", + "2020-12-16-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "skus", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-15-preview", + "2023-08-01-preview", + "2023-06-01-preview", + "2023-05-15-preview", + "2023-01-15-preview", + "2023-01-01-preview", + "2022-12-15-preview", + "2022-12-01-preview", + "2022-11-15-preview", + "2022-11-01-preview", + "2022-09-15-preview", + "2022-08-01-preview", + "2022-05-01-preview", + "2022-04-01-preview", + "2022-03-01-preview", + "2021-12-01", + "2021-09-01", + "2020-12-16-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-01-01-preview", + "2022-12-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-04-01-preview", + "2022-03-01-preview", + "2021-12-01", + "2021-09-01", + "2020-12-16-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "testBaseAccounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-01-01-preview", + "2022-12-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-04-01-preview", + "2022-03-01-preview", + "2021-12-01", + "2021-09-01", + "2020-12-16-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "testBaseAccounts/usages", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-01-01-preview", + "2022-12-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-04-01-preview", + "2022-03-01-preview", + "2021-12-01", + "2021-09-01", + "2020-12-16-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "testBaseAccounts/availableOSs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-01-01-preview", + "2022-12-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-04-01-preview", + "2022-03-01-preview", + "2021-12-01", + "2021-09-01", + "2020-12-16-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "testBaseAccounts/testTypes", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-01-01-preview", + "2022-12-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-04-01-preview", + "2022-03-01-preview", + "2021-12-01", + "2021-09-01", + "2020-12-16-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "testBaseAccounts/flightingRings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-01-01-preview", + "2022-12-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-04-01-preview", + "2022-03-01-preview", + "2021-12-01", + "2021-09-01", + "2020-12-16-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "testBaseAccounts/packages", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-01-01-preview", + "2022-12-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-04-01-preview", + "2022-03-01-preview", + "2021-12-01", + "2021-09-01", + "2020-12-16-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "testBaseAccounts/packages/osUpdates", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-01-01-preview", + "2022-12-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-04-01-preview", + "2022-03-01-preview", + "2021-12-01", + "2021-09-01", + "2020-12-16-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "testBaseAccounts/testSummaries", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-01-01-preview", + "2022-12-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-04-01-preview", + "2022-03-01-preview", + "2021-12-01", + "2021-09-01", + "2020-12-16-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "testBaseAccounts/packages/favoriteProcesses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-01-01-preview", + "2022-12-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-04-01-preview", + "2022-03-01-preview", + "2021-12-01", + "2021-09-01", + "2020-12-16-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "testBaseAccounts/packages/testResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-01-01-preview", + "2022-12-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-04-01-preview", + "2022-03-01-preview", + "2021-12-01", + "2021-09-01", + "2020-12-16-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "testBaseAccounts/packages/testResults/analysisResults", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-01-01-preview", + "2022-12-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-04-01-preview", + "2022-03-01-preview", + "2021-12-01", + "2021-09-01", + "2020-12-16-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "testBaseAccounts/emailEvents", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-01-01-preview", + "2022-12-01-preview", + "2022-11-01-preview", + "2022-08-01-preview", + "2022-04-01-preview", + "2022-03-01-preview", + "2021-12-01", + "2021-09-01", + "2020-12-16-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "testBaseAccounts/customerEvents", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-01-01-preview", + "2022-12-01-preview", + "2022-11-01-preview", + "2022-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "testBaseAccounts/featureUpdateSupportedOses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-01-01-preview", + "2022-12-01-preview", + "2022-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "testBaseAccounts/availableInplaceUpgradeOSs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-01-01-preview", + "2022-12-01-preview", + "2022-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "testBaseAccounts/firstPartyApps", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-01-01-preview", + "2022-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "testBaseAccounts/draftPackages", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview", + "2023-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "testBaseAccounts/actionRequests", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "testBaseAccounts/customImages", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "testBaseAccounts/vhds", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "testBaseAccounts/imageDefinitions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "testBaseAccounts/galleryApps", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "testBaseAccounts/galleryApps/galleryAppSkus", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "120d688d-1518-4cf7-bd38-182f158850b6", + "roleDefinitionId": "5a43abdf-bb87-42c4-9e56-1c24bf364150" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.TimeSeriesInsights", + "namespace": "Microsoft.TimeSeriesInsights", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-03-31-preview", + "2020-05-15", + "2018-08-15-preview", + "2017-11-15", + "2017-02-28-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-05-15", + "locationMappings": null, + "locations": [ + "Canada Central", + "France Central", + "South Central Us", + "East US 2", + "West US", + "East US", + "North Europe", + "West Europe", + "West US 2", + "Central US", + "Southeast Asia", + "Australia East", + "Australia Southeast", + "East Asia", + "UK West", + "UK South" + ], + "properties": null, + "resourceType": "environments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-03-31-preview", + "2020-05-15", + "2018-08-15-preview", + "2017-11-15", + "2017-02-28-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-05-15", + "locationMappings": null, + "locations": [ + "Canada Central", + "France Central", + "South Central Us", + "East US 2", + "West US", + "East US", + "North Europe", + "West Europe", + "West US 2", + "Central US", + "Southeast Asia", + "Australia East", + "Australia Southeast", + "East Asia", + "UK West", + "UK South" + ], + "properties": null, + "resourceType": "environments/eventsources", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-03-31-preview", + "2020-05-15", + "2018-08-15-preview", + "2017-11-15", + "2017-02-28-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": "2020-05-15", + "locationMappings": null, + "locations": [ + "Canada Central", + "France Central", + "South Central Us", + "East US 2", + "West US", + "East US", + "North Europe", + "West Europe", + "West US 2", + "Central US", + "Southeast Asia", + "Australia East", + "Australia Southeast", + "East Asia", + "UK West", + "UK South" + ], + "properties": null, + "resourceType": "environments/referenceDataSets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-03-31-preview", + "2020-05-15", + "2018-08-15-preview", + "2017-11-15", + "2017-02-28-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2020-05-15", + "locationMappings": null, + "locations": [ + "Canada Central", + "France Central", + "South Central Us", + "East US 2", + "West US", + "East US", + "North Europe", + "West Europe", + "West US 2", + "Central US", + "Southeast Asia", + "Australia East", + "Australia Southeast", + "East Asia", + "UK West", + "UK South" + ], + "properties": null, + "resourceType": "environments/accessPolicies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-03-31-preview", + "2020-05-15" + ], + "capabilities": "None", + "defaultApiVersion": "2020-05-15", + "locationMappings": null, + "locations": [ + "Canada Central", + "France Central", + "South Central Us", + "East US 2", + "West US", + "East US", + "North Europe", + "West Europe", + "West US 2", + "Central US", + "Southeast Asia", + "Australia East", + "Australia Southeast", + "East Asia", + "UK West", + "UK South" + ], + "properties": null, + "resourceType": "environments/privateLinkResources", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-03-31-preview", + "2020-05-15" + ], + "capabilities": "None", + "defaultApiVersion": "2020-05-15", + "locationMappings": null, + "locations": [ + "Canada Central", + "France Central", + "South Central Us", + "East US 2", + "West US", + "East US", + "North Europe", + "West Europe", + "West US 2", + "Central US", + "Southeast Asia", + "Australia East", + "Australia Southeast", + "East Asia", + "UK West", + "UK South" + ], + "properties": null, + "resourceType": "environments/privateEndpointConnectionProxies", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-03-31-preview", + "2020-05-15" + ], + "capabilities": "None", + "defaultApiVersion": "2020-05-15", + "locationMappings": null, + "locations": [ + "Canada Central", + "France Central", + "South Central Us", + "East US 2", + "West US", + "East US", + "North Europe", + "West Europe", + "West US 2", + "Central US", + "Southeast Asia", + "Australia East", + "Australia Southeast", + "East Asia", + "UK West", + "UK South" + ], + "properties": null, + "resourceType": "environments/privateEndpointConnections", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-08-15-privatepreview", + "2021-03-31-preview", + "2020-05-15", + "2018-08-15-preview", + "2017-11-15", + "2017-05-31-privatepreview", + "2017-02-28-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2020-05-15", + "locationMappings": null, + "locations": [ + "Canada Central", + "West India", + "France Central", + "South Central Us", + "East US 2", + "West US", + "East US", + "East US 2 EUAP", + "North Europe", + "West Europe", + "West US 2", + "Central US", + "Southeast Asia", + "Australia East", + "Australia Southeast", + "East Asia", + "UK West", + "North Central US", + "UK South" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorization": { + "applicationId": "a76f12f2-5fbe-483e-84b5-8382cccc53e3", + "roleDefinitionId": "e81d4399-ff60-4e78-81a7-15a6ff737adc" + }, + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.UsageBilling", + "namespace": "Microsoft.UsageBilling", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01-preview", + "2023-02-01-preview", + "2022-12-01-preview", + "2022-09-01-preview", + "2021-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "EAST US STG", + "United States", + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia SouthEast", + "Brazil South", + "Brazil SouthEast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "Central US EUAP", + "East Asia", + "East US", + "East US 2", + "East US 2 EUAP", + "France Central", + "France South", + "Germany North", + "Germany West Central", + "Israel Central", + "Italy North", + "Japan East", + "Japan West", + "Jio India Central", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "Norway West", + "Poland Central", + "Qatar Central", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "SouthEast Asia", + "Sweden Central", + "Switzerland North", + "Switzerland West", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West US", + "West US 2", + "West US 3" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "d9794ed7-bfec-42d8-ba8d-4d7df2a1f6dc", + "roleDefinitionId": "a5157199-d09c-4a4c-b9ca-292c6d8cc6a2" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.VideoIndexer", + "namespace": "Microsoft.VideoIndexer", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2023-08-01-preview", + "2023-06-02-preview", + "2022-08-01", + "2022-07-20-preview", + "2022-04-13-preview", + "2021-11-10-preview", + "2021-10-27-preview", + "2021-10-18-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2023-08-01-preview", + "2023-06-02-preview", + "2022-08-01", + "2022-07-20-preview", + "2022-04-13-preview", + "2021-11-10-preview", + "2021-10-27-preview", + "2021-10-18-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-08-01-preview", + "2023-06-02-preview", + "2022-08-01", + "2022-07-20-preview", + "2022-04-13-preview", + "2021-11-10-preview", + "2021-10-27-preview", + "2021-10-18-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Australia East", + "Australia Southeast", + "Canada Central", + "Central India", + "Central US", + "West US 3", + "East Asia", + "East US 2", + "Australia Central", + "France Central", + "Japan East", + "Japan West", + "Korea Central", + "North Europe", + "South Central US", + "Southeast Asia", + "North Central US", + "UAE North", + "UK South", + "West Central US", + "West Europe", + "West US", + "West US 2", + "Germany West Central", + "East US", + "Sweden Central", + "Switzerland West", + "Brazil South", + "Norway East", + "Canada East", + "UK West" + ], + "properties": null, + "resourceType": "locations/operationstatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-08-01", + "2022-07-20-preview", + "2022-04-13-preview", + "2021-11-10-preview", + "2021-10-27-preview", + "2021-10-18-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": "2022-08-01", + "locationMappings": null, + "locations": [ + "Southeast Asia", + "East Asia", + "North Europe", + "West US 2", + "West Europe", + "Australia East", + "East US 2", + "South Central US", + "Japan East", + "UK South", + "East US", + "Central India", + "Canada Central", + "West US", + "North Central US", + "France Central", + "Central US", + "Korea Central", + "West Central US", + "Japan West", + "Brazil South", + "Switzerland North", + "Switzerland West" + ], + "properties": null, + "resourceType": "accounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2023-08-01-preview", + "2023-06-02-preview", + "2022-08-01", + "2022-07-20-preview", + "2022-04-13-preview", + "2021-11-10-preview", + "2021-10-27-preview", + "2021-10-18-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checknameavailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-08-01", + "2022-07-20-preview", + "2022-04-13-preview", + "2021-11-10-preview", + "2021-10-27-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2022-08-01", + "locationMappings": null, + "locations": [ + "Southeast Asia", + "East Asia", + "North Europe", + "West US 2", + "West Europe", + "Australia East", + "East US 2", + "South Central US", + "Japan East", + "UK South", + "East US", + "Central India", + "Canada Central", + "West US", + "North Central US", + "France Central", + "Central US", + "Korea Central", + "West Central US", + "Japan West", + "Brazil South", + "Switzerland North", + "Switzerland West" + ], + "properties": null, + "resourceType": "locations/userclassicaccounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-08-01", + "2022-07-20-preview", + "2022-04-13-preview", + "2021-11-10-preview", + "2021-10-27-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2022-08-01", + "locationMappings": null, + "locations": [ + "Southeast Asia", + "East Asia", + "North Europe", + "West US 2", + "West Europe", + "Australia East", + "East US 2", + "South Central US", + "Japan East", + "UK South", + "East US", + "Central India", + "Canada Central", + "West US", + "North Central US", + "France Central", + "Central US", + "Korea Central", + "West Central US", + "Japan West", + "Brazil South", + "Switzerland North", + "Switzerland West" + ], + "properties": null, + "resourceType": "locations/classicaccounts", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "cf32a0cc-373c-47c9-9156-0db11f6a6dfc", + "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635", + "roleDefinitionId": "0ee55a0b-f45f-4392-92ec-e8bf1b4b5da5" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.VirtualMachineImages", + "namespace": "Microsoft.VirtualMachineImages", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2022-07-01", + "2022-02-14", + "2021-10-01", + "2020-02-14", + "2019-05-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": "2023-07-01", + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "Central US", + "West Central US", + "West US", + "West US 2", + "South Central US", + "West US 3", + "Canada Central", + "North Europe", + "West Europe", + "Japan East", + "South Africa North", + "Jio India West", + "East Asia", + "Southeast Asia", + "Norway East", + "UK South", + "UK West", + "UAE North", + "Germany West Central", + "Australia East", + "Australia Southeast", + "Switzerland North", + "Central India", + "France Central", + "Korea Central", + "North Central US", + "Brazil South", + "Qatar Central", + "Poland Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "imageTemplates", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2022-07-01", + "2022-02-14", + "2021-10-01", + "2020-02-14", + "2019-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "Central US", + "West Central US", + "West US", + "West US 2", + "South Central US", + "West US 3", + "Canada Central", + "North Europe", + "West Europe", + "Japan East", + "South Africa North", + "Jio India West", + "East Asia", + "Southeast Asia", + "Norway East", + "UK South", + "UK West", + "UAE North", + "Germany West Central", + "Australia East", + "Australia Southeast", + "Switzerland North", + "Central India", + "France Central", + "Korea Central", + "North Central US", + "Brazil South", + "Qatar Central", + "Poland Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "imageTemplates/runOutputs", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2022-07-01", + "2022-02-14", + "2021-10-01", + "2020-02-14", + "2019-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "Central US", + "West Central US", + "West US", + "West US 2", + "West US 3", + "South Central US", + "Canada Central", + "North Europe", + "West Europe", + "Norway East", + "UK South", + "UK West", + "UAE North", + "Germany West Central", + "Japan East", + "East Asia", + "Southeast Asia", + "Australia East", + "Australia Southeast", + "Jio India West", + "South Africa North", + "Switzerland North", + "Central India", + "France Central", + "Korea Central", + "North Central US", + "Brazil South", + "Qatar Central", + "Poland Central", + "Sweden Central", + "Italy North" + ], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2022-07-01", + "2022-02-14", + "2021-10-01", + "2020-02-14", + "2019-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "Central US", + "West Central US", + "West US", + "West US 2", + "South Central US", + "West US 3", + "Canada Central", + "North Europe", + "West Europe", + "Japan East", + "South Africa North", + "Jio India West", + "East Asia", + "Southeast Asia", + "Norway East", + "UK South", + "UK West", + "UAE North", + "Germany West Central", + "Australia East", + "Australia Southeast", + "Switzerland North", + "Central India", + "France Central", + "Korea Central", + "North Central US", + "Brazil South", + "Qatar Central", + "Poland Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "locations/operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-01", + "2022-07-01", + "2022-02-14", + "2021-10-01", + "2020-02-14", + "2019-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "Central US", + "West Central US", + "West US", + "West US 2", + "South Central US", + "West US 3", + "Canada Central", + "North Europe", + "West Europe", + "Japan East", + "South Africa North", + "Jio India West", + "East Asia", + "Southeast Asia", + "Norway East", + "UK South", + "UK West", + "UAE North", + "Germany West Central", + "Australia East", + "Australia Southeast", + "Switzerland North", + "Central India", + "France Central", + "Korea Central", + "North Central US", + "Brazil South", + "Qatar Central", + "Poland Central", + "Sweden Central" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorization": { + "applicationId": "499b84ac-1321-427f-aa17-267ca6975798", + "roleDefinitionId": "6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8" + }, + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/microsoft.visualstudio", + "namespace": "microsoft.visualstudio", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2014-04-01-preview", + "2014-02-26" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "South Central US", + "West Central US", + "East US", + "East US 2", + "West US", + "Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "West India", + "Central India", + "South India", + "West US 2", + "Canada Central", + "UK South" + ], + "properties": null, + "resourceType": "account", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2014-04-01-preview", + "2014-02-26" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "South Central US", + "West Central US", + "East US", + "East US 2", + "West US", + "Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "West India", + "Central India", + "South India", + "West US 2", + "Canada Central", + "UK South" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2014-04-01-preview", + "2014-02-26" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East Asia", + "Southeast Asia", + "Australia East", + "Brazil South", + "Canada Central", + "Japan East", + "Japan West", + "North Europe", + "West Europe", + "West India", + "Central India", + "South India", + "Central US", + "East US", + "East US 2", + "North Central US", + "South Central US", + "West Central US", + "UK South", + "West US", + "West US 2" + ], + "properties": null, + "resourceType": "account/project", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2014-04-01-preview", + "2014-02-26" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "South Central US", + "West Central US", + "East US", + "East US 2", + "West US", + "Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "West India", + "Central India", + "South India", + "West US 2", + "Canada Central", + "UK South" + ], + "properties": null, + "resourceType": "account/extension", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2014-04-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "South Central US", + "West Central US", + "East US", + "East US 2", + "West US", + "Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "West India", + "Central India", + "South India", + "West US 2", + "Canada Central", + "UK South" + ], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "ac9dc5fe-b644-4832-9d03-d9f1ab70c5f7", + "roleDefinitionId": "dd032bd9-65cc-4171-b688-c612566422ae" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.VMware", + "namespace": "Microsoft.VMware", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-10-01-preview", + "2019-12-20-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-10-01-preview", + "2019-12-20-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West US", + "East US 2 EUAP", + "West Europe" + ], + "properties": null, + "resourceType": "Locations/OperationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-10-01-preview", + "2019-12-20-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-10-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West US", + "West Europe" + ], + "properties": null, + "resourceType": "VCenters/InventoryItems", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "8502a0ec-c76d-412f-836c-398018e2312b", + "roleDefinitionId": "aff4da93-330d-44a3-8c49-a485c4f8d443" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.VoiceServices", + "namespace": "Microsoft.VoiceServices", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-13-preview", + "2023-04-03", + "2023-01-31" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "Operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-13-preview", + "2023-04-03", + "2023-01-31" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-07-13-preview", + "2023-04-03", + "2023-01-31" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "global" + ], + "properties": null, + "resourceType": "locations/checkNameAvailability", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "9bd5ab7f-4031-4045-ace9-6bebbad202f6", + "roleDefinitionId": "b879ac78-f1e6-448d-ab4c-5908cd5967c1" + }, + { + "applicationId": "48ef7923-268f-473d-bcf1-07f0997961f4", + "roleDefinitionId": "b879ac78-f1e6-448d-ab4c-5908cd5967c1" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.VSOnline", + "namespace": "Microsoft.VSOnline", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-07-01-preview", + "2019-07-01-beta", + "2019-07-01-alpha" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Europe", + "East US", + "West Us 2", + "Southeast Asia" + ], + "properties": null, + "resourceType": "accounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-05-26-preview", + "2020-05-26-beta", + "2020-05-26-alpha", + "2019-07-01-preview", + "2019-07-01-beta", + "2019-07-01-alpha" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Europe", + "East US", + "West Us 2", + "Southeast Asia" + ], + "properties": null, + "resourceType": "plans", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-05-26-privatepreview", + "2020-05-26-preview", + "2020-05-26-beta", + "2020-05-26-alpha", + "2019-07-01-privatepreview", + "2019-07-01-preview", + "2019-07-01-beta", + "2019-07-01-alpha" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2020-05-26-privatepreview", + "2020-05-26-preview", + "2020-05-26-beta", + "2020-05-26-alpha", + "2019-07-01-privatepreview", + "2019-07-01-preview", + "2019-07-01-beta", + "2019-07-01-alpha" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "registeredSubscriptions", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "e6c69915-bcc7-4335-b655-c62f949d691b", + "roleDefinitionId": "9bccffcd-2d3d-4b7c-a2cb-bb26e77b4810" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.WindowsESU", + "namespace": "Microsoft.WindowsESU", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-09-16-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-09-16-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-10-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "West Europe" + ], + "properties": null, + "resourceType": "Locations/OperationStatuses", + "zoneMappings": null + } + ] + }, + { + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.WindowsIoT", + "namespace": "Microsoft.WindowsIoT", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-06-01", + "2018-02-16-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US" + ], + "properties": null, + "resourceType": "DeviceServices", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2019-06-01", + "2018-02-16-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West US", + "East US", + "West Central US" + ], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "40b31737-98c6-45de-8d5c-47b50776497f" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.WindowsPushNotificationServices", + "namespace": "Microsoft.WindowsPushNotificationServices", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-09-12-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "63c2c773-89fe-4164-a02f-b8c7fc1772ae", + "roleDefinitionId": "322358fa-ea51-4f6c-b9d6-3be64015f074" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.WorkloadBuilder", + "namespace": "Microsoft.WorkloadBuilder", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-03-01-privatepreview", + "2020-07-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-03-01-privatepreview", + "2020-07-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "West Central US", + "East US 2 EUAP" + ], + "properties": null, + "resourceType": "Locations/OperationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2021-03-01-privatepreview", + "2020-07-01-privatepreview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Operations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "ea21b132-560f-4b0b-9876-903b6bca7b9d", + "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635", + "roleDefinitionId": "ce5fb12c-85c5-4285-a486-900ea87e2d1d" + }, + { + "applicationId": "b3d7adc8-6b92-4061-b47d-fc1419774ccc", + "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635", + "roleDefinitionId": "0a85775e-1971-429f-a12d-7e7d9e778ad3" + }, + { + "applicationId": "39495caf-cc21-4d03-b6b0-8c4a973cf213", + "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635", + "roleDefinitionId": "98914fcb-4448-49a5-b7ba-1adfcf6a6310" + }, + { + "applicationId": "0f81e18a-78a7-4acb-8ba1-5d08d1d6dc74", + "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635", + "roleDefinitionId": "4c7dbe20-958c-424d-8e3b-2adcf0891b61" + }, + { + "applicationId": "9b575df0-4edd-4256-aa48-f90573365685", + "roleDefinitionId": "8b92b42a-9066-4951-8406-bd8e1e709efa" + }, + { + "applicationId": "349bb73f-3925-4086-9116-edd12a824e6b", + "roleDefinitionId": "8f1b9964-2979-4263-88e3-163131994eee" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Microsoft.Workloads", + "namespace": "Microsoft.Workloads", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-10-01-preview", + "2023-04-01", + "2022-11-01-preview", + "2022-10-15-preview", + "2021-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-10-01-preview", + "2023-04-01", + "2022-11-01-preview", + "2022-10-15-preview", + "2021-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "West US 2", + "North Europe", + "Australia East", + "East Asia", + "Japan East", + "Canada Central", + "Central India", + "West US 3", + "West Europe", + "South Central US", + "Sweden Central", + "UK South", + "Germany West Central", + "Brazil South" + ], + "properties": null, + "resourceType": "Locations/OperationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01", + "2022-11-01-preview", + "2021-12-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "North Europe", + "Australia East", + "East Asia", + "Central India", + "West US 3", + "West Europe" + ], + "properties": null, + "resourceType": "sapVirtualInstances", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01", + "2022-11-01-preview", + "2021-12-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "North Europe", + "Australia East", + "East Asia", + "Central India", + "West US 3", + "West Europe" + ], + "properties": null, + "resourceType": "sapVirtualInstances/applicationInstances", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01", + "2022-11-01-preview", + "2021-12-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "North Europe", + "Australia East", + "East Asia", + "Central India", + "West US 3", + "West Europe" + ], + "properties": null, + "resourceType": "sapVirtualInstances/centralInstances", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01", + "2022-11-01-preview", + "2021-12-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "North Europe", + "Australia East", + "East Asia", + "Central India", + "West US 3", + "West Europe" + ], + "properties": null, + "resourceType": "sapVirtualInstances/databaseInstances", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-10-01-preview", + "2023-04-01", + "2022-11-01-preview", + "2022-10-15-preview", + "2021-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01", + "2022-11-01-preview", + "2021-12-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "North Europe", + "Australia East", + "East Asia", + "Central India", + "West US 3", + "West Europe" + ], + "properties": null, + "resourceType": "monitors", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01", + "2022-11-01-preview", + "2021-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "North Europe", + "Australia East", + "East Asia", + "Central India", + "West US 3", + "West Europe" + ], + "properties": null, + "resourceType": "monitors/providerInstances", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01", + "2022-11-01-preview", + "2021-12-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "North Europe", + "Australia East", + "East Asia", + "Central India", + "West US 3", + "West Europe" + ], + "properties": null, + "resourceType": "Locations/sapVirtualInstanceMetadata", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01", + "2022-11-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "East US 2", + "North Europe", + "Australia East", + "East Asia", + "Central India", + "West US 3", + "West Europe" + ], + "properties": null, + "resourceType": "monitors/sapLandscapeMonitor", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "f73fdc11-ed25-4c35-a93a-f525ab3fd649", + "roleDefinitionId": "245c4e9a-c554-4610-b460-ddd8816b73ff" + }, + { + "applicationId": "6d714e91-5638-46cc-a2fe-7028496eb614", + "roleDefinitionId": "1ee1043f-bf3e-4d7f-b41e-1be98bdd8604" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/NewRelic.Observability", + "namespace": "NewRelic.Observability", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-07-01-preview", + "2022-07-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-07-01-preview", + "2022-07-01" + ], + "capabilities": "None", + "defaultApiVersion": "2022-07-01", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "registeredSubscriptions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-07-01-preview", + "2022-07-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-07-01-preview", + "2022-07-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US EUAP", + "East US 2 EUAP", + "East US" + ], + "properties": null, + "resourceType": "locations/operationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-07-01-preview", + "2022-07-01" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US" + ], + "properties": null, + "resourceType": "monitors", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-07-01-preview", + "2022-07-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US" + ], + "properties": null, + "resourceType": "monitors/tagRules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-07-01-preview", + "2022-07-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-07-01-preview", + "2022-07-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "accounts", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-07-01-preview", + "2022-07-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "plans", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-07-01-preview", + "2022-07-01" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "organizations", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "d3244f1e-56a7-4819-80e9-a30a7a83dde8", + "roleDefinitionId": "80799b62-7876-4ae1-9785-6488529891a9" + }, + { + "applicationId": "faf1f7e1-8522-498c-a7f9-6a7f1a17f873", + "managedByRoleDefinitionId": "ecb4dcca-805b-4097-8e8a-3f692170c348", + "roleDefinitionId": "e3aea15f-7ac2-4161-8a7d-3a4b82c02ca1" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/NGINX.NGINXPLUS", + "namespace": "NGINX.NGINXPLUS", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01", + "2022-11-01-preview", + "2022-08-01", + "2021-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01", + "2022-11-01-preview", + "2022-08-01", + "2021-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01", + "2022-11-01-preview", + "2022-08-01", + "2021-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "West Central US", + "Australia East", + "West Europe", + "West US", + "West US 2", + "Central US", + "East US", + "East US 2", + "East US 2 EUAP", + "Central US EUAP", + "West US 3", + "North Europe" + ], + "properties": null, + "resourceType": "locations/operationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01", + "2022-11-01-preview", + "2022-08-01", + "2021-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "West Central US", + "Australia East", + "West Europe", + "West US", + "West US 2", + "Central US", + "East US", + "East US 2", + "West US 3" + ], + "properties": null, + "resourceType": "nginxDeployments/configurations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01", + "2022-11-01-preview", + "2022-08-01", + "2021-05-01-preview" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "West Central US", + "Australia East", + "West Europe", + "West US", + "West US 2", + "Central US", + "East US", + "East US 2", + "West US 3" + ], + "properties": null, + "resourceType": "nginxDeployments", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-04-01", + "2022-11-01-preview", + "2022-08-01", + "2021-05-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "West Central US", + "Australia East", + "West Europe", + "West US", + "West US 2", + "Central US", + "East US", + "East US 2", + "West US 3" + ], + "properties": null, + "resourceType": "nginxDeployments/certificates", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "54a2195e-8365-444c-8f50-4a5de4be1e2b", + "roleDefinitionId": "6ea5cb90-2182-4fb7-b9f4-ceb73dad13ef" + }, + { + "applicationId": "6f51cf29-4ee9-4e00-9931-b627d22134e2", + "roleDefinitionId": "f666c120-483d-4382-8184-4d0a6c07fffc" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/PaloAltoNetworks.Cloudngfw", + "namespace": "PaloAltoNetworks.Cloudngfw", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2022-08-29-preview", + "2022-08-29" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2022-08-29-preview", + "2022-08-29" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2022-08-29-preview", + "2022-08-29" + ], + "capabilities": "None", + "defaultApiVersion": "2022-08-29", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "registeredSubscriptions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2022-08-29-preview", + "2022-08-29" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2022-08-29-preview", + "2022-08-29" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US EUAP", + "West Central US", + "North Central US", + "East US 2", + "Central US", + "East US", + "West Europe", + "Australia East", + "UK South", + "West US", + "Canada Central", + "East Asia", + "Australia Southeast", + "UK West", + "France Central", + "North Europe", + "Southeast Asia", + "Brazil South", + "South Central US", + "Japan East", + "West US 3", + "West US 2", + "East US 2 EUAP" + ], + "properties": null, + "resourceType": "Locations/operationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2022-08-29-preview", + "2022-08-29" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US 2", + "Central US", + "West Europe", + "East US", + "Australia East", + "UK South", + "West US", + "Canada Central", + "East Asia", + "Australia Southeast", + "UK West", + "North Europe", + "West US 3", + "West US 2" + ], + "properties": null, + "resourceType": "firewalls", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2022-08-29-preview", + "2022-08-29" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "North Central US", + "East US 2", + "Central US", + "West Europe", + "East US", + "Australia East", + "UK South", + "West US", + "Canada Central", + "East Asia", + "Australia Southeast", + "UK West", + "North Europe", + "West US 3", + "West US 2" + ], + "properties": null, + "resourceType": "localRulestacks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-08-29-preview", + "2022-08-29" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "globalRulestacks", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2022-08-29-preview", + "2022-08-29" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US 2", + "Central US", + "West Europe", + "East US", + "Australia East", + "UK South", + "West US", + "Canada Central", + "East Asia", + "Australia Southeast", + "UK West", + "North Europe", + "West US 3", + "West US 2" + ], + "properties": null, + "resourceType": "localRulestacks/localRules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2022-08-29-preview", + "2022-08-29" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US 2", + "Central US", + "West Europe", + "East US", + "Australia East", + "UK South", + "West US", + "Canada Central", + "East Asia", + "Australia Southeast", + "UK West", + "North Europe", + "West US 3", + "West US 2" + ], + "properties": null, + "resourceType": "localRulestacks/fqdnlists", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-08-29-preview", + "2022-08-29" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "globalRulestacks/fqdnlists", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-08-29-preview", + "2022-08-29" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "globalRulestacks/preRules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-08-29-preview", + "2022-08-29" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "globalRulestacks/postRules", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-08-29-preview", + "2022-08-29" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "globalRulestacks/prefixlists", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2022-08-29-preview", + "2022-08-29" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US 2", + "Central US", + "West Europe", + "East US", + "Australia East", + "UK South", + "West US", + "Canada Central", + "East Asia", + "Australia Southeast", + "UK West", + "North Europe", + "West US 3", + "West US 2" + ], + "properties": null, + "resourceType": "localRulestacks/prefixlists", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-08-29-preview", + "2022-08-29" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "globalRulestacks/certificates", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2022-08-29-preview", + "2022-08-29" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US 2", + "Central US", + "West Europe", + "East US", + "Australia East", + "UK South", + "West US", + "Canada Central", + "East Asia", + "Australia Southeast", + "UK West", + "North Europe", + "West US 3", + "West US 2" + ], + "properties": null, + "resourceType": "localRulestacks/certificates", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-09-01-preview", + "2022-08-29-preview", + "2022-08-29" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US 2", + "Central US", + "West Europe", + "East US", + "Australia East", + "UK South", + "West US", + "Canada Central", + "East Asia", + "Australia Southeast", + "UK West", + "North Europe", + "West US 3", + "West US 2" + ], + "properties": null, + "resourceType": "firewalls/statuses", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "13c34964-a135-4390-aa53-32f3c7251982", + "roleDefinitionId": "7d1be713-50bf-475b-ba2e-51e101dded3b" + }, + { + "applicationId": "6cad3a04-d558-498d-beb7-176b29d3eec4", + "managedByRoleDefinitionId": "2c879574-7b1e-4bbf-af63-0c8ea5b2af4a", + "roleDefinitionId": "1f6c9a51-1714-48c6-a6b7-52e1469d67e6" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Qumulo.Storage", + "namespace": "Qumulo.Storage", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-12-preview", + "2022-10-12", + "2022-06-27-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2022-10-12", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "registeredSubscriptions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-12-preview", + "2022-10-12", + "2022-06-27-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-12-preview", + "2022-10-12", + "2022-06-27-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US", + "Central US EUAP", + "South Central US", + "East US 2", + "West US 2", + "Central US", + "North Central US", + "West Central US", + "West US", + "West US 3", + "Germany West Central", + "France Central", + "Canada Central", + "West Europe", + "North Europe", + "UK South", + "Canada East", + "UK West", + "Switzerland North", + "Sweden Central", + "Norway East", + "Southeast Asia" + ], + "properties": null, + "resourceType": "locations/operationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-12-preview", + "2022-10-12", + "2022-06-27-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-12-preview", + "2022-10-12", + "2022-06-27-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2022-10-12-preview", + "2022-10-12", + "2022-06-27-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US 2", + "South Central US", + "West US 2", + "Central US", + "North Central US", + "West Central US", + "West US", + "West US 3", + "East US", + "Germany West Central", + "France Central", + "Canada Central", + "UK South", + "West Europe", + "North Europe", + "Canada East", + "UK West", + "Switzerland North", + "Sweden Central", + "Norway East", + "Southeast Asia" + ], + "properties": null, + "resourceType": "fileSystems", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "a9ebb668-a505-4625-b1ad-ea91cca4dd06", + "roleDefinitionId": "1a0a03e2-ca37-405f-8ef9-f1ff87c74e6c" + }, + { + "applicationId": "1d2aa03b-849a-4fd4-8c53-a868349311ad", + "roleDefinitionId": "7efd2543-1ca8-4536-8240-e14cb6b83352" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/SolarWinds.Observability", + "namespace": "SolarWinds.Observability", + "providerAuthorizationConsentState": null, + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": "2023-01-01-preview", + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "registeredSubscriptions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Central US EUAP", + "East US 2 EUAP", + "East US" + ], + "properties": null, + "resourceType": "locations/operationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "checkNameAvailability", + "zoneMappings": null + } + ] + }, + { + "authorizations": [ + { + "applicationId": "deeb21a9-7b8d-461b-88e7-2b4e76c5748f", + "roleDefinitionId": "54fc4438-4fad-4174-a9f2-893a0b6caefe" + }, + { + "applicationId": "37b36496-3f4f-443a-a406-5e0a0535f6a3", + "roleDefinitionId": "b10cdc1f-fd21-4fe9-bae7-7e2e25a91a21" + } + ], + "id": "/subscriptions/d8d8f978-a740-4c7e-a591-9fc2bcdf6057/providers/Wandisco.Fusion", + "namespace": "Wandisco.Fusion", + "providerAuthorizationConsentState": "Required", + "registrationPolicy": "RegistrationRequired", + "registrationState": "NotRegistered", + "resourceTypes": [ + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-10-01-preview", + "2022-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "East US" + ], + "properties": null, + "resourceType": "Locations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-10-01-preview", + "2022-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Canada Central", + "Canada East", + "East US", + "East US 2", + "West US", + "West US 2", + "West US 3", + "West Central US", + "South Central US", + "West Europe", + "North Europe", + "East Asia", + "Southeast Asia", + "Australia East", + "UK South", + "Japan East", + "Japan West" + ], + "properties": null, + "resourceType": "Locations/operationStatuses", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-10-01-preview", + "2022-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "registeredSubscriptions", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-10-01-preview", + "2022-01-01-preview" + ], + "capabilities": "None", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [], + "properties": null, + "resourceType": "Operations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-10-01-preview", + "2022-01-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Canada Central", + "Canada East", + "East US", + "East US 2", + "West US", + "West US 2", + "West US 3", + "West Central US", + "South Central US", + "North Europe", + "West Europe", + "UK South", + "Australia East", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West" + ], + "properties": null, + "resourceType": "migrators", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-10-01-preview", + "2022-01-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Canada Central", + "Canada East", + "East US", + "East US 2", + "West US", + "West US 2", + "West US 3", + "West Central US", + "South Central US", + "North Europe", + "West Europe", + "UK South", + "Australia East", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West" + ], + "properties": null, + "resourceType": "migrators/targets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-10-01-preview", + "2022-01-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Canada Central", + "Canada East", + "East US", + "East US 2", + "West US", + "West US 2", + "West US 3", + "West Central US", + "South Central US", + "North Europe", + "West Europe", + "UK South", + "Australia East", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West" + ], + "properties": null, + "resourceType": "migrators/liveDataMigrations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-10-01-preview", + "2022-01-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Canada Central", + "Canada East", + "East US", + "East US 2", + "West US", + "West US 2", + "West US 3", + "West Central US", + "South Central US", + "North Europe", + "West Europe", + "UK South", + "Australia East", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West" + ], + "properties": null, + "resourceType": "migrators/exclusionTemplates", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-10-01-preview", + "2022-01-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Canada Central", + "Canada East", + "East US", + "East US 2", + "West US", + "West US 2", + "West US 3", + "West Central US", + "South Central US", + "North Europe", + "West Europe", + "UK South", + "Australia East", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West" + ], + "properties": null, + "resourceType": "migrators/metadataMigrations", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-10-01-preview", + "2022-01-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Canada Central", + "Canada East", + "East US", + "East US 2", + "West US", + "West US 2", + "West US 3", + "West Central US", + "South Central US", + "North Europe", + "West Europe", + "UK South", + "Australia East", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West" + ], + "properties": null, + "resourceType": "migrators/metadataTargets", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-10-01-preview", + "2022-01-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Canada Central", + "Canada East", + "East US", + "East US 2", + "West US", + "West US 2", + "West US 3", + "West Central US", + "South Central US", + "North Europe", + "West Europe", + "UK South", + "Australia East", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West" + ], + "properties": null, + "resourceType": "migrators/pathMappings", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-10-01-preview", + "2022-01-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Canada Central", + "Canada East", + "East US", + "East US 2", + "West US", + "West US 2", + "West US 3", + "West Central US", + "South Central US", + "North Europe", + "West Europe", + "UK South", + "Australia East", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West" + ], + "properties": null, + "resourceType": "migrators/dataTransferAgents", + "zoneMappings": null + }, + { + "aliases": null, + "apiProfiles": null, + "apiVersions": [ + "2023-02-01-preview", + "2022-10-01-preview", + "2022-01-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation", + "defaultApiVersion": null, + "locationMappings": null, + "locations": [ + "Canada Central", + "Canada East", + "East US", + "East US 2", + "West US", + "West US 2", + "West US 3", + "West Central US", + "South Central US", + "North Europe", + "West Europe", + "UK South", + "Australia East", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West" + ], + "properties": null, + "resourceType": "migrators/verifications", + "zoneMappings": null + } + ] + } +] diff --git a/tooling/query-metrics-alerts/requirement.txt b/tooling/query-metrics-alerts/requirement.txt new file mode 100644 index 000000000..b052e870d --- /dev/null +++ b/tooling/query-metrics-alerts/requirement.txt @@ -0,0 +1,2 @@ +pandas +pyyaml