Criterion Type | - {{ if isset . "dimensions" }} -Dimensions | - {{ end }} +Operator | +Aggregation | {{ if eq .criterionType "DynamicThresholdCriterion" }}Alert Sensitivity | Failing Periods | + {{ else }} +Threshold | {{ end }} -Aggregation | -Operator | -Threshold | Window | Frequency | Severity | + {{ if isset . "dimensions" }} +Dimensions | + {{ end }} +Criterion Type |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
{{ .criterionType }} | - {{ if isset . "dimensions" }} -- {{ if or (reflect.IsMap .dimensions) (reflect.IsSlice .dimensions) }} - {{ transform.Highlight (encoding.Jsonify (dict "indent" " ") .dimensions) "json" }} - {{ else }} - {{ .dimensions }} - {{ end }} - | - {{ end }} +{{ .operator }} | +{{ .timeAggregation }} | {{ if eq .criterionType "DynamicThresholdCriterion" }}{{ .alertSensitivity }} | @@ -37,12 +30,21 @@ {{ .failingPeriods }} {{ end }} | + {{ else }} +{{ cast.ToString .threshold }} | {{ end }} -{{ .timeAggregation }} | -{{ .operator }} | -{{ .threshold }} | {{ .windowSize }} | {{ .evaluationFrequency }} | {{ .severity }} | + {{ if isset . "dimensions" }} ++ {{ if or (reflect.IsMap .dimensions) (reflect.IsSlice .dimensions) }} + {{ transform.Highlight (encoding.Jsonify (dict "indent" " ") .dimensions) "json" }} + {{ else }} + {{ .dimensions }} + {{ end }} + | + {{ end }} +{{ .criterionType }} |
')[-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